4 Commits f8ce814a11 ... 45104c32d2

Author SHA1 Message Date
  seimin 45104c32d2 故障来源改为报修来源 6 days ago
  seimin fe877e1600 Merge branch 'new-itsm-wx-handle' into develop 6 days ago
  seimin 92c4ddeb03 巡检详情 1 week ago
  seimin 1351a3207c 巡检 1 week ago

+ 16 - 1
http/api.js

@@ -354,4 +354,19 @@ export function api_repairCancel(data){
354 354
  */
355 355
 export function api_departmentDetail(id){
356 356
   return get("/simple/data/fetchData/department/" + id);
357
-}
357
+}
358
+
359
+/**
360
+ * 获取巡检执行详情
361
+ */
362
+export function api_inspectionTaskDetail(data){
363
+  return get("/simple/data/fetchData/inspectionTask/" + data);
364
+}
365
+
366
+/**
367
+ * 获取巡检项
368
+ */
369
+export function api_inspectionFormValues(data){
370
+  return post("/simple/data/fetchDataList/inspectionFormValues", data);
371
+}
372
+

+ 8 - 0
pages.json

@@ -264,6 +264,14 @@
264 264
        }
265 265
      }
266 266
    },
267
+   {
268
+     "path": "pages/inspection/inspectionDetail/inspectionDetail",
269
+     "style": {
270
+       "h5": {
271
+         "titleNView": false
272
+       }
273
+     }
274
+   },
267 275
 	 {
268 276
 	   "path": "pages/searchUser/searchUser",
269 277
 	   "style": {

+ 15 - 15
pages/buildIncident/buildIncident.vue

@@ -1,11 +1,11 @@
1 1
 <template>
2 2
   <view class="buildIncident">
3 3
 		<!-- 原来的scroll-view -->
4
-    <view class="body view-body"> 
4
+    <view class="body view-body">
5 5
       <view class="form_item">
6 6
         <view class="title select"><text class="required newicon newicon-bitian"></text>院区:</view>
7 7
         <!-- <uni-data-select class="value" v-model="incidentData.branch" :localdata="dataInfo.branchList" :clear="false" placeholder="请选择院区" :class="{formRed: isSubmit && !incidentData.branch}" @change="changeBranch"></uni-data-select> -->
8
- 				<uni-data-picker class="value" placeholder="请选择院区" 
8
+ 				<uni-data-picker class="value" placeholder="请选择院区"
9 9
 					:localdata="dataInfo.branchList" v-model="incidentData.branch" :clear-icon="false"
10 10
 					:class="{formRed: isSubmit && !incidentData.branch}" @change="changeBranch">
11 11
 				</uni-data-picker>
@@ -56,10 +56,10 @@
56 56
         </view>
57 57
       </view>
58 58
       <view class="form_item">
59
-        <view class="title select"><text class="required newicon newicon-bitian"></text>故障来源:</view>
60
-        <!-- <uni-data-select readonly class="value" v-model="incidentData.source" :localdata="dataInfo.sourceList" placeholder="请选择故障来源" :class="{formRed: isSubmit && !incidentData.source}"></uni-data-select> -->
61
-				<uni-data-picker class="value" placeholder="请选择故障来源" 
62
-					:localdata="dataInfo.sourceList" v-model="incidentData.source" 
59
+        <view class="title select"><text class="required newicon newicon-bitian"></text>报修来源:</view>
60
+        <!-- <uni-data-select readonly class="value" v-model="incidentData.source" :localdata="dataInfo.sourceList" placeholder="请选择报修来源" :class="{formRed: isSubmit && !incidentData.source}"></uni-data-select> -->
61
+				<uni-data-picker class="value" placeholder="请选择报修来源"
62
+					:localdata="dataInfo.sourceList" v-model="incidentData.source"
63 63
 					:clear-icon="false" :class="{formRed: isSubmit && !incidentData.source}">
64 64
 				</uni-data-picker>
65 65
 			</view>
@@ -67,7 +67,7 @@
67 67
         <view class="title select"><text class="required newicon newicon-bitian"></text>优先级:</view>
68 68
         <!-- <uni-data-select placement="top" readonly class="value" v-model="incidentData.priority" :localdata="dataInfo.priorityList" placeholder="请选择优先级" :class="{formRed: isSubmit && !incidentData.priority}"></uni-data-select> -->
69 69
 				<uni-data-picker placement="top" class="value" placeholder="请选择优先级"
70
-					:localdata="dataInfo.priorityList" v-model="incidentData.priority" 
70
+					:localdata="dataInfo.priorityList" v-model="incidentData.priority"
71 71
 					:clear-icon="false" :class="{formRed: isSubmit && !incidentData.priority}">
72 72
 				</uni-data-picker>
73 73
 			</view>
@@ -119,7 +119,7 @@
119 119
 
120 120
   // 主题颜色
121 121
   const primaryColor = ref(defaultColor)
122
-	
122
+
123 123
   // 工单对象
124 124
   const incidentData = reactive({
125 125
     "deleteFlag": 0,
@@ -148,7 +148,7 @@
148 148
   // 数据
149 149
   const dataInfo = reactive({
150 150
     branchList: [], //院区列表
151
-    sourceList: [], //故障来源列表
151
+    sourceList: [], //报修来源列表
152 152
     priorityList: [], //优先级列表
153 153
   })
154 154
 
@@ -206,7 +206,7 @@
206 206
       url: `/pages/searchDept/searchDept`
207 207
     })
208 208
   }
209
-  
209
+
210 210
   // 跳转到搜索报修人
211 211
   function selectRequester(){
212 212
     incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident', 'requester');
@@ -266,7 +266,7 @@
266 266
     // })
267 267
   }
268 268
 
269
-  // 获取故障来源列表
269
+  // 获取报修来源列表
270 270
   function getSources(sourceValue){
271 271
     uni.showLoading({
272 272
       title: "加载中",
@@ -323,7 +323,7 @@
323 323
     incidentData.place = undefined;
324 324
     incidentData.houseNumber = undefined;
325 325
   }
326
-	
326
+
327 327
   // 处理提交事件
328 328
   function handlerOrder(){
329 329
     let postData = {
@@ -342,7 +342,7 @@
342 342
   function handlerOrderImg(imgObj){
343 343
     return uploadFile(imgObj, 'incident', dataInfo.incidentId)
344 344
   }
345
-	
345
+
346 346
 	// 获取优先级
347 347
 	function getPriorityData(){
348 348
 		let postData = {
@@ -360,7 +360,7 @@
360 360
       }
361 361
 		})
362 362
 	}
363
-	
363
+
364 364
   // 提交
365 365
   function submit(){
366 366
     isSubmit.value = true;
@@ -399,7 +399,7 @@
399 399
     if(!incidentData.source){
400 400
       uni.showToast({
401 401
       	icon: 'none',
402
-        title: '请选择故障来源'
402
+        title: '请选择报修来源'
403 403
       });
404 404
       return;
405 405
     }

+ 26 - 10
pages/incidentDetail/incidentDetail.vue

@@ -38,12 +38,6 @@
38 38
               <image class="resourceItem" :src="img.thumbFilePath" mode="aspectFill" v-for="(img, i) in dataInfo.repairImgs" :key="i" @click="previewImg(i, 'repairImgs')"></image>
39 39
             </view>
40 40
           </view>
41
-<!-- 					<view class="deital_item">
42
-					  <text class="name">报修视频:</text>
43
-					  <view class="value img">
44
-							<image class="resourceItem" src="/static/img/300.jpg" v-for="(img, i) in dataInfo.repairVideo" :key="i" @click="videoView(img)"></image>
45
-					  </view>
46
-					</view> -->
47 41
 					<view class="deital_item">
48 42
 					  <text class="name">报修录音:</text>
49 43
 					  <view class="value img" v-if="dataInfo.repairAudio.length>0">
@@ -75,6 +69,14 @@
75 69
             <text class="value">{{dataInfo.incidentData.requester ? dataInfo.incidentData.requester.name : '无'}}</text>
76 70
           </view>
77 71
           <view class="deital_item">
72
+            <text class="name">报修来源:</text>
73
+            <text class="value">{{dataInfo.incidentData.source ? dataInfo.incidentData.source.name : '无'}}</text>
74
+          </view>
75
+          <view class="deital_item" v-if="dataInfo.incidentData.inspectionTaskNo">
76
+            <text class="name">巡检单号:</text>
77
+            <text class="value">{{dataInfo.incidentData.inspectionTaskNo}}</text>
78
+          </view>
79
+          <view class="deital_item">
78 80
             <text class="name">预约维修时间:</text>
79 81
             <text class="value">{{dataInfo.incidentData.yyTime || '无'}}</text>
80 82
           </view>
@@ -185,7 +187,7 @@
185 187
           </view>
186 188
         </view>
187 189
       </template>
188
-
190
+      
189 191
       <!-- 评价信息 -->
190 192
       <template v-if="dataInfo.tabActiveValue === '4'">
191 193
         <view class="detail_head">
@@ -216,9 +218,11 @@
216 218
           </view>
217 219
         </view>
218 220
       </template>
221
+
219 222
     </scroll-view>
220 223
     <view class="foot_common_btns">
221
-      <button @click="goBack" type="default" class="primaryButton btn">返回</button>
224
+      <button @click="viewIncidentList()" type="default" class="primaryButton btn">返回事件列表</button>
225
+      <button v-if="dataInfo.incidentData.inspectionTaskId" @click="viewInspectionDetail(dataInfo.incidentData.inspectionTaskId)" type="default" class="primaryButton btn">查看巡检单</button>
222 226
     </view>
223 227
 		<uni-popup ref="popup" background-color="#fff" type="center" :before-close="true">
224 228
 			<view class="popup-content">
@@ -240,7 +244,6 @@
240 244
   import { defaultColor } from '@/static/js/theme.js'
241 245
   import { useSetTitle } from '@/share/useSetTitle.js'
242 246
   import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
243
-  import { useGoBack } from '@/share/useGoBack.js'
244 247
   import { useLoginUserStore } from '@/stores/loginUser'
245 248
   import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
246 249
   import { computedStateStyle } from '@/filters/computedStateStyle.js'
@@ -249,7 +252,6 @@
249 252
   useSetTitle();
250 253
   const loginUserStore = useLoginUserStore();
251 254
   const { makePhoneCall }  = useMakePhoneCall();
252
-  const { goBack }  = useGoBack();
253 255
   const { priorityStyle }  = computedPriorityStyle();
254 256
   const { stateStyle }  = computedStateStyle();
255 257
   const { formatDate }  = filterFormatDate();
@@ -476,6 +478,20 @@
476 478
       dataInfo.handlerImgs = res.data;
477 479
     })
478 480
   }
481
+  
482
+  // 返回事件列表
483
+  function viewIncidentList(){
484
+    uni.reLaunch({
485
+      url: `/pages/incidentList/incidentList`
486
+    })
487
+  }
488
+  
489
+  // 查看巡检单
490
+  function viewInspectionDetail(inspectionTaskId){
491
+    uni.navigateTo({
492
+      url: `/pages/inspection/inspectionDetail/inspectionDetail?inspectionTaskId=${inspectionTaskId}`
493
+    })
494
+  }
479 495
 
480 496
   onLoad((option) => {
481 497
     dataInfo.incidentId = option.incidentId;

+ 580 - 0
pages/inspection/inspectionDetail/inspectionDetail.vue

@@ -0,0 +1,580 @@
1
+<template>
2
+  <view class="incidentDetail">
3
+    <view class="head">
4
+      <view class="tab" :class="{active: tab.value === dataInfo.tabActiveValue}" v-for="tab in dataInfo.tabs" :key="tab.id" @click="clickTab(tab.value)">
5
+        {{tab.name}}<text v-if="tab.num !== ''">({{tab.num}})</text>
6
+      </view>
7
+    </view>
8
+    <scroll-view scroll-y class="body">
9
+      <!-- 基础信息 -->
10
+      <template v-if="dataInfo.tabActiveValue === '1'">
11
+        <view class="detail_head">
12
+          <text class="title">计划批次信息</text>
13
+          <view class="other">
14
+            <view class="status" :style="{ color: dataInfo.inspectionTaskData.status == 1 ? 'red' : '' }">{{dataInfo.inspectionTaskData.status ? dataInfo.inspectionTaskData.status.name : ''}}</view>
15
+          </view>
16
+        </view>
17
+        <view class="detail_item_wrap">
18
+          <view class="deital_item">
19
+            <text class="name">单号:</text>
20
+            <text class="value">{{dataInfo.inspectionTaskData.code}}</text>
21
+          </view>
22
+          <view class="deital_item">
23
+            <text class="name">计划主题:</text>
24
+            <text class="value">{{dataInfo.inspectionTaskData.inspectionDTO?.name}}</text>
25
+          </view>
26
+          <view class="deital_item">
27
+            <text class="name">巡检点:</text>
28
+            <text class="value">{{dataInfo.inspectionTaskData.inspectionNodeDTO?.name }}</text>
29
+          </view>
30
+          <view class="deital_item">
31
+            <text class="name">巡检单:</text>
32
+            <text class="value">{{dataInfo.inspectionTaskData.inspectionDTO?.inspectionFormDTO?.name}}</text>
33
+          </view>
34
+          <view class="deital_item">
35
+            <text class="name">签到方式:</text>
36
+            <text class="value">{{dataInfo.inspectionTaskData.signType?.name}}</text>
37
+          </view>
38
+        </view>
39
+
40
+        <view class="detail_head">
41
+          <text class="title">执行信息</text>
42
+          <view class="other">
43
+            <view class="status" :style="{ color: dataInfo.inspectionTaskData.exception === 1 ? 'red' : '#49B856' }">{{dataInfo.inspectionTaskData.exception === 1 ? '异常' : '正常'}}</view>
44
+          </view>
45
+        </view>
46
+        <view class="detail_item_wrap">
47
+          <view class="deital_item">
48
+            <text class="name">创建时间:</text>
49
+            <text class="value">{{formatDate(dataInfo.inspectionTaskData.addTime, 'yyyy-MM-dd HH:mm')}}</text>
50
+          </view>
51
+          <view class="deital_item">
52
+            <text class="name">截止时间:</text>
53
+            <text class="value">{{formatDate(dataInfo.inspectionTaskData.overtime, 'yyyy-MM-dd HH:mm')}}</text>
54
+          </view>
55
+          <view class="deital_item">
56
+            <text class="name">完成时间:</text>
57
+            <text class="value">{{formatDate(dataInfo.inspectionTaskData.completeTime, 'yyyy-MM-dd HH:mm')}}</text>
58
+            <text class="value text_right">执行人:{{ dataInfo.inspectionTaskData.userDTO?.name || dataInfo.inspectionTaskData.groupDTO?.groupName }}</text>
59
+          </view>
60
+          <template v-if="dataInfo.inspectionTaskData.incidentDTO">
61
+            <view class="deital_item">
62
+              <text class="name">故障单号:</text>
63
+              <text class="value">{{dataInfo.inspectionTaskData.incidentDTO?.incidentsign}}</text>
64
+              <text class="value text_right">{{dataInfo.inspectionTaskData.incidentDTO?.state?.name}}</text>
65
+            </view>
66
+            <view class="deital_item">
67
+              <text class="name">处理人/组:</text>
68
+              <text class="value">{{dataInfo.inspectionTaskData.incidentDTO?.groupORHandlerUser}}</text>
69
+            </view>
70
+          </template>
71
+        </view>
72
+      </template>
73
+
74
+      <!-- 巡检信息 -->
75
+      <template v-if="dataInfo.tabActiveValue === '2'">
76
+        <view class="info">
77
+          <view v-for="item in dataInfo.valueList" :key="item.id">
78
+            <view v-for="(value, i) in item" :key="i" class="infoItem">
79
+              <text class="name">{{value.name}}</text>
80
+              <template v-if="value.inspectionFormItemDTO">
81
+                <text v-if="value.inspectionFormItemDTO.type.value != 7" class="value" :class="{ red: value.exception === 1 }">{{getValuex(value)}}</text>
82
+                <view class="deital_item" v-if="value.inspectionFormItemDTO.type.value == 7">
83
+                  <view class="value img">
84
+                    <image class="resourceItem" :src="img.thumbFilePath" mode="aspectFill" v-for="(img, i) in value.valuex" :key="i" @click="previewImg(i, 'inspectionTaskImgs', value.valuex)"></image>
85
+                  </view>
86
+                </view>
87
+              </template>
88
+            </view>
89
+          </view>
90
+        </view>
91
+      </template>
92
+
93
+      <!-- 流程图 -->
94
+      <template v-if="dataInfo.tabActiveValue === '3'">
95
+        <view class="process_item_wrap">
96
+          <view class="process_item" v-for="item in dataInfo.logList" :key="item.id">
97
+            <view class="process_item_top">
98
+              <view class="name">{{item.operationType?.name }}</view>
99
+              <view class="value" v-if="item.remarks">({{item.remarks}})</view>
100
+            </view>
101
+            <view class="process_item_bottom">
102
+              <text class="name">{{formatDate(item.operationTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
103
+              <text class="value" v-if="item.username">{{item.username}}</text>
104
+            </view>
105
+          </view>
106
+        </view>
107
+      </template>
108
+
109
+    </scroll-view>
110
+    <view class="foot_common_btns">
111
+      <button @click="viewInspectionExecute()" type="default" class="primaryButton btn">返回巡检列表</button>
112
+      <button v-if="dataInfo.inspectionTaskData.incidentId" @click="viewIncidentDetail(dataInfo.inspectionTaskData.incidentId)" type="default" class="primaryButton btn">查看故障单</button>
113
+    </view>
114
+  </view>
115
+</template>
116
+
117
+<script setup>
118
+  import chunk from 'lodash-es/chunk'
119
+  import { ref, reactive } from 'vue'
120
+  import { onLoad } from '@dcloudio/uni-app'
121
+  import { api_listAttachment, api_inspectionTaskDetail, api_inspectionFormValues } from "@/http/api.js"
122
+  import { defaultColor } from '@/static/js/theme.js'
123
+  import { useSetTitle } from '@/share/useSetTitle.js'
124
+  import { filterFormatDate } from '@/filters/filterFormatDate.js'
125
+
126
+  useSetTitle();
127
+  const { formatDate }  = filterFormatDate();
128
+
129
+  // 主题颜色
130
+  const primaryColor = ref(defaultColor)
131
+	
132
+  // 数据
133
+  const dataInfo = reactive({
134
+    tabs: [
135
+      {id: 1, name: '基础信息', value: '1', num: ''},
136
+      // {id: 2, name: '巡检信息', value: '2', num: ''},
137
+      {id: 3, name: '流程图', value: '3', num: ''},
138
+    ],
139
+    tabActiveValue: 0,//当前选择的tab
140
+    inspectionTaskId: undefined,//巡检执行ID
141
+    inspectionTaskData: {},//巡检执行对象
142
+    inspectionTaskImgs: [],//巡检图片
143
+    valueList: [],//巡检信息
144
+    logList: [],//流程图
145
+  })
146
+  
147
+  function getValuex(value){
148
+    return value.formItemConfigList ? value.formItemConfigList.map(v => v.valuex).toString() : value.valuex;
149
+  }
150
+
151
+  // 获取巡检信息
152
+  function getValue(){
153
+    uni.showLoading({
154
+      title: "加载中",
155
+      mask: true,
156
+    });
157
+    let postData = {
158
+        "idx": 0,
159
+        "sum": 9999,
160
+        "inspectionFormValues": {
161
+          taskId: dataInfo.inspectionTaskId,
162
+        }
163
+    };
164
+    api_inspectionFormValues(postData).then(res => {
165
+      uni.hideLoading();
166
+      if(res.status == 200){
167
+        let valueList = res.list || [];
168
+        let imgFlag = valueList.some(v => v.inspectionFormItemDTO.type.value == 7);
169
+
170
+        if(imgFlag){
171
+          valueList.forEach(v => {
172
+            if(v.inspectionFormItemDTO.type.value == 7){
173
+              v.valuex = [];
174
+            }
175
+          })
176
+        }
177
+
178
+        dataInfo.valueList = chunk(valueList, 3);
179
+
180
+        if(imgFlag){
181
+          getInspectionImgs();
182
+        }
183
+      }else{
184
+        uni.showToast({
185
+          icon: 'none',
186
+          title: res.msg || '请求数据失败!'
187
+        });
188
+      }
189
+    })
190
+  }
191
+
192
+  // 预览图片
193
+  function previewImg(index, type, imgList){
194
+    uni.previewImage({
195
+      current: index,
196
+      urls: imgList.map(v => v.previewUrl),
197
+      longPressActions: {
198
+        itemList: ['发送给朋友', '保存图片', '收藏'],
199
+        success: function(data) {
200
+          console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
201
+        },
202
+        fail: function(err) {
203
+          console.log(err.errMsg);
204
+        }
205
+      }
206
+    });
207
+  }
208
+
209
+  // 初始化表单
210
+  function initForm(){
211
+    if(dataInfo.tabActiveValue === '1'){
212
+      
213
+    }else if(dataInfo.tabActiveValue === '2'){
214
+      getValue();
215
+    }else if(dataInfo.tabActiveValue === '3'){
216
+      
217
+    }
218
+  }
219
+
220
+  // 点击tab
221
+  function clickTab(tabValue){
222
+    if(dataInfo.tabActiveValue == tabValue){
223
+      return;
224
+    }
225
+    dataInfo.tabActiveValue = tabValue;
226
+    initForm()
227
+  }
228
+
229
+  // 获取巡检执行详情
230
+  function getInspectionTaskDetail(){
231
+    uni.showLoading({
232
+      title: "加载中",
233
+      mask: true,
234
+    });
235
+
236
+    api_inspectionTaskDetail(dataInfo.inspectionTaskId).then(res => {
237
+      uni.hideLoading();
238
+      if(res.status == 200){
239
+        dataInfo.inspectionTaskData = res.data || {};
240
+        dataInfo.logList = dataInfo.inspectionTaskData.logList || [];
241
+        
242
+        // 巡检信息
243
+        if(dataInfo.inspectionTaskData.status.value === '2'){
244
+          let flag = dataInfo.tabs.some(v => v.value === '2');
245
+          !flag && dataInfo.tabs.splice(1, 0, {id: 2, name: '巡检信息', value: '2', num: ''});
246
+        }
247
+        
248
+        dataInfo.tabActiveValue = dataInfo.tabs[0].value;
249
+        initForm()
250
+      }else{
251
+        uni.showToast({
252
+          icon: 'none',
253
+          title: res.msg || '请求数据失败!'
254
+        });
255
+      }
256
+    })
257
+  }
258
+	
259
+  // 获取巡检图片
260
+  function getInspectionImgs(){
261
+    uni.showLoading({
262
+      title: "加载中",
263
+      mask: true,
264
+    });
265
+    api_listAttachment('inspection', dataInfo.inspectionTaskId).then(res => {
266
+      uni.hideLoading();
267
+      res.data = res.data || [];
268
+      res.data.forEach(v => {
269
+        v.previewUrl = location.origin + "/file" + v.relativeFilePath;
270
+        v.thumbFilePath = location.origin + "/file" + v.thumbFilePath;
271
+      })
272
+      
273
+      let imgList = res.data || [];
274
+      dataInfo.valueList.forEach(v => {
275
+        v.forEach(vv => {
276
+          imgList.forEach(item => {
277
+            if(vv.itemId == item.recordId){
278
+              if(vv.valuex && vv.valuex.length){
279
+                vv.valuex.push(item)
280
+              }else{
281
+                vv.valuex = [item];
282
+              }
283
+            }
284
+          })
285
+        })
286
+      })
287
+    })
288
+  }
289
+
290
+  // 返回巡检列表
291
+  function viewInspectionExecute(){
292
+    uni.reLaunch({
293
+      url: `/pages/inspection/inspectionExecute/inspectionExecute`
294
+    })
295
+  }
296
+  
297
+  // 查看故障单
298
+  function viewIncidentDetail(incidentId){
299
+    uni.navigateTo({
300
+      url: `/pages/incidentDetail/incidentDetail?incidentId=${incidentId}`
301
+    })
302
+  }
303
+
304
+  onLoad((option) => {
305
+    dataInfo.inspectionTaskId = option.inspectionTaskId;
306
+		getInspectionTaskDetail();
307
+  })
308
+</script>
309
+
310
+<style lang="scss" scoped>
311
+.popup-content{
312
+	padding: 40rpx;
313
+}
314
+.incidentDetail{
315
+  height: 100%;
316
+  display: flex;
317
+  flex-direction: column;
318
+  justify-content: space-between;
319
+  .head{
320
+    height: 88rpx;
321
+    display: flex;
322
+    position: fixed;
323
+    z-index: 99;
324
+    width: 100%;
325
+    background-color: #fff;
326
+    font-size: 30rpx;
327
+    .tab{
328
+      flex: 1;
329
+      display: flex;
330
+      justify-content: center;
331
+      align-items: center;
332
+      border-bottom: 4rpx solid transparent;
333
+      position: relative;
334
+      &:last-of-type{
335
+        &:after{
336
+          display: none;
337
+        }
338
+      }
339
+      &:after{
340
+        content: '';
341
+        position: absolute;
342
+        right: 0;
343
+        top: 50%;
344
+        transform: translateY(-50%);
345
+        width: 1rpx;
346
+        height: 44rpx;
347
+        background-color: #515151;
348
+      }
349
+      &.active{
350
+        color: $uni-primary;
351
+        border-color: $uni-primary;
352
+      }
353
+    }
354
+  }
355
+  .body{
356
+    margin-top: 88rpx;
357
+    box-sizing: border-box;
358
+    flex: 1;
359
+    min-height: 0;
360
+    border-top: 7rpx solid #EBEBEB;
361
+    .phone-filled{
362
+      margin-left: 5rpx;
363
+    }
364
+    .mic-filled{
365
+      margin-right: 100rpx;
366
+    }
367
+    .detail_item_wrap{
368
+      padding-bottom: 24rpx;
369
+    }
370
+    .detail_head{
371
+      padding: 24rpx;
372
+      border-top: 1rpx solid #D2D2D2;
373
+      border-bottom: 1rpx solid #D2D2D2;
374
+      display: flex;
375
+      justify-content: space-between;
376
+      align-items: center;
377
+      &:first-of-type{
378
+        border-top: none;
379
+      }
380
+      .title{
381
+        font-size: 26rpx;
382
+        color: $uni-primary;
383
+        padding-left: 18rpx;
384
+        position: relative;
385
+        &:before{
386
+          content: '';
387
+          width: 8rpx;
388
+          height: 25rpx;
389
+          background-color: $uni-primary;
390
+          position: absolute;
391
+          left: 0;
392
+          top: 50%;
393
+          transform: translateY(-50%);
394
+        }
395
+      }
396
+      .other{
397
+        display: flex;
398
+        align-items: center;
399
+        .priority{
400
+          font-size: 26rpx;
401
+          margin-right: 15rpx;
402
+        }
403
+        .status{
404
+          font-size: 26rpx;
405
+        }
406
+      }
407
+    }
408
+
409
+    .deital_item{
410
+      font-size: 26rpx;
411
+      color: #555;
412
+      padding: 24rpx 24rpx 0;
413
+      display: flex;
414
+      align-items: center;
415
+      .name{
416
+        width: 8em;
417
+        margin-right: 24rpx;
418
+      }
419
+      .value{
420
+        flex: 1;
421
+        word-break: break-all;
422
+        &.img{
423
+          display: flex;
424
+          .imgItem{
425
+            width: 82rpx;
426
+            height: 82rpx;
427
+            margin-right: 24rpx;
428
+            &:last-of-type{
429
+              margin-right: 0;
430
+            }
431
+          }
432
+					.resourceItem{
433
+						width: 100rpx;
434
+						height: 100rpx;
435
+						margin-right: 24rpx;
436
+						&:last-of-type{
437
+						  margin-right: 0;
438
+						}
439
+					}
440
+					.resourceItem-audio{
441
+						width: 300rpx;
442
+						height: 60rpx;
443
+					}
444
+        }
445
+      }
446
+    }
447
+
448
+    .summaryItem_bodyItem{
449
+      padding: 24rpx 24rpx 0;
450
+      font-size: 26rpx;
451
+      .summaryItem_bodyItem_top{
452
+        display: flex;
453
+        justify-content: space-between;
454
+        align-items: center;
455
+        .value{
456
+          padding-left: 48rpx;
457
+          flex-shrink: 0;
458
+        }
459
+      }
460
+      .summaryItem_bodyItem_bottom{
461
+        margin-top: 24rpx;
462
+        display: flex;
463
+        justify-content: space-between;
464
+        align-items: center;
465
+        .name{
466
+          text-align: right;
467
+          flex: 1;
468
+        }
469
+        .value{
470
+          width: 220rpx;
471
+          text-align: right;
472
+          flex-shrink: 0;
473
+        }
474
+      }
475
+    }
476
+
477
+    .summaryItem_bodyItem_total{
478
+      text-align: right;
479
+      padding: 24rpx;
480
+      font-size: 26rpx;
481
+    }
482
+
483
+    .summaryItem_total{
484
+      text-align: center;
485
+      padding-top: 24rpx;
486
+      font-size: 32rpx;
487
+      font-weight: bold;
488
+      color: $uni-primary;
489
+      border-top: 1rpx solid #D2D2D2;
490
+    }
491
+    
492
+    .info{
493
+      padding: 0 24rpx 32rpx;
494
+      .infoItem{
495
+        display: flex;
496
+        align-items: center;
497
+        justify-content: space-between;
498
+        margin-top: 32rpx;
499
+        .name{
500
+          word-break: break-all;
501
+          width: 33.33%;
502
+          flex-shrink: 0;
503
+        }
504
+        .value{
505
+          word-break: break-all;
506
+          margin-left: 24rpx;
507
+        }
508
+      }
509
+    }
510
+
511
+    .process_item_wrap{
512
+      padding: 38rpx;
513
+      .process_item{
514
+        &:last-of-type{
515
+          .process_item_bottom{
516
+            border-left: none;
517
+          }
518
+        }
519
+        .process_item_top{
520
+          padding-left: 30rpx;
521
+          display: flex;
522
+          align-items: center;
523
+          position: relative;
524
+          &:before{
525
+            content: '';
526
+            position: absolute;
527
+            left: -13rpx;
528
+            top: 50%;
529
+            width: 26rpx;
530
+            height: 26rpx;
531
+            border-radius: 50%;
532
+            background-color: $uni-primary;
533
+            transform: translateY(-50%);
534
+          }
535
+          .name{
536
+            font-size: 30rpx;
537
+          }
538
+          .value{
539
+            margin-left: 20rpx;
540
+            font-size: 22rpx;
541
+            color: #A1A1A1;
542
+						flex: 1;
543
+          }
544
+        }
545
+        .process_item_bottom{
546
+          min-height: 82rpx;
547
+          border-left: 1rpx solid #B7BDC6;
548
+          margin-top: 5rpx;
549
+          padding-left: 30rpx;
550
+          display: flex;
551
+          font-size: 24rpx;
552
+          color: #A1A1A1;
553
+          .value{
554
+            margin-left: 20rpx;
555
+          }
556
+        }
557
+      }
558
+    }
559
+
560
+    .appraise_detail{
561
+      padding: 24rpx 24rpx 24rpx 40rpx;
562
+      .appraise_detail_top{
563
+        display: flex;
564
+        align-items: center;
565
+        justify-content: space-between;
566
+        font-size: 26rpx;
567
+        .name{
568
+          color: #A1A1A1;
569
+        }
570
+        .value{}
571
+      }
572
+      .appraise_detail_bottom{
573
+        font-size: 30rpx;
574
+        margin-top: 24rpx;
575
+        word-break: break-all;
576
+      }
577
+    }
578
+  }
579
+}
580
+</style>

+ 21 - 10
pages/inspection/inspectionExecute/inspectionExecute.vue

@@ -9,7 +9,7 @@
9 9
       </view>
10 10
     </view>
11 11
     <view class="body" v-if="dataInfo.list.length">
12
-      <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
12
+      <view class="body_item" v-for="data in dataInfo.list" :key="data.id" @click="toInspectionTaskDetail(data)">
13 13
         <view class="body_item_head ellipsis-multiline">
14 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 15
         </view>
@@ -28,6 +28,10 @@
28 28
             <text class="name ellipsis">状态:{{ data.status?.name}}</text>
29 29
             <text class="date">{{formatDate(data.addTime, 'yyyy-MM-dd HH:mm')}}</text>
30 30
           </view>
31
+          <view class="body_item_content_p" v-if="data.incidentDTO">
32
+            <text class="name ellipsis">故障单号:{{ data.incidentDTO.incidentsign}}</text>
33
+            <text class="date">{{ data.incidentDTO.state?.name}}</text>
34
+          </view>
31 35
         </view>
32 36
 
33 37
         <view class="body_item_foot">
@@ -88,13 +92,13 @@
88 92
 
89 93
   const assignFlag = ref(false);//指派权限
90 94
   const qiangdan = ref(false);//接单权限
91
-  
95
+
92 96
   // 转换协同人
93 97
   const computedSynergetic = computed(() => (synergetic) => {
94 98
     return (synergetic && synergetic.length) ? synergetic.map(v => v.name).join(',') : ''
95 99
   })
96
-  
97
-  // 故障来源列表
100
+
101
+  // 报修来源列表
98 102
   const defaultSourceValue = ref();
99 103
 
100 104
   // 数据
@@ -111,7 +115,14 @@
111 115
       acceptDate: [],
112 116
     },//筛选框数据
113 117
   })
114
-  
118
+
119
+  // 详情
120
+  function toInspectionTaskDetail(data){
121
+    uni.navigateTo({
122
+      url: `/pages/inspection/inspectionDetail/inspectionDetail?inspectionTaskId=${data.id}`
123
+    })
124
+  }
125
+
115 126
   // 扫一扫
116 127
   function scanning(){
117 128
     uni.showLoading({
@@ -168,8 +179,8 @@
168 179
       uni.hideLoading();
169 180
     });
170 181
   }
171
-  
172
-  // 获取故障来源列表
182
+
183
+  // 获取报修来源列表
173 184
   function getSources(){
174 185
     let postData = {
175 186
       "key": 'incident_source',
@@ -183,7 +194,7 @@
183 194
       }
184 195
     })
185 196
   }
186
-  
197
+
187 198
   // 新建事件
188 199
   async function toBuildIncident(res){
189 200
   	incidentBuildStore.clearIncidentBuildData();
@@ -202,9 +213,9 @@
202 213
      }))
203 214
      repairImgList = result.data;
204 215
    }
205
-   
216
+
206 217
    console.log(repairImgList, 'repairImgList')
207
-   
218
+
208 219
    let incidentData = {
209 220
      place: res.inspectionNodeDTO.floorDTO,
210 221
      houseNumber: res.inspectionNodeDTO.address,

+ 22 - 11
pages/inspection/inspectionScanning/inspectionScanning.vue

@@ -7,7 +7,7 @@
7 7
       </view>
8 8
     </view>
9 9
     <view class="body" v-if="dataInfo.list.length">
10
-      <view class="body_item" v-for="data in dataInfo.list" :key="data.id">
10
+      <view class="body_item" v-for="data in dataInfo.list" :key="data.id" @click="toInspectionTaskDetail(data)">
11 11
         <view class="body_item_head ellipsis-multiline">
12 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 13
         </view>
@@ -26,6 +26,10 @@
26 26
             <text class="name ellipsis">状态:{{ data.status?.name}}</text>
27 27
             <text class="date">{{formatDate(data.addTime, 'yyyy-MM-dd HH:mm')}}</text>
28 28
           </view>
29
+          <view class="body_item_content_p" v-if="data.incidentDTO">
30
+            <text class="name ellipsis">故障单号:{{ data.incidentDTO.incidentsign}}</text>
31
+            <text class="date">{{ data.incidentDTO.state?.name}}</text>
32
+          </view>
29 33
         </view>
30 34
 
31 35
         <view class="body_item_foot">
@@ -77,10 +81,10 @@
77 81
 
78 82
   // 主题颜色
79 83
   const primaryColor = ref(defaultColor)
80
-  
81
-  // 故障来源列表
84
+
85
+  // 报修来源列表
82 86
   const defaultSourceValue = ref();
83
-  
87
+
84 88
   // 数据
85 89
   const dataInfo = reactive({
86 90
     tabs: [{id: 0, name: '巡检工单', value: 'todo', num: ''}, {id: 1, name: '历史工单', value: '', num: ''}],
@@ -93,8 +97,15 @@
93 97
     inspectionNodeCode: '',//巡检点原始二维码
94 98
     inspectionNodeName: '',
95 99
   })
96
-  
97
-  // 获取故障来源列表
100
+
101
+  // 详情
102
+  function toInspectionTaskDetail(data){
103
+    uni.navigateTo({
104
+      url: `/pages/inspection/inspectionDetail/inspectionDetail?inspectionTaskId=${data.id}`
105
+    })
106
+  }
107
+
108
+  // 获取报修来源列表
98 109
   function getSources(){
99 110
     let postData = {
100 111
       "key": 'incident_source',
@@ -108,7 +119,7 @@
108 119
       }
109 120
     })
110 121
   }
111
-  
122
+
112 123
   // 新建事件
113 124
   async function toBuildIncident(res){
114 125
   	incidentBuildStore.clearIncidentBuildData();
@@ -127,9 +138,9 @@
127 138
      }))
128 139
      repairImgList = result.data;
129 140
    }
130
-   
141
+
131 142
    console.log(repairImgList, 'repairImgList')
132
-   
143
+
133 144
    let incidentData = {
134 145
      place: res.inspectionNodeDTO.floorDTO,
135 146
      houseNumber: res.inspectionNodeDTO.address,
@@ -151,7 +162,7 @@
151 162
      url: `/pages/buildIncident/buildIncident?type=inspection`
152 163
    })
153 164
   }
154
-  
165
+
155 166
   // 巡检项
156 167
   function toInspectionValue(data){
157 168
     uni.showLoading({
@@ -268,7 +279,7 @@
268 279
       }
269 280
     })
270 281
   }
271
-  
282
+
272 283
   onLoad((option) => {
273 284
     getSources();
274 285
     dataInfo.inspectionNodeCode = option.inspectionNodeCode;

+ 2 - 2
pages/inspection/inspectionValue/inspectionValue.vue

@@ -96,7 +96,7 @@
96 96
   // 所有页码数据
97 97
   const formPageList = reactive([]);
98 98
 
99
-  // 故障来源列表
99
+  // 报修来源列表
100 100
   const defaultSourceValue = ref();
101 101
 
102 102
   // 表单
@@ -148,7 +148,7 @@
148 148
     })
149 149
   }
150 150
 
151
-  // 获取故障来源列表
151
+  // 获取报修来源列表
152 152
   function getSources(){
153 153
     let postData = {
154 154
       "key": 'incident_source',

+ 5 - 0
static/scss/common.scss

@@ -49,6 +49,11 @@ uni-toast,
49 49
   text-align: left;
50 50
 }
51 51
 
52
+// 居右
53
+.text_right{
54
+  text-align: right;
55
+}
56
+
52 57
 // 两端对齐
53 58
 .text_justify{
54 59
   text-align: justify;