index.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <template>
  2. <oa-scroll
  3. customClass="scroll-height"
  4. :pageSize="pageSize"
  5. :total="total"
  6. :isSticky="false"
  7. :refresherLoad="true"
  8. :refresherEnabled="true"
  9. :refresherDefaultStyle="'none'"
  10. :refresherThreshold="44"
  11. :refresherBackground="'#f5f6f7'"
  12. @load="load"
  13. @refresh="refresh"
  14. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  15. >
  16. <template #default>
  17. <view class="fireReport-area">
  18. <view class="fireReport-area_center" v-for="(li, index) in dataList" :key="index">
  19. <view class="fireReport-area_center_img" @click="handleSelect()">
  20. <u-image src="@/static/images/common/fireReport.png" width="13px" height="13px"></u-image>
  21. </view>
  22. <view class="fireReport-area_center_title" @click="handleSelect(li.reportPath)">
  23. <view>{{ li.reportName }}</view>
  24. </view>
  25. <view class="fireReport-area_center_button" @click="handleDownload(li.reportPath)">下载报告</view>
  26. </view>
  27. </view>
  28. </template>
  29. </oa-scroll>
  30. </template>
  31. <script setup>
  32. import { onReady, onLoad, onShow, onReachBottom, onNavigationBarButtonTap } from "@dcloudio/uni-app";
  33. import { ref, onMounted, inject, shallowRef, reactive, watchEffect, getCurrentInstance } from "vue";
  34. import { reportInfoList } from "@/api/business/mhxf/fireReport";
  35. const { proxy } = getCurrentInstance();
  36. const dataRes = ref(true);
  37. const dataList = ref([]);
  38. const pageSize = ref(20);
  39. const pageNum = ref(1);
  40. const total = ref(0);
  41. /**
  42. * @列表点击事件
  43. */
  44. function handleSelect(reportPath) {
  45. proxy.$tab.navigateTo("/pages/business/mhxf/fireReport/components/detailedPath?reportPath=" + reportPath);
  46. }
  47. /**
  48. * @历史报告列表查询接口
  49. * @API接口查询
  50. */
  51. function reportInfoListApi() {
  52. reportInfoList({
  53. pageSize: pageSize.value,
  54. pageNum: pageNum.value,
  55. companyId: "",
  56. sourceType: 2,
  57. }).then((res) => {
  58. dataList.value = res.data.records;
  59. total.value = res.data.total;
  60. });
  61. }
  62. /**
  63. * @下载
  64. * @按钮点击事件
  65. */
  66. function handleDownload(reportPath) {
  67. proxy.$modal.loading("报告下载中,请耐心等待...");
  68. setTimeout(() => {
  69. // #ifdef H5
  70. window.open(reportPath);
  71. // #endif
  72. // 微信下载文件需要在微信公众平台>开发>开发管理>服务器域名>downloadFile合法域名>配置白名单域名
  73. // #ifdef MP-WEIXIN
  74. uni.downloadFile({
  75. url: reportPath,
  76. success: (res) => {
  77. console.log(res);
  78. if (res.statusCode === 200) {
  79. // 预览pdf文件
  80. uni.openDocument({
  81. filePath: res.tempFilePath,
  82. showMenu: true, // 右上角菜单,可以进行分享保存pdf
  83. success: function (file) {
  84. console.log("file-success", file);
  85. },
  86. });
  87. }
  88. },
  89. });
  90. // #endif
  91. // #ifdef APP-PLUS
  92. uni.downloadFile({
  93. url: reportPath,
  94. success: (res) => {
  95. console.log(res);
  96. if (res.statusCode === 200) {
  97. // 保存pdf文件至手机,一般安卓端存储路径为:手机存储/dcim/camera文件夹下
  98. uni.saveImageToPhotosAlbum({
  99. filePath: res.tempFilePath,
  100. success: function () {
  101. uni.showToast({
  102. title: "文件已保存至/DCIM/CAMERA文件夹下",
  103. icon: "none",
  104. });
  105. setTimeout(function () {
  106. // 预览pdf文件
  107. uni.openDocument({
  108. filePath: res.tempFilePath,
  109. showMenu: true,
  110. success: function (file) {
  111. console.log("file-success", file);
  112. },
  113. });
  114. }, 1500);
  115. },
  116. fail: function () {
  117. uni.showToast({
  118. title: "保存失败,请稍后重试!",
  119. icon: "none",
  120. });
  121. },
  122. });
  123. }
  124. },
  125. });
  126. // #endif
  127. proxy.$modal.closeLoading();
  128. }, 2000);
  129. }
  130. /**
  131. * @scrollView加载数据
  132. */
  133. function load() {
  134. pageSize.value += 10;
  135. reportInfoListApi();
  136. }
  137. /**
  138. * @scrollView刷新数据
  139. */
  140. function refresh() {
  141. pageSize.value = 20;
  142. reportInfoListApi();
  143. }
  144. // 自定义导航事件
  145. onNavigationBarButtonTap((e) => {
  146. if (e.float == "right") {
  147. uni.navigateTo({
  148. url: "/pages/business/zhaf/xunJian/collect/components/collectRecord",
  149. });
  150. } else {
  151. }
  152. });
  153. onLoad((options) => {
  154. reportInfoListApi();
  155. });
  156. onShow(() => {
  157. //调用系统主题颜色
  158. proxy.$settingStore.systemThemeColor([1]);
  159. });
  160. onReady(() => {});
  161. onMounted(() => {});
  162. </script>
  163. <style lang="scss">
  164. .fireReport-area {
  165. background-color: #f7f7f7;
  166. &_center {
  167. display: flex;
  168. height: 45px;
  169. background: #fff;
  170. padding: 0 10px;
  171. &_img {
  172. margin: auto 10px auto 0;
  173. }
  174. &_title {
  175. margin: auto auto auto 0px;
  176. }
  177. &_button {
  178. margin: auto 0px auto 0px;
  179. color: #3c9cff;
  180. cursor: pointer;
  181. }
  182. }
  183. > uni-view {
  184. margin-bottom: 10px;
  185. }
  186. > uni-view:last-child {
  187. margin-bottom: 0px;
  188. }
  189. }
  190. </style>