inspectionExecute.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  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. {{ 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. </view>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="zanwu" v-else>
  39. <text class="newicon newicon-zanwu"></text>
  40. </view>
  41. <InspectionListFilter v-if="dataInfo.isFilter" @cancelEmit="cancelFilter" @confirmEmit="conformFilter" :evt="dataInfo.evtFilter"></InspectionListFilter>
  42. </view>
  43. </template>
  44. <script setup>
  45. import InspectionListFilter from '@/components/InspectionListFilter.vue';
  46. import { startOfDay, endOfDay, format, add } from 'date-fns'
  47. import { ref, reactive, computed } from 'vue'
  48. import { onLoad, onPullDownRefresh, onReachBottom, onTabItemTap } from '@dcloudio/uni-app'
  49. import { SM } from "@/http/http.js"
  50. import { api_hsms_getDictionary, api_inspectionTask, api_listCount, api_scanCode } from "@/http/api.js"
  51. import { filterFormatDate } from '@/filters/filterFormatDate.js'
  52. import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
  53. import { computedStateStyle } from '@/filters/computedStateStyle.js'
  54. import { computedCurrentLogOverTime } from '@/filters/computedCurrentLogOverTime.js'
  55. import { defaultColor } from '@/static/js/theme.js'
  56. import { useSetTitle } from '@/share/useSetTitle.js'
  57. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  58. import { useLoginUserStore } from '@/stores/loginUser'
  59. import { useIncidentNumStore } from '@/stores/incidentNum'
  60. import { useInspectionListSearchStore } from '@/stores/inspectionListSearch'
  61. import { useInspectionValueStore } from '@/stores/inspectionValue'
  62. import { useSetTabbar } from '@/share/useSetTabbar.js'
  63. useSetTitle();
  64. const loginUserStore = useLoginUserStore();
  65. const incidentNumStore = useIncidentNumStore();
  66. const inspectionListSearchStore = useInspectionListSearchStore();
  67. const inspectionValueStore = useInspectionValueStore();
  68. const { formatDate } = filterFormatDate();
  69. const { priorityStyle } = computedPriorityStyle();
  70. const { stateStyle } = computedStateStyle();
  71. const { currentLogOverTime } = computedCurrentLogOverTime();
  72. const { makePhoneCall } = useMakePhoneCall();
  73. const { setTabbar } = useSetTabbar();
  74. // 主题颜色
  75. const primaryColor = ref(defaultColor)
  76. const assignFlag = ref(false);//指派权限
  77. const qiangdan = ref(false);//接单权限
  78. // 转换协同人
  79. const computedSynergetic = computed(() => (synergetic) => {
  80. return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
  81. })
  82. // 数据
  83. const dataInfo = reactive({
  84. tabs: [{id: 0, name: '全部', value: 'all', num: ''}],
  85. tabActiveId: 0,//当前选择的tab
  86. list: [],//工单列表
  87. idx: 0,//页码
  88. hasMore: true,//是否有更多数据
  89. isFilter: false,//筛选框开关
  90. evtFilter: {
  91. area: {id: 0, area: '全部'},
  92. inspectionForm: {id: 0, name: '全部'},
  93. acceptDate: [],
  94. },//筛选框数据
  95. })
  96. // 巡检项
  97. function toInspectionValue(data){
  98. uni.showLoading({
  99. title: "加载中",
  100. mask: true,
  101. });
  102. // 'inspection|$|1bd0c704-0962-4ed4-b5a6-b5bda3d78231'
  103. // 'inspection|$|bc9f61af-99c8-4c86-88f9-f29dd3fc43c0'
  104. SM().then((ress1) => {
  105. let postData = {
  106. code: ress1,
  107. taskId: data.id,
  108. account: loginUserStore.loginUser.user.account,
  109. };
  110. api_scanCode(postData).then((res) => {
  111. uni.hideLoading();
  112. if (res.status == 200) {
  113. inspectionValueStore.setInspectionValueData(res.data);
  114. uni.navigateTo({
  115. url: `/pages/inspection/inspectionValue/inspectionValue?inspectionExecuteId=${data.id}`
  116. })
  117. } else {
  118. uni.showToast({
  119. icon: 'none',
  120. title: res.msg || '请求数据失败!'
  121. });
  122. }
  123. });
  124. }).catch(err=>{
  125. uni.hideLoading();
  126. });
  127. }
  128. // 获取tab选项
  129. function getTabs(){
  130. uni.showLoading({
  131. title: "加载中",
  132. mask: true,
  133. });
  134. api_hsms_getDictionary({
  135. "type": "list",
  136. "key": "inspection_task_status"
  137. }).then(res => {
  138. uni.hideLoading();
  139. let list = res.data || [];
  140. let todo = list.find(v => v.value === '1');
  141. let close = list.find(v => v.value === '2');
  142. dataInfo.tabs = [{id: 0, name: '全部', value: 'all', num: ''}];
  143. todo && dataInfo.tabs.push({...todo, ...{num: '', value: 'todo'}});
  144. close && dataInfo.tabs.push({...close, ...{num: '', value: 'close'}});
  145. getList(0);
  146. })
  147. }
  148. // 点击tab
  149. function clickTab(tabId){
  150. dataInfo.tabActiveId = tabId;
  151. getList(0);
  152. }
  153. // 点击筛选
  154. function filterClick(){
  155. dataInfo.isFilter = true;
  156. }
  157. // 确认筛选
  158. function conformFilter(evtFilter){
  159. dataInfo.evtFilter = evtFilter;
  160. dataInfo.isFilter = false;
  161. getList(0);
  162. }
  163. // 关闭筛选
  164. function cancelFilter(){
  165. dataInfo.isFilter = false;
  166. }
  167. // 获取列表信息
  168. function getList(idx){
  169. uni.showLoading({
  170. title: "加载中",
  171. mask: true,
  172. });
  173. dataInfo.idx = idx === undefined ? dataInfo.idx : idx;
  174. if(dataInfo.idx === 0){
  175. dataInfo.list = [];
  176. }
  177. let tabActiveObj = dataInfo.tabs.find(v => v.id == dataInfo.tabActiveId);
  178. let postData = {
  179. "idx": dataInfo.idx,
  180. "sum": 10,
  181. "account": loginUserStore.loginUser.user.account,
  182. "inspectionTask": {
  183. "queryTask": tabActiveObj ? tabActiveObj.value : undefined,
  184. "assignAccount": loginUserStore.loginUser.user.account,
  185. }
  186. }
  187. if(dataInfo.evtFilter && dataInfo.evtFilter.inspectionForm && dataInfo.evtFilter.inspectionForm.id){
  188. postData.inspectionTask.formId = dataInfo.evtFilter.inspectionForm.id;
  189. }
  190. if(dataInfo.evtFilter && Array.isArray(dataInfo.evtFilter.acceptDate) && dataInfo.evtFilter.acceptDate.length){
  191. postData.inspectionTask.addTimeStart = format(startOfDay(new Date(dataInfo.evtFilter.acceptDate[0])), 'yyyy-MM-dd HH:mm:ss');
  192. postData.inspectionTask.addTimeEnd = format(endOfDay(dataInfo.evtFilter.acceptDate[1]), 'yyyy-MM-dd HH:mm:ss');
  193. }
  194. if(dataInfo.evtFilter && dataInfo.evtFilter.area && dataInfo.evtFilter.area.id){
  195. postData.inspectionTask.buildId = dataInfo.evtFilter.area.id;
  196. }
  197. inspectionListSearchStore.setInspectionListSearchData(dataInfo);
  198. api_inspectionTask(postData).then(res => {
  199. uni.hideLoading();
  200. uni.stopPullDownRefresh();
  201. if(res.status == 200){
  202. let list = res.list || [];
  203. if(list.length){
  204. dataInfo.hasMore = true;
  205. dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
  206. }else{
  207. dataInfo.hasMore = false;
  208. }
  209. }else{
  210. uni.showToast({
  211. icon: 'none',
  212. title: res.msg || '请求数据失败!'
  213. });
  214. }
  215. })
  216. getCount(postData.inspectionTask);
  217. }
  218. // 获取列表数量
  219. function getCount(inspectionTask = {}){
  220. let postData = {
  221. account: loginUserStore.loginUser.user.account,
  222. taskList: [],
  223. }
  224. dataInfo.tabs.forEach(v => {
  225. postData.taskList.push({...inspectionTask, ...{ queryTask: v.value }});
  226. })
  227. api_listCount(postData).then(res => {
  228. if(res.state == 200){
  229. let myData = res.data || [];
  230. dataInfo.tabs.forEach((v) => {
  231. v.num = myData[v.value];
  232. })
  233. }else{
  234. uni.showToast({
  235. icon: 'none',
  236. title: res.msg || '请求数据失败!'
  237. });
  238. }
  239. })
  240. }
  241. // 初始化
  242. function onLoadFn(){
  243. // 我的-数量跳转
  244. if(inspectionListSearchStore.inspectionListSearch.data){
  245. // 缓存的搜索条件
  246. Object.assign(dataInfo, inspectionListSearchStore.inspectionListSearch.data);
  247. }
  248. getTabs();
  249. }
  250. onLoad((option) => {
  251. for(let i = 0; i<5; i++){
  252. setTabbar(i)
  253. }
  254. onLoadFn();
  255. })
  256. onTabItemTap(e => {
  257. onLoadFn();
  258. })
  259. onPullDownRefresh(() => {
  260. getList(0)
  261. })
  262. onReachBottom(() => {
  263. dataInfo.idx += 1;
  264. if (dataInfo.hasMore) {
  265. getList(); // 当触底时加载更多数据
  266. }
  267. })
  268. </script>
  269. <style lang="scss" scoped>
  270. page{
  271. height: calc(100vh - var(--window-bottom));
  272. }
  273. .incidentList{
  274. display: flex;
  275. flex-direction: column;
  276. justify-content: space-between;
  277. .head{
  278. height: 88rpx;
  279. display: flex;
  280. position: fixed;
  281. z-index: 99;
  282. width: 100%;
  283. background-color: #fff;
  284. font-size: 30rpx;
  285. .tab{
  286. flex: 1;
  287. display: flex;
  288. justify-content: center;
  289. align-items: center;
  290. border-bottom: 4rpx solid transparent;
  291. &.active{
  292. color: $uni-primary;
  293. border-color: $uni-primary;
  294. }
  295. }
  296. .filter{
  297. width: 84rpx;
  298. display: flex;
  299. justify-content: center;
  300. align-items: center;
  301. .newicon-shaixuan{
  302. font-size: 36rpx;
  303. color: #2C2C2C;
  304. }
  305. }
  306. }
  307. .body{
  308. margin-bottom: var(--window-bottom);
  309. margin-top: 88rpx;
  310. border-top: 6rpx solid #EBEBEB;
  311. .body_item{
  312. border-bottom: 8rpx solid #EBEBEB;
  313. .body_item_head{
  314. word-break: break-all;
  315. text-align: justify;
  316. text-align: left;
  317. margin: 24rpx;
  318. font-size: 30rpx;
  319. }
  320. .body_item_content{
  321. border-top: 1rpx solid #D8D8D8;
  322. padding: 24rpx 24rpx 24rpx 48rpx;
  323. .body_item_content_p{
  324. color: #6A6A6A;
  325. font-size: 26rpx;
  326. display: flex;
  327. justify-content: space-between;
  328. align-items: center;
  329. margin-bottom: 24rpx;
  330. &:last-of-type{
  331. margin-bottom: 0;
  332. }
  333. .name{
  334. flex: 1;
  335. }
  336. .status{
  337. padding: 4rpx 10rpx;
  338. border-radius: 20rpx;
  339. background-color: #DBE8FE;
  340. font-size: 22rpx;
  341. color: #006CF9;
  342. }
  343. .icon_all{
  344. .mic-filled,
  345. .image-filled
  346. {
  347. margin-left: 16rpx;
  348. }
  349. }
  350. }
  351. }
  352. .body_item_foot{
  353. border-top: 1rpx solid #D8D8D8;
  354. font-size: 26rpx;
  355. padding: 24rpx;
  356. .foot_info{
  357. display: flex;
  358. justify-content: space-between;
  359. align-items: center;
  360. .phone-filled{
  361. margin-left: 5rpx;
  362. }
  363. }
  364. }
  365. }
  366. }
  367. .zanwu{
  368. box-sizing: border-box;
  369. margin-bottom: var(--window-bottom);
  370. margin-top: 88rpx;
  371. border-top: 6rpx solid #EBEBEB;
  372. height: calc(100vh - var(--window-bottom) - 88rpx);
  373. display: flex;
  374. justify-content: center;
  375. background-color: #F7F7F7;
  376. .newicon-zanwu{
  377. font-size: 256rpx;
  378. color: #D6D6D6;
  379. margin-top: 140rpx;
  380. }
  381. }
  382. }
  383. </style>