inspectionScanning.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. <template>
  2. <view class="incidentList">
  3. <view class="title">{{dataInfo.inspectionNodeName}}</view>
  4. <view class="head">
  5. <view class="tab" :class="{active: tab.id === dataInfo.tabActiveId}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.id)">
  6. {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
  7. </view>
  8. </view>
  9. <view class="body" v-if="dataInfo.list.length">
  10. <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
  11. <view class="body_item_head ellipsis-multiline">
  12. <text class="sign" v-if="data.status.value == 2" :class="{signRed: data.exception == 1}">{{data.exception == 1 ? '异常' : '正常'}}</text>{{ data.inspectionDTO?.inspectionFormDTO?.name }}-{{ data.inspectionNodeDTO?.name }}-{{ data.batchNo }}
  13. </view>
  14. <view class="body_item_content">
  15. <view class="body_item_content_p" v-if="data.inspectionDTO">
  16. <text class="name ellipsis">计划标题:{{data.inspectionDTO.name}}</text>
  17. </view>
  18. <view class="body_item_content_p" v-if="data.signType">
  19. <text class="name ellipsis">签到方式:{{data.signType.name}}</text>
  20. </view>
  21. <view class="body_item_content_p" v-if="data.userDTO || data.groupDTO">
  22. <text class="name ellipsis">执行人或组:{{ data.userDTO?.name || data.groupDTO?.groupName }}</text>
  23. </view>
  24. <view class="body_item_content_p" v-if="data.status || data.addTime">
  25. <text class="name ellipsis">状态:{{ data.status?.name}}</text>
  26. <text class="date">{{formatDate(data.addTime, 'yyyy-MM-dd HH:mm')}}</text>
  27. </view>
  28. </view>
  29. <view class="body_item_foot">
  30. <view class="btns pt0">
  31. <button v-if="data.status.value === '1' && dataInfo.tabActiveId === 0" @click.stop="toInspectionValue(data)" type="default" class="primaryButton btn">执行</button>
  32. <button v-if="data.status.value === '2' && data.exception == 1 && !data.incidentId && data.inspectionDTO.inspectionFormDTO.showOrder == 1" @click.stop="toBuildIncident(data)" type="default" class="primaryButton btn">生成维修单</button>
  33. </view>
  34. </view>
  35. </view>
  36. </view>
  37. <view class="zanwu" v-else>
  38. <text class="newicon newicon-zanwu"></text>
  39. </view>
  40. </view>
  41. </template>
  42. <script setup>
  43. import { startOfDay, endOfDay, format, add } from 'date-fns'
  44. import { ref, reactive, computed } from 'vue'
  45. import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
  46. import { SM } from "@/http/http.js"
  47. import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_inspectionNode, api_listAttachment } from "@/http/api.js"
  48. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  49. import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
  50. import { computedStateStyle } from '@/filters/computedStateStyle.js'
  51. import { computedCurrentLogOverTime } from '@/filters/computedCurrentLogOverTime.js'
  52. import { defaultColor } from '@/static/js/theme.js'
  53. import { useSetTitle } from '@/share/useSetTitle.js'
  54. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  55. import { useLoginUserStore } from '@/stores/loginUser'
  56. import { useIncidentNumStore } from '@/stores/incidentNum'
  57. import { useInspectionListSearchStore } from '@/stores/inspectionListSearch'
  58. import { useInspectionValueStore } from '@/stores/inspectionValue'
  59. import { useSetTabbar } from '@/share/useSetTabbar.js'
  60. import { useIncidentBuildStore } from '@/stores/incidentBuild'
  61. useSetTitle();
  62. const loginUserStore = useLoginUserStore();
  63. const incidentNumStore = useIncidentNumStore();
  64. const inspectionListSearchStore = useInspectionListSearchStore();
  65. const inspectionValueStore = useInspectionValueStore();
  66. const { formatDate } = filterFormatDate();
  67. const { priorityStyle } = computedPriorityStyle();
  68. const { stateStyle } = computedStateStyle();
  69. const { currentLogOverTime } = computedCurrentLogOverTime();
  70. const { makePhoneCall } = useMakePhoneCall();
  71. const { setTabbar } = useSetTabbar();
  72. const incidentBuildStore = useIncidentBuildStore();
  73. // 主题颜色
  74. const primaryColor = ref(defaultColor)
  75. // 故障来源列表
  76. const defaultSourceValue = ref();
  77. // 数据
  78. const dataInfo = reactive({
  79. tabs: [{id: 0, name: '巡检工单', value: 'todo', num: ''}, {id: 1, name: '历史工单', value: '', num: ''}],
  80. tabActiveId: 0,//当前选择的tab
  81. list: [],//工单列表
  82. idx: 0,//页码
  83. hasMore: true,//是否有更多数据
  84. inspectionNodeDTO: {},
  85. inspectionNodeNewCode: '',//巡检点二维码
  86. inspectionNodeCode: '',//巡检点原始二维码
  87. inspectionNodeName: '',
  88. })
  89. // 获取故障来源列表
  90. function getSources(){
  91. let postData = {
  92. "key": 'incident_source',
  93. "type": "list",
  94. };
  95. api_getDictionary(postData).then(res => {
  96. res = res || [];
  97. let discover = res.find(v => v.value === 'inspection');
  98. if(discover){
  99. defaultSourceValue.value = discover.id;
  100. }
  101. })
  102. }
  103. // 新建事件
  104. async function toBuildIncident(res){
  105. incidentBuildStore.clearIncidentBuildData();
  106. let imgObj = res.inspectionFormValuesList.find(v => v.inspectionFormItemDTO.type.value == 7);
  107. let repairImgList = [];
  108. if(imgObj){
  109. let result = await api_listAttachment('inspection', res.id);
  110. result.data = result.data || [];
  111. result.data = result.data.filter(v => v.recordId == imgObj.itemId);
  112. result.data = result.data.map(v => ({
  113. url: location.origin + "/file" + v.relativeFilePath,
  114. path: location.origin + "/file" + v.relativeFilePath,
  115. size: v.size,
  116. name: v.name,
  117. extname: v.suffix,
  118. }))
  119. repairImgList = result.data;
  120. }
  121. console.log(repairImgList, 'repairImgList')
  122. let incidentData = {
  123. place: res.inspectionNodeDTO.floorDTO,
  124. houseNumber: res.inspectionNodeDTO.address,
  125. source: defaultSourceValue.value,
  126. description: res.inspectionFormValuesList.filter(v => v.exception == 1).map(v => `${v.name}填写值为${v.valuex}`).join(';'),
  127. requester: loginUserStore.loginUser.user,
  128. branch: loginUserStore.loginUser.user.currentHospital.parent ? loginUserStore.loginUser.user.currentHospital.parent.id : loginUserStore.loginUser.user.currentHospital.id,
  129. contacts: loginUserStore.loginUser.user.name,
  130. contactsInformation: loginUserStore.loginUser.user.phone,
  131. category: res.inspectionDTO.inspectionFormDTO.categoryDTO,
  132. department: res.inspectionDTO.inspectionFormDTO.repairDeptDTO,
  133. priority: res.inspectionDTO.inspectionFormDTO.priorityDTO,
  134. repairImgList,
  135. inspectionTaskId: res.id,
  136. }
  137. console.log(incidentData, 'incidentData')
  138. incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
  139. uni.navigateTo({
  140. url: `/pages/buildIncident/buildIncident?type=inspection`
  141. })
  142. }
  143. // 巡检项
  144. function toInspectionValue(data){
  145. uni.showLoading({
  146. title: "加载中",
  147. mask: true,
  148. });
  149. let postData = {
  150. code: dataInfo.inspectionNodeNewCode,
  151. taskId: data.id,
  152. account: loginUserStore.loginUser.user.account,
  153. };
  154. // 'inspection|$|1bd0c704-0962-4ed4-b5a6-b5bda3d78231'
  155. // 'inspection|$|bc9f61af-99c8-4c86-88f9-f29dd3fc43c0'
  156. // 'inspection|$|92e7bb9a-5f58-42f6-991a-fcd67247e295'
  157. api_scanCode(postData).then((res) => {
  158. uni.hideLoading();
  159. if (res.status == 200) {
  160. inspectionValueStore.setInspectionValueData(res.data);
  161. uni.navigateTo({
  162. url: `/pages/inspection/inspectionValue/inspectionValue?inspectionExecuteId=${data.id}`
  163. })
  164. } else {
  165. uni.showToast({
  166. icon: 'none',
  167. title: res.msg || '请求数据失败!'
  168. });
  169. }
  170. });
  171. }
  172. // 点击tab
  173. function clickTab(tabId){
  174. dataInfo.tabActiveId = tabId;
  175. getList(0);
  176. }
  177. // 获取列表信息
  178. function getList(idx){
  179. uni.showLoading({
  180. title: "加载中",
  181. mask: true,
  182. });
  183. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  184. if(dataInfo.idx === 0){
  185. dataInfo.list = [];
  186. }
  187. let tabActiveObj = dataInfo.tabs.find(v => v.id == dataInfo.tabActiveId);
  188. let tabActiveObjIndex = dataInfo.tabs.findIndex(v => v.id == dataInfo.tabActiveId);
  189. let postData = {
  190. "idx": dataInfo.idx,
  191. "sum": 10,
  192. "inspectionTask": {
  193. "queryTask": tabActiveObj.value || undefined,
  194. "status": tabActiveObj.value ? undefined : { "value": 2 },
  195. "assignAccount": tabActiveObj.id == 0 ? loginUserStore.loginUser.user.account : undefined,
  196. "inspectionNodeDTO":{
  197. code: dataInfo.inspectionNodeCode,
  198. }
  199. }
  200. }
  201. api_inspectionTask(postData).then(res => {
  202. uni.hideLoading();
  203. uni.stopPullDownRefresh();
  204. if(res.status == 200){
  205. let list = res.list || [];
  206. dataInfo.tabs[tabActiveObjIndex].num = res.totalNum;
  207. if(list.length){
  208. dataInfo.hasMore = true;
  209. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  210. dataInfo.inspectionNodeDTO = list[0].inspectionNodeDTO;
  211. }else{
  212. dataInfo.hasMore = false;
  213. dataInfo.inspectionNodeDTO = {};
  214. }
  215. }else{
  216. uni.showToast({
  217. icon: 'none',
  218. title: res.msg || '请求数据失败!'
  219. });
  220. }
  221. })
  222. getCount(tabActiveObj.id);
  223. }
  224. // 获取列表数量
  225. function getCount(id){
  226. dataInfo.tabs.forEach(v => {
  227. if(v.id != id){
  228. let tabActiveObj = v;
  229. let postData = {
  230. "idx": 0,
  231. "sum": 1,
  232. "inspectionTask": {
  233. "queryTask": tabActiveObj.value || undefined,
  234. "status": tabActiveObj.value ? undefined : { "value": 2 },
  235. "assignAccount": tabActiveObj.id == 0 ? loginUserStore.loginUser.user.account : undefined,
  236. "inspectionNodeDTO":{
  237. code: dataInfo.inspectionNodeCode,
  238. }
  239. }
  240. }
  241. api_inspectionTask(postData).then(res => {
  242. if(res.status == 200){
  243. v.num = res.totalNum;
  244. }else{
  245. uni.showToast({
  246. icon: 'none',
  247. title: res.msg || '请求数据失败!'
  248. });
  249. }
  250. })
  251. }
  252. })
  253. }
  254. onLoad((option) => {
  255. getSources();
  256. dataInfo.inspectionNodeCode = option.inspectionNodeCode;
  257. dataInfo.inspectionNodeNewCode = option.inspectionNodeNewCode;
  258. dataInfo.inspectionNodeName = option.inspectionNodeName;
  259. getList(0);
  260. })
  261. onPullDownRefresh(() => {
  262. getList(0)
  263. })
  264. onReachBottom(() => {
  265. dataInfo.idx += 1;
  266. if (dataInfo.hasMore) {
  267. getList(); // 当触底时加载更多数据
  268. }
  269. })
  270. </script>
  271. <style lang="scss" scoped>
  272. .toolbar {
  273. position: fixed;
  274. left: 0;
  275. bottom: var(--window-bottom);
  276. z-index: 99;
  277. width: 100%;
  278. height: 88rpx;
  279. display: flex;
  280. justify-content: center;
  281. align-items: center;
  282. box-sizing: border-box;
  283. border-radius: 4rpx;
  284. background-color: #E5E8ED;
  285. .toolbar-icon {
  286. font-size: 52rpx;
  287. margin-right: 16rpx;
  288. color: #49B856;
  289. }
  290. .toolbar-sao {
  291. font-size: 36rpx;
  292. color: #333;
  293. }
  294. }
  295. .incidentList{
  296. display: flex;
  297. flex-direction: column;
  298. justify-content: space-between;
  299. .title{
  300. width: 100%;
  301. height: 88rpx;
  302. position: fixed;
  303. z-index: 99;
  304. display: flex;
  305. align-items: center;
  306. justify-content: center;
  307. background-color: #EBEBEB;
  308. font-weight: bold;
  309. font-size: 32rpx;
  310. }
  311. .head{
  312. height: 88rpx;
  313. display: flex;
  314. top: 88rpx;
  315. position: fixed;
  316. z-index: 99;
  317. width: 100%;
  318. background-color: #fff;
  319. font-size: 30rpx;
  320. .tab{
  321. flex: 1;
  322. display: flex;
  323. justify-content: center;
  324. align-items: center;
  325. border-bottom: 4rpx solid transparent;
  326. &.active{
  327. color: $uni-primary;
  328. border-color: $uni-primary;
  329. }
  330. }
  331. .filter{
  332. width: 84rpx;
  333. display: flex;
  334. justify-content: center;
  335. align-items: center;
  336. .newicon-shaixuan{
  337. font-size: 36rpx;
  338. color: #2C2C2C;
  339. }
  340. }
  341. }
  342. .body{
  343. margin-top: 176rpx;
  344. border-top: 6rpx solid #EBEBEB;
  345. .body_item{
  346. border-bottom: 8rpx solid #EBEBEB;
  347. .body_item_head{
  348. word-break: break-all;
  349. text-align: justify;
  350. text-align: left;
  351. margin: 24rpx;
  352. font-size: 30rpx;
  353. .sign{
  354. margin-right: 16rpx;
  355. font-weight: bold;
  356. color: #49B856;
  357. &.signRed{
  358. color: #FF0000;
  359. }
  360. }
  361. }
  362. .body_item_content{
  363. border-top: 1rpx solid #D8D8D8;
  364. padding: 24rpx 24rpx 24rpx 48rpx;
  365. .body_item_content_p{
  366. color: #6A6A6A;
  367. font-size: 26rpx;
  368. display: flex;
  369. justify-content: space-between;
  370. align-items: center;
  371. margin-bottom: 24rpx;
  372. &:last-of-type{
  373. margin-bottom: 0;
  374. }
  375. .name{
  376. flex: 1;
  377. }
  378. .status{
  379. padding: 4rpx 10rpx;
  380. border-radius: 20rpx;
  381. background-color: #DBE8FE;
  382. font-size: 22rpx;
  383. color: #006CF9;
  384. }
  385. .icon_all{
  386. .mic-filled,
  387. .image-filled
  388. {
  389. margin-left: 16rpx;
  390. }
  391. }
  392. }
  393. }
  394. .body_item_foot{
  395. border-top: 1rpx solid #D8D8D8;
  396. font-size: 26rpx;
  397. padding: 24rpx;
  398. .foot_info{
  399. display: flex;
  400. justify-content: space-between;
  401. align-items: center;
  402. .phone-filled{
  403. margin-left: 5rpx;
  404. }
  405. }
  406. }
  407. }
  408. }
  409. .zanwu{
  410. box-sizing: border-box;
  411. margin-top: 176rpx;
  412. border-top: 6rpx solid #EBEBEB;
  413. height: calc(100vh - 88rpx);
  414. display: flex;
  415. justify-content: center;
  416. background-color: #F7F7F7;
  417. .newicon-zanwu{
  418. font-size: 256rpx;
  419. color: #D6D6D6;
  420. margin-top: 140rpx;
  421. }
  422. }
  423. }
  424. </style>