report.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. <template>
  2. <u-navbar :titleStyle="{ color: '#fff' }" :autoBack="true" title="巡检上报" :placeholder="true" :safeAreaInsetTop="true" :bgColor="proxy.$settingStore.themeColor.color">
  3. <template #left>
  4. <view class="u-navbar__content__left__item">
  5. <u-icon name="arrow-left" size="20" color="#fff"></u-icon>
  6. </view>
  7. </template>
  8. <template #right>
  9. <view class="u-navbar__content__right__item font12">
  10. <span @click="endInspection">结束巡检</span>
  11. </view>
  12. </template>
  13. </u-navbar>
  14. <oa-scroll
  15. customClass="scroll-height"
  16. :customStyle="{ height: `calc(100vh - (44px + ${proxy.$settingStore.StatusBarHeight} + ${proxy.$settingStore.tabBarHeight}))` }"
  17. :refresherLoad="false"
  18. :refresherEnabled="false"
  19. :refresherEnabledTitle="false"
  20. :refresherDefaultStyle="'none'"
  21. :refresherThreshold="44"
  22. :refresherBackground="'#f5f6f7'"
  23. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  24. >
  25. <template #default>
  26. <view class="flex bg-white mb15 ptb15 pl15" v-for="cu in currentDateList" :key="cu">
  27. <view class="flex mr15" @click="pulicClick(cu)">
  28. <u-image style="margin: auto" width="40" height="40" src="@/static/images/xunjian/scan.png" v-if="cu.siteType == 1" shape="circle"></u-image>
  29. <u-image style="margin: auto" width="40" height="40" src="@/static/images/xunjian/NFC.png" v-if="cu.siteType == 2" shape="circle"></u-image>
  30. </view>
  31. <view class="reportCenter" @click="pulicClick(cu)">
  32. <view class="centerSiteName">
  33. {{ cu.siteName }}
  34. <view
  35. :style="{
  36. margin: 'auto auto auto 15px',
  37. fontSize: '5px',
  38. backgroundColor: cu.inspectionStatus == 2 ? '#ABE399' : '#ffbebb',
  39. color: cu.inspectionStatus == 2 ? '#189400' : '#FF3128',
  40. borderRadius: '10px',
  41. padding: '0px 5px',
  42. }"
  43. >
  44. {{ cu.inspectionStatus == 2 ? "已巡检" : "未巡检" }}
  45. </view>
  46. </view>
  47. <view style="font-size: 13px; color: #a1a1a1; margin-bottom: 5px"> 描述:{{ cu.siteDescribe == "" || cu.siteDescribe == null ? "无" : cu.siteDescribe }} </view>
  48. <view style="font-size: 13px; color: #a1a1a1">
  49. 完成时间:
  50. {{ cu.inspectionTime ? cu.inspectionTime.replace("T", " ") : "无" }}
  51. </view>
  52. </view>
  53. <view class="reportRight">
  54. <view
  55. class="rightChild"
  56. :style="{
  57. color: cu.siteStatus == null || cu.siteStatus == 0 ? '#a0a0a0' : '#1989fa',
  58. }"
  59. >
  60. <text class="iconfont oaIcon-map" style="font-size: 18px"></text>
  61. <view>定位</view>
  62. </view>
  63. <view
  64. class="rightChild"
  65. :style="{
  66. color: cu.siteStatus == null || cu.siteStatus == 0 ? '#a0a0a0' : '#1989fa',
  67. }"
  68. >
  69. <text class="iconfont oaIcon-appstore" style="font-size: 18px"></text>
  70. <view>状态</view>
  71. </view>
  72. </view>
  73. </view>
  74. <oaMovable :themesColor="proxy.$settingStore.themeColor.color">
  75. <template #content>
  76. <view class="iconfont oaIcon-nfc menu-item-icon" @click="nfcClick()"></view>
  77. <view class="iconfont oaIcon-saoyisao menu-item-icon" @click="scanClick()"></view>
  78. </template>
  79. </oaMovable>
  80. </template>
  81. </oa-scroll>
  82. </template>
  83. <script setup>
  84. /*----------------------------------依赖引入-----------------------------------*/
  85. import { onLoad, onShow, onUnload } from "@dcloudio/uni-app";
  86. import { ref, onMounted, reactive, computed, getCurrentInstance, toRefs, inject, shallowRef } from "vue";
  87. /*----------------------------------接口引入-----------------------------------*/
  88. import { recordList, recordOption, siteDetails, planSonSiteDetails } from "@/api/business/zhaf/xunJian/plan.js";
  89. import { errorApi } from "@/api/business/zhaf/xunJian/index.js";
  90. /*----------------------------------组件引入-----------------------------------*/
  91. import oaMovable from "@/components/oa-movable/index.vue"; // 引入组件
  92. /*----------------------------------store引入-----------------------------------*/
  93. import { useStores, commonStores, xunJianStores } from "@/store/modules/index";
  94. /*----------------------------------公共方法引入-----------------------------------*/
  95. /*----------------------------------公共变量-----------------------------------*/
  96. const { proxy } = getCurrentInstance();
  97. const xunJianStore = xunJianStores(); //全局变量值Store
  98. /*----------------------------------变量声明-----------------------------------*/
  99. function pulicClick(obj) {
  100. if (obj.inspectionStatus == 2) {
  101. xunJianStore.inspectionStatus = 2;
  102. xunJianStore.siteId = obj.id;
  103. uni.navigateTo({
  104. url: "/pages/business/zhaf/xunJian/plan/components/siteDetails",
  105. });
  106. } else {
  107. xunJianStore.inspectionStatus = 1;
  108. xunJianStore.siteId = obj.id;
  109. xunJianStore.siteNubmber = "";
  110. if (obj.siteType == 1) {
  111. scanClick();
  112. } else if (obj.siteType == 2) {
  113. nfcClick();
  114. }
  115. }
  116. }
  117. /**
  118. * @NFC
  119. */
  120. function nfcClick() {
  121. // proxy.$nfc.initNFC();
  122. uni.navigateTo({
  123. url: "/pages/common/nfc/index",
  124. });
  125. }
  126. /**
  127. * @扫一扫
  128. * @点击事件
  129. */
  130. const scanArray = ref([]);
  131. const scanBool = ref(false);
  132. async function scanClick() {
  133. uni.scanCode({
  134. autoZoom: false,
  135. success: async (e) => {
  136. proxy.$modal.msg("扫码成功");
  137. siteDetailsApi(e.result);
  138. },
  139. fail: (err) => {
  140. proxy.$modal.msg("扫码失败");
  141. console.log("扫码失败", err);
  142. },
  143. complete: () => {
  144. console.log("扫码结束");
  145. },
  146. });
  147. }
  148. /**
  149. * @点位详情查询
  150. * @接口请求
  151. */
  152. function siteDetailsApi(value) {
  153. xunJianStore.contentArray = {};
  154. xunJianStore.siteId = "";
  155. xunJianStore.siteNubmber = value;
  156. if (!proxy.$common.isNetwork()) {
  157. return false;
  158. }
  159. siteDetails({
  160. siteId: xunJianStore.siteId,
  161. siteNubmber: xunJianStore.siteNubmber,
  162. planSonId: xunJianStore.planSonId,
  163. })
  164. .then((res) => {
  165. if (res.status == "SUCCESS") {
  166. currentDateList.value.forEach((res1) => {
  167. if (res1.id == res.data.siteList[0].id) {
  168. uni.navigateTo({
  169. url: "/pages/business/zhaf/xunJian/plan/components/siteDetails",
  170. });
  171. }
  172. });
  173. }
  174. })
  175. .catch((err) => {
  176. proxy.$modal.msg(err);
  177. });
  178. }
  179. /**
  180. * @地点列表
  181. * @api接口请求
  182. */
  183. const currentDateList = ref([]); //地点列表list数据存储
  184. function currentApi() {
  185. if (!proxy.$common.isNetwork()) {
  186. return false;
  187. }
  188. planSonSiteDetails({
  189. planSonId: xunJianStore.planSonId,
  190. })
  191. .then((res) => {
  192. if (res.status == "SUCCESS") {
  193. currentDateList.value = res.data;
  194. }
  195. })
  196. .catch((err) => {
  197. proxy.$modal.msg(err);
  198. });
  199. }
  200. /**
  201. * @异常上报
  202. */
  203. function AbnormalReport(){
  204. errorApi()
  205. .Insert(
  206. {
  207. "eventName": "执行任务",
  208. "eventType": 8,
  209. "eventLevel": 1,
  210. "eventCategory": 8,
  211. "deviceId": proxy.$settingStore.deviceList.deviceId,
  212. "planId": xunJianStore.planId
  213. }
  214. )
  215. .catch((err) => {
  216. proxy.$modal.msg(err);
  217. });
  218. }
  219. /**
  220. * @结束巡检
  221. */
  222. function endInspection() {
  223. errorApi()
  224. .Insert(
  225. {
  226. "eventName": "结束巡检",
  227. "eventType": 10,
  228. "eventLevel": 1,
  229. "eventCategory": 10,
  230. "deviceId": proxy.$settingStore.deviceList.deviceId,
  231. "planId": xunJianStore.planId
  232. }
  233. )
  234. .catch((err) => {
  235. proxy.$modal.msg(err);
  236. });
  237. }
  238. onLoad((options) => {
  239. currentApi();
  240. AbnormalReport()
  241. });
  242. onShow(() => {
  243. //调用系统主题颜色
  244. proxy.$settingStore.systemThemeColor([1]);
  245. uni.$on("NFC_readID", function (value) {
  246. siteDetailsApi(value);
  247. });
  248. });
  249. onUnload(() => {
  250. uni.$off("NFC_readID"); //将值删除监听器
  251. });
  252. onMounted(() => {});
  253. </script>
  254. <style lang="scss" scoped>
  255. .is-selected {
  256. color: #1989fa;
  257. }
  258. .reportCenter {
  259. margin-right: auto;
  260. .centerSiteName {
  261. font-size: 15px;
  262. margin-bottom: 5px;
  263. height: 20px;
  264. line-height: 20px;
  265. display: flex;
  266. }
  267. }
  268. </style>
  269. <style scoped>
  270. .reportRight {
  271. display: flex;
  272. background-color: rgba(238, 238, 238, 0.3);
  273. margin: -15px 0;
  274. }
  275. .reportRight .rightChild {
  276. margin: auto;
  277. text-align: center;
  278. padding: 10px;
  279. }
  280. .reportRight .rightChild view {
  281. font-size: 12px;
  282. margin: auto;
  283. font-weight: 600;
  284. }
  285. </style>