inspectionExecute.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572
  1. <template>
  2. <view class="incidentList">
  3. <view class="head">
  4. <view class="tab" :class="{active: tab.id === dataInfo.tabActiveId}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.id)">
  5. {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
  6. </view>
  7. <view class="filter" @click="filterClick">
  8. <text class="newicon newicon-shaixuan"></text>
  9. </view>
  10. </view>
  11. <view class="body" v-if="dataInfo.list.length">
  12. <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
  13. <view class="body_item_head ellipsis-multiline">
  14. <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 }}
  15. </view>
  16. <view class="body_item_content">
  17. <view class="body_item_content_p" v-if="data.inspectionDTO">
  18. <text class="name ellipsis">计划标题:{{data.inspectionDTO.name}}</text>
  19. </view>
  20. <view class="body_item_content_p" v-if="data.signType">
  21. <text class="name ellipsis">签到方式:{{data.signType.name}}</text>
  22. </view>
  23. <view class="body_item_content_p" v-if="data.userDTO || data.groupDTO">
  24. <text class="name ellipsis">执行人或组:{{ data.userDTO?.name || data.groupDTO?.groupName }}</text>
  25. </view>
  26. <view class="body_item_content_p" v-if="data.status || data.addTime">
  27. <text class="name ellipsis">状态:{{ data.status?.name}}</text>
  28. <text class="date">{{formatDate(data.addTime, 'yyyy-MM-dd HH:mm')}}</text>
  29. </view>
  30. </view>
  31. <view class="body_item_foot">
  32. <view class="btns pt0">
  33. <button v-if="data.status.value === '1'" @click.stop="toInspectionValue(data)" type="default" class="primaryButton btn">执行</button>
  34. <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>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="zanwu" v-else>
  40. <text class="newicon newicon-zanwu"></text>
  41. </view>
  42. <view class="toolbar" @click="scanning()">
  43. <text class="toolbar-icon newicon newicon-saoma"></text>
  44. <text class="toolbar-sao">扫一扫</text>
  45. </view>
  46. <InspectionListFilter v-if="dataInfo.isFilter" @cancelEmit="cancelFilter" @confirmEmit="conformFilter" :evt="dataInfo.evtFilter"></InspectionListFilter>
  47. </view>
  48. </template>
  49. <script setup>
  50. import InspectionListFilter from '@/components/InspectionListFilter.vue';
  51. import { startOfDay, endOfDay, format, add } from 'date-fns'
  52. import { ref, reactive, computed } from 'vue'
  53. import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
  54. import { SM } from "@/http/http.js"
  55. import { api_getDictionary, api_inspectionTask, api_listCount, api_scanCode, api_scanNodeCode, api_listAttachment } from "@/http/api.js"
  56. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  57. import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
  58. import { computedStateStyle } from '@/filters/computedStateStyle.js'
  59. import { computedCurrentLogOverTime } from '@/filters/computedCurrentLogOverTime.js'
  60. import { defaultColor } from '@/static/js/theme.js'
  61. import { useSetTitle } from '@/share/useSetTitle.js'
  62. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  63. import { useLoginUserStore } from '@/stores/loginUser'
  64. import { useIncidentNumStore } from '@/stores/incidentNum'
  65. import { useInspectionListSearchStore } from '@/stores/inspectionListSearch'
  66. import { useInspectionValueStore } from '@/stores/inspectionValue'
  67. import { useSetTabbar } from '@/share/useSetTabbar.js'
  68. import { useIncidentBuildStore } from '@/stores/incidentBuild'
  69. useSetTitle();
  70. const loginUserStore = useLoginUserStore();
  71. const incidentNumStore = useIncidentNumStore();
  72. const inspectionListSearchStore = useInspectionListSearchStore();
  73. const inspectionValueStore = useInspectionValueStore();
  74. const { formatDate } = filterFormatDate();
  75. const { priorityStyle } = computedPriorityStyle();
  76. const { stateStyle } = computedStateStyle();
  77. const { currentLogOverTime } = computedCurrentLogOverTime();
  78. const { makePhoneCall } = useMakePhoneCall();
  79. const { setTabbar } = useSetTabbar();
  80. const incidentBuildStore = useIncidentBuildStore();
  81. // 主题颜色
  82. const primaryColor = ref(defaultColor)
  83. const assignFlag = ref(false);//指派权限
  84. const qiangdan = ref(false);//接单权限
  85. // 转换协同人
  86. const computedSynergetic = computed(() => (synergetic) => {
  87. return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
  88. })
  89. // 故障来源列表
  90. const defaultSourceValue = ref();
  91. // 数据
  92. const dataInfo = reactive({
  93. tabs: [{id: 0, name: '全部', value: 'all', num: ''}],
  94. tabActiveId: 0,//当前选择的tab
  95. list: [],//工单列表
  96. idx: 0,//页码
  97. hasMore: true,//是否有更多数据
  98. isFilter: false,//筛选框开关
  99. evtFilter: {
  100. area: {id: 0, area: '全部'},
  101. inspectionForm: {id: 0, name: '全部'},
  102. acceptDate: [],
  103. },//筛选框数据
  104. })
  105. // 扫一扫
  106. function scanning(){
  107. uni.showLoading({
  108. title: "加载中",
  109. mask: true,
  110. });
  111. SM().then((ress1) => {
  112. // ----------------------------------
  113. let postData = {
  114. queryTask: 'todo',
  115. code: ress1,
  116. idx: 0,
  117. sum: 1,
  118. assignAccount: loginUserStore.loginUser.user.account,
  119. };
  120. api_scanNodeCode(postData).then((res) => {
  121. if (res.status == 200) {
  122. if(res.totalNum == 1){
  123. let data = res.list[0];
  124. let postData = {
  125. code: ress1,
  126. taskId: data.id,
  127. account: loginUserStore.loginUser.user.account,
  128. };
  129. api_scanCode(postData).then((res) => {
  130. uni.hideLoading();
  131. if (res.status == 200) {
  132. inspectionValueStore.setInspectionValueData(res.data);
  133. uni.navigateTo({
  134. url: `/pages/inspection/inspectionValue/inspectionValue?inspectionExecuteId=${data.id}`
  135. })
  136. } else {
  137. uni.showToast({
  138. icon: 'none',
  139. title: res.msg || '请求数据失败!'
  140. });
  141. }
  142. });
  143. }else{
  144. uni.hideLoading();
  145. uni.navigateTo({
  146. url: `/pages/inspection/inspectionScanning/inspectionScanning?inspectionNodeNewCode=${ress1}&inspectionNodeCode=${res.data.code}&inspectionNodeName=${res.data.name}`
  147. })
  148. }
  149. } else {
  150. uni.hideLoading();
  151. uni.showToast({
  152. icon: 'none',
  153. title: res.msg || '请求数据失败!'
  154. });
  155. }
  156. });
  157. }).catch(err=>{
  158. uni.hideLoading();
  159. });
  160. }
  161. // 获取故障来源列表
  162. function getSources(){
  163. let postData = {
  164. "key": 'incident_source',
  165. "type": "list",
  166. };
  167. api_getDictionary(postData).then(res => {
  168. res = res || [];
  169. let discover = res.find(v => v.value === 'inspection');
  170. if(discover){
  171. defaultSourceValue.value = discover.id;
  172. }
  173. })
  174. }
  175. // 新建事件
  176. async function toBuildIncident(res){
  177. incidentBuildStore.clearIncidentBuildData();
  178. let imgObj = res.inspectionFormValuesList.find(v => v.inspectionFormItemDTO.type.value == 7);
  179. let repairImgList = [];
  180. if(imgObj){
  181. let result = await api_listAttachment('inspection', res.id);
  182. result.data = result.data || [];
  183. result.data = result.data.filter(v => v.recordId == imgObj.itemId);
  184. result.data = result.data.map(v => ({
  185. url: location.origin + "/file" + v.relativeFilePath,
  186. path: location.origin + "/file" + v.relativeFilePath,
  187. size: v.size,
  188. name: v.name,
  189. extname: v.suffix,
  190. }))
  191. repairImgList = result.data;
  192. }
  193. console.log(repairImgList, 'repairImgList')
  194. let incidentData = {
  195. place: res.inspectionNodeDTO.floorDTO,
  196. houseNumber: res.inspectionNodeDTO.address,
  197. source: defaultSourceValue.value,
  198. description: res.inspectionFormValuesList.filter(v => v.exception == 1).map(v => `${v.name}填写值为${v.valuex}`).join(';'),
  199. requester: loginUserStore.loginUser.user,
  200. branch: loginUserStore.loginUser.user.currentHospital.parent ? loginUserStore.loginUser.user.currentHospital.parent.id : loginUserStore.loginUser.user.currentHospital.id,
  201. contacts: loginUserStore.loginUser.user.name,
  202. contactsInformation: loginUserStore.loginUser.user.phone,
  203. category: res.inspectionDTO.inspectionFormDTO.categoryDTO,
  204. department: res.inspectionDTO.inspectionFormDTO.repairDeptDTO,
  205. priority: res.inspectionDTO.inspectionFormDTO.priorityDTO,
  206. repairImgList,
  207. inspectionTaskId: res.id,
  208. }
  209. console.log(incidentData, 'incidentData')
  210. incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
  211. uni.navigateTo({
  212. url: `/pages/buildIncident/buildIncident?type=inspection`
  213. })
  214. }
  215. // 巡检项
  216. function toInspectionValue(data){
  217. uni.showLoading({
  218. title: "加载中",
  219. mask: true,
  220. });
  221. // 'inspection|$|1bd0c704-0962-4ed4-b5a6-b5bda3d78231'
  222. // 'inspection|$|bc9f61af-99c8-4c86-88f9-f29dd3fc43c0'
  223. // 'inspection|$|92e7bb9a-5f58-42f6-991a-fcd67247e295'
  224. SM().then((ress1) => {
  225. let postData = {
  226. code: ress1,
  227. taskId: data.id,
  228. account: loginUserStore.loginUser.user.account,
  229. };
  230. api_scanCode(postData).then((res) => {
  231. uni.hideLoading();
  232. if (res.status == 200) {
  233. inspectionValueStore.setInspectionValueData(res.data);
  234. uni.navigateTo({
  235. url: `/pages/inspection/inspectionValue/inspectionValue?inspectionExecuteId=${data.id}`
  236. })
  237. } else {
  238. uni.showToast({
  239. icon: 'none',
  240. title: res.msg || '请求数据失败!'
  241. });
  242. }
  243. });
  244. }).catch(err=>{
  245. uni.hideLoading();
  246. });
  247. }
  248. // 获取tab选项
  249. function getTabs(){
  250. uni.showLoading({
  251. title: "加载中",
  252. mask: true,
  253. });
  254. api_getDictionary({
  255. "type": "list",
  256. "key": "inspection_task_status"
  257. }).then(res => {
  258. uni.hideLoading();
  259. let list = res || [];
  260. let todo = list.find(v => v.value === '1');
  261. let close = list.find(v => v.value === '2');
  262. dataInfo.tabs = [{id: 0, name: '全部', value: 'all', num: ''}];
  263. todo && dataInfo.tabs.push({...todo, ...{num: '', value: 'todo'}});
  264. close && dataInfo.tabs.push({...close, ...{num: '', value: 'close'}});
  265. getList(0);
  266. })
  267. }
  268. // 点击tab
  269. function clickTab(tabId){
  270. dataInfo.tabActiveId = tabId;
  271. getList(0);
  272. }
  273. // 点击筛选
  274. function filterClick(){
  275. dataInfo.isFilter = true;
  276. }
  277. // 确认筛选
  278. function conformFilter(evtFilter){
  279. dataInfo.evtFilter = evtFilter;
  280. dataInfo.isFilter = false;
  281. getList(0);
  282. }
  283. // 关闭筛选
  284. function cancelFilter(){
  285. dataInfo.isFilter = false;
  286. }
  287. // 获取列表信息
  288. function getList(idx){
  289. uni.showLoading({
  290. title: "加载中",
  291. mask: true,
  292. });
  293. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  294. if(dataInfo.idx === 0){
  295. dataInfo.list = [];
  296. }
  297. let tabActiveObj = dataInfo.tabs.find(v => v.id == dataInfo.tabActiveId);
  298. let postData = {
  299. "idx": dataInfo.idx,
  300. "sum": 10,
  301. "account": loginUserStore.loginUser.user.account,
  302. "inspectionTask": {
  303. "queryTask": tabActiveObj ? tabActiveObj.value : undefined,
  304. "assignAccount": loginUserStore.loginUser.user.account,
  305. }
  306. }
  307. if(dataInfo.evtFilter && dataInfo.evtFilter.inspectionForm && dataInfo.evtFilter.inspectionForm.id){
  308. postData.inspectionTask.formId = dataInfo.evtFilter.inspectionForm.id;
  309. }
  310. if(dataInfo.evtFilter && Array.isArray(dataInfo.evtFilter.acceptDate) && dataInfo.evtFilter.acceptDate.length){
  311. postData.inspectionTask.addTimeStart = format(startOfDay(new Date(dataInfo.evtFilter.acceptDate[0])), 'yyyy-MM-dd HH:mm:ss');
  312. postData.inspectionTask.addTimeEnd = format(endOfDay(dataInfo.evtFilter.acceptDate[1]), 'yyyy-MM-dd HH:mm:ss');
  313. }
  314. if(dataInfo.evtFilter && dataInfo.evtFilter.area && dataInfo.evtFilter.area.id){
  315. postData.inspectionTask.buildId = dataInfo.evtFilter.area.id;
  316. }
  317. inspectionListSearchStore.setInspectionListSearchData(dataInfo);
  318. api_inspectionTask(postData).then(res => {
  319. uni.hideLoading();
  320. uni.stopPullDownRefresh();
  321. if(res.status == 200){
  322. let list = res.list || [];
  323. if(list.length){
  324. dataInfo.hasMore = true;
  325. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  326. }else{
  327. dataInfo.hasMore = false;
  328. }
  329. }else{
  330. uni.showToast({
  331. icon: 'none',
  332. title: res.msg || '请求数据失败!'
  333. });
  334. }
  335. })
  336. getCount(postData.inspectionTask);
  337. }
  338. // 获取列表数量
  339. function getCount(inspectionTask = {}){
  340. let postData = {
  341. account: loginUserStore.loginUser.user.account,
  342. taskList: [],
  343. }
  344. dataInfo.tabs.forEach(v => {
  345. postData.taskList.push({...inspectionTask, ...{ queryTask: v.value }});
  346. })
  347. api_listCount(postData).then(res => {
  348. if(res.state == 200){
  349. let myData = res.data || [];
  350. dataInfo.tabs.forEach((v) => {
  351. v.num = myData[v.value];
  352. })
  353. }else{
  354. uni.showToast({
  355. icon: 'none',
  356. title: res.msg || '请求数据失败!'
  357. });
  358. }
  359. })
  360. }
  361. // 初始化
  362. function onLoadFn(){
  363. // 我的-数量跳转
  364. if(inspectionListSearchStore.inspectionListSearch.data){
  365. // 缓存的搜索条件
  366. Object.assign(dataInfo, inspectionListSearchStore.inspectionListSearch.data);
  367. }
  368. getTabs();
  369. }
  370. onLoad((option) => {
  371. getSources();
  372. for(let i = 0; i<7; i++){
  373. setTabbar(i)
  374. }
  375. onLoadFn();
  376. })
  377. onTabItemTap(e => {
  378. onLoadFn();
  379. })
  380. onPullDownRefresh(() => {
  381. getList(0)
  382. })
  383. onReachBottom(() => {
  384. dataInfo.idx += 1;
  385. if (dataInfo.hasMore) {
  386. getList(); // 当触底时加载更多数据
  387. }
  388. })
  389. </script>
  390. <style lang="scss" scoped>
  391. .toolbar {
  392. position: fixed;
  393. left: 0;
  394. bottom: var(--window-bottom);
  395. z-index: 99;
  396. width: 100%;
  397. height: 88rpx;
  398. display: flex;
  399. justify-content: center;
  400. align-items: center;
  401. box-sizing: border-box;
  402. border-radius: 4rpx;
  403. background-color: #E5E8ED;
  404. .toolbar-icon {
  405. font-size: 52rpx;
  406. margin-right: 16rpx;
  407. color: #49B856;
  408. }
  409. .toolbar-sao {
  410. font-size: 36rpx;
  411. color: #333;
  412. }
  413. }
  414. page{
  415. height: calc(100vh - var(--window-bottom));
  416. }
  417. .incidentList{
  418. display: flex;
  419. flex-direction: column;
  420. justify-content: space-between;
  421. .head{
  422. height: 88rpx;
  423. display: flex;
  424. position: fixed;
  425. z-index: 99;
  426. width: 100%;
  427. background-color: #fff;
  428. font-size: 30rpx;
  429. .tab{
  430. flex: 1;
  431. display: flex;
  432. justify-content: center;
  433. align-items: center;
  434. border-bottom: 4rpx solid transparent;
  435. &.active{
  436. color: $uni-primary;
  437. border-color: $uni-primary;
  438. }
  439. }
  440. .filter{
  441. width: 84rpx;
  442. display: flex;
  443. justify-content: center;
  444. align-items: center;
  445. .newicon-shaixuan{
  446. font-size: 36rpx;
  447. color: #2C2C2C;
  448. }
  449. }
  450. }
  451. .body{
  452. margin-bottom: calc(var(--window-bottom) + 88rpx);
  453. margin-top: 88rpx;
  454. border-top: 6rpx solid #EBEBEB;
  455. .body_item{
  456. border-bottom: 8rpx solid #EBEBEB;
  457. .body_item_head{
  458. word-break: break-all;
  459. text-align: justify;
  460. text-align: left;
  461. margin: 24rpx;
  462. font-size: 30rpx;
  463. .sign{
  464. margin-right: 16rpx;
  465. font-weight: bold;
  466. color: #49B856;
  467. &.signRed{
  468. color: #FF0000;
  469. }
  470. }
  471. }
  472. .body_item_content{
  473. border-top: 1rpx solid #D8D8D8;
  474. padding: 24rpx 24rpx 24rpx 48rpx;
  475. .body_item_content_p{
  476. color: #6A6A6A;
  477. font-size: 26rpx;
  478. display: flex;
  479. justify-content: space-between;
  480. align-items: center;
  481. margin-bottom: 24rpx;
  482. &:last-of-type{
  483. margin-bottom: 0;
  484. }
  485. .name{
  486. flex: 1;
  487. }
  488. .status{
  489. padding: 4rpx 10rpx;
  490. border-radius: 20rpx;
  491. background-color: #DBE8FE;
  492. font-size: 22rpx;
  493. color: #006CF9;
  494. }
  495. .icon_all{
  496. .mic-filled,
  497. .image-filled
  498. {
  499. margin-left: 16rpx;
  500. }
  501. }
  502. }
  503. }
  504. .body_item_foot{
  505. border-top: 1rpx solid #D8D8D8;
  506. font-size: 26rpx;
  507. padding: 24rpx;
  508. .foot_info{
  509. display: flex;
  510. justify-content: space-between;
  511. align-items: center;
  512. .phone-filled{
  513. margin-left: 5rpx;
  514. }
  515. }
  516. }
  517. }
  518. }
  519. .zanwu{
  520. box-sizing: border-box;
  521. margin-bottom: calc(var(--window-bottom) + 88rpx);
  522. margin-top: 88rpx;
  523. border-top: 6rpx solid #EBEBEB;
  524. height: calc(100vh - var(--window-bottom) - 176rpx);
  525. display: flex;
  526. justify-content: center;
  527. background-color: #F7F7F7;
  528. .newicon-zanwu{
  529. font-size: 256rpx;
  530. color: #D6D6D6;
  531. margin-top: 140rpx;
  532. }
  533. }
  534. }
  535. </style>