seimin 11 months ago
parent
commit
c5fa6faa2e

+ 1 - 1
components/IncidentAttachment.vue

@@ -105,7 +105,7 @@
105 105
           }else{
106 106
             pageData.audioSrc = '';
107 107
           }
108
-          pageData.audioSrc = 'https://webfs.tx.kugou.com/202404181537/6389dd96e215021020c845b8cbe26e24/v2/eb95a90ba7c513810d694d548b924a29/G347/M01/D0/C3/O5UEAGUDY0aAC4eQADXnW-VR_t4017.mp3'
108
+          pageData.audioSrc = 'https://webfs.tx.kugou.com/202404242004/4b0f4005ec22ee383a68b94258697ccd/v2/eb95a90ba7c513810d694d548b924a29/G347/M01/D0/C3/O5UEAGUDY0aAC4eQADXnW-VR_t4017.mp3'
109 109
         }else{
110 110
           uni.showToast({
111 111
             icon: 'none',

+ 14 - 0
http/api.js

@@ -153,3 +153,17 @@ export function api_workHourManagement(data){
153 153
 export function api_uploadAttachment(type, id){
154 154
   return `${path}/common/common/uploadAttachment/${type}/${id}`
155 155
 }
156
+
157
+/**
158
+ * 获取附件
159
+ */
160
+export function api_listAttachment(type, id){
161
+  return get(`/common/common/listAttachment/${type}/${id}`);
162
+}
163
+
164
+/**
165
+ * 获取附件
166
+ */
167
+export function api_incidentLog(data){
168
+  return post("/simple/data/fetchDataList/incidentLog", data);
169
+}

+ 8 - 0
pages.json

@@ -118,6 +118,14 @@
118 118
         },
119 119
         "enablePullDownRefresh": true
120 120
       }
121
+    },
122
+    {
123
+      "path": "pages/incidentDetail/incidentDetail",
124
+      "style": {
125
+        "h5": {
126
+          "titleNView": false
127
+        }
128
+      }
121 129
     }
122 130
   ],
123 131
   "globalStyle": {

+ 7 - 1
pages/consumableList/consumableList.vue

@@ -53,8 +53,14 @@
53 53
   
54 54
   // 点击修改数量
55 55
   function numberClick(data, type){
56
+    console.log(data)
56 57
     dataInfo.isNumber = true;
57
-    dataInfo.selectData = data;
58
+    dataInfo.selectData = {
59
+      consumableBrandModel: data.brandModel,
60
+      consumableEndPrice: data.endPrice,
61
+      consumableId: data.id,
62
+      consumableName: data.name,
63
+    };
58 64
     dataInfo.selectType = type;
59 65
   }
60 66
   

+ 2 - 4
pages/handler/handler.vue

@@ -16,7 +16,7 @@
16 16
           <view class="summaryItem_body" v-if="dataInfo.summaryObj.consumableList.length">
17 17
             <view class="summaryItem_bodyItem" v-for="item in dataInfo.summaryObj.consumableList" :key="item.id" @click="numberClick(item, 'editConsumable')">
18 18
               <view class="summaryItem_bodyItem_top">
19
-                <text class="name ellipsis">{{ item.consumableName }}({{ item.consumableBrandModel }})</text>
19
+                <text class="name ellipsis">{{ item.consumableName }}({{ item.consumableBrandModel }})</text>
20 20
                 <text class="value">{{ item.consumableEndPrice }}元</text>
21 21
               </view>
22 22
               <view class="summaryItem_bodyItem_bottom">
@@ -623,8 +623,6 @@
623 623
   function submit(){
624 624
     isSubmit.value = true;
625 625
     if(dataInfo.tabActiveValue === 'doing' && isInSummaryOrder.value){
626
-      // isSubmit.value = false;
627
-      // getIncidentDetail(true);
628 626
       uni.navigateTo({
629 627
         url: `/pages/handler/handler?incidentId=${dataInfo.incidentId}&isSummaryNext=1`,
630 628
       });
@@ -642,7 +640,7 @@
642 640
     }
643 641
     
644 642
     postData.incident.handleDescription = dataInfo.handleDescription;
645
-    postData.incident.handlCategory = {id: dataInfo.handlCategory};
643
+    postData.incident.handleCategory = {id: dataInfo.handleCategory};
646 644
     postData.incident.closecode = {id: dataInfo.closecode};
647 645
     postData.incident.category = dataInfo.category;
648 646
     postData.incident.synergetic = dataInfo.synergetic;

+ 652 - 0
pages/incidentDetail/incidentDetail.vue

@@ -0,0 +1,652 @@
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
+            <text class="priority" :style="priorityStyle(dataInfo.incidentData.priority)">{{dataInfo.incidentData.priority ? dataInfo.incidentData.priority.name + ' ' : ''}}</text>
15
+            <view class="status" :style="stateStyle(dataInfo.incidentData.state)">{{dataInfo.incidentData.state ? dataInfo.incidentData.state.name : ''}}</view>
16
+          </view>
17
+        </view>
18
+        <view class="detail_item_wrap">
19
+          <view class="deital_item">
20
+            <text class="name">单号:</text>
21
+            <text class="value">{{dataInfo.incidentData.incidentsign || '无'}}</text>
22
+          </view>
23
+          <view class="deital_item">
24
+            <text class="name">故障现象:</text>
25
+            <text class="value">{{dataInfo.incidentData.category ? dataInfo.incidentData.category.mutiCategory : '无'}}</text>
26
+          </view>
27
+          <view class="deital_item">
28
+            <text class="name">故障描述:</text>
29
+            <text class="value">{{dataInfo.incidentData.description || '无'}}</text>
30
+          </view>
31
+          <view class="deital_item">
32
+            <text class="name">报修图片:</text>
33
+            <view class="value img">
34
+              <image class="imgItem" :src="img.previewUrl" mode="aspectFill" v-for="(img, i) in dataInfo.repairImgs" :key="i" @click="previewImg(i, 'repairImgs')"></image>
35
+            </view>
36
+          </view>
37
+          <view class="deital_item">
38
+            <text class="name">联系人:</text>
39
+            <text class="value">{{dataInfo.incidentData.contacts || '无'}}</text>
40
+            <text v-if="dataInfo.incidentData.contactsInformation" @click="makePhoneCall(dataInfo.incidentData.contactsInformation)">{{dataInfo.incidentData.contactsInformation}}<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></text>
41
+          </view>
42
+          <view class="deital_item">
43
+            <text class="name">来电电话:</text>
44
+            <view class="value" @click="makePhoneCall(dataInfo.incidentData.incomingPhone)" v-if="dataInfo.incidentData.incomingPhone">{{dataInfo.incidentData.incomingPhone}}<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></view>
45
+            <text class="value" v-else>无</text>
46
+            <uni-icons v-if="dataInfo.incidentData.callID" @click="attachmentClick" type="mic-filled" class="mic-filled" :size="22" :color="primaryColor"></uni-icons>
47
+          </view>
48
+          <view class="deital_item">
49
+            <text class="name">报修科室:</text>
50
+            <text class="value">{{dataInfo.incidentData.department ? dataInfo.incidentData.department.dept : '无'}}</text>
51
+          </view>
52
+          <view class="deital_item">
53
+            <text class="name">详细地址:</text>
54
+            <text class="value" v-if="dataInfo.incidentData.place || dataInfo.incidentData.houseNumber">{{dataInfo.incidentData.place ? (dataInfo.incidentData.place.area.area + dataInfo.incidentData.place.place) : ''}}{{dataInfo.incidentData.houseNumber || ''}}</text>
55
+            <text class="value" v-else>无</text>
56
+          </view>
57
+          <view class="deital_item">
58
+            <text class="name">报修人:</text>
59
+            <text class="value">{{dataInfo.incidentData.requester ? dataInfo.incidentData.requester.name : '无'}}</text>
60
+          </view>
61
+          <view class="deital_item">
62
+            <text class="name">预约维修时间:</text>
63
+            <text class="value">{{dataInfo.incidentData.yyTime || '无'}}</text>
64
+          </view>
65
+          <view class="deital_item">
66
+            <text class="name">受理人:</text>
67
+            <text class="value">{{dataInfo.incidentData.acceptUser ? dataInfo.incidentData.acceptUser.name : '无'}}</text>
68
+          </view>
69
+          <view class="deital_item">
70
+            <text class="name">登记时间:</text>
71
+            <text class="value">{{formatDate(dataInfo.incidentData.acceptDate, 'yyyy-MM-dd HH:mm')}}</text>
72
+          </view>
73
+          <view class="deital_item">
74
+            <text class="name">逾期解决时间:</text>
75
+            <text class="value">{{formatDate(dataInfo.incidentData.overdueTime, 'yyyy-MM-dd HH:mm')}}</text>
76
+          </view>
77
+        </view>
78
+        
79
+        <view class="detail_head">
80
+          <text class="title">处理信息</text>
81
+        </view>
82
+        <view class="detail_item_wrap">
83
+          <view class="deital_item">
84
+            <text class="name">处理方式:</text>
85
+            <text class="value">{{dataInfo.incidentData.handleCategory ? dataInfo.incidentData.handleCategory.name : '无'}}</text>
86
+            <text class="value">处理结果:{{dataInfo.incidentData.closecode ? dataInfo.incidentData.closecode.name : '无'}}</text>
87
+          </view>
88
+          <view class="deital_item">
89
+            <text class="name">处理人:</text>
90
+            <text class="value" v-if="dataInfo.incidentData.state.value == 'pending' && dataInfo.incidentData.currentLog">{{dataInfo.incidentData.currentLog.workerName}}<text @click="makePhoneCall(dataInfo.incidentData.currentLog.workerPhone)" v-if="dataInfo.incidentData.currentLog.workerPhone">({{dataInfo.incidentData.currentLog.workerPhone}})<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></text></text>
91
+            
92
+            <text class="value" v-else-if="dataInfo.incidentData.state.value != 'pending' && dataInfo.incidentData.handlingPersonnelUser">{{dataInfo.incidentData.handlingPersonnelUser.name}}<text @click="makePhoneCall(dataInfo.incidentData.handlingPersonnelUser.phone)" v-if="dataInfo.incidentData.handlingPersonnelUser.phone">({{dataInfo.incidentData.handlingPersonnelUser.phone}})<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></text></text>
93
+            <text class="value" v-else>无</text>
94
+          </view>
95
+          <view class="deital_item">
96
+            <text class="name">处理方案:</text>
97
+            <text class="value">{{dataInfo.incidentData.handleDescription || '无'}}</text>
98
+          </view>
99
+          <view class="deital_item">
100
+            <text class="name">处理图片:</text>
101
+            <view class="value img">
102
+              <image class="imgItem" :src="img.previewUrl" mode="aspectFill" v-for="(img, i) in dataInfo.handlerImgs" :key="i" @click="previewImg(i, 'handlerImgs')"></image>
103
+            </view>
104
+          </view>
105
+          <view class="deital_item">
106
+            <text class="name">维修总价:</text>
107
+            <text class="value">{{dataInfo.incidentData.rsPrice === undefined ? '无' : dataInfo.incidentData.rsPrice + '元'}}</text>
108
+          </view>
109
+          <view class="deital_item">
110
+            <text class="name">协同人:</text>
111
+            <text class="value">{{dataInfo.incidentData.synergetic.length ? dataInfo.incidentData.synergetic.map(v => v.name).join(',') : '无'}}</text>
112
+          </view>
113
+        </view>
114
+      </template>
115
+      
116
+      <!-- 维修汇总单 -->
117
+      <template v-if="dataInfo.tabActiveValue === '2'">
118
+        <view class="detail_head">
119
+          <text class="title">耗材清单</text>
120
+        </view>
121
+        <view class="summaryItem_bodyItem" v-for="item in dataInfo.summaryObj.consumableList" :key="item.id">
122
+          <view class="summaryItem_bodyItem_top">
123
+            <text class="name ellipsis">{{ item.consumableName }}({{ item.consumableBrandModel }})</text>
124
+            <text class="value">{{ item.consumableEndPrice }}元</text>
125
+          </view>
126
+          <view class="summaryItem_bodyItem_bottom">
127
+            <text class="name">x{{ item.consumablesNum }}</text>
128
+            <text class="value">总价{{item.consumablesNum * item.consumableEndPrice}}元</text>
129
+          </view>
130
+        </view>
131
+        <view class="summaryItem_bodyItem_total">耗材总价:{{dataInfo.summaryObj.consumablePrice}}元</view>
132
+        <view class="detail_head">
133
+          <text class="title">工时清单</text>
134
+        </view>
135
+        <view class="summaryItem_bodyItem" v-for="item in dataInfo.summaryObj.workHourManagementList" :key="item.id">
136
+          <view class="summaryItem_bodyItem_top">
137
+            <text class="name ellipsis">{{ item.workName }}</text>
138
+            <text class="value">{{ item.wage }}元</text>
139
+          </view>
140
+          <view class="summaryItem_bodyItem_bottom">
141
+            <text class="name">x{{ item.workHourNum2 }}{{ item.workUnit }}</text>
142
+            <text class="value">总价{{item.workHourNum2 * item.wage}}元</text>
143
+          </view>
144
+        </view>
145
+        <view class="summaryItem_bodyItem_total">工时总价:{{dataInfo.summaryObj.workHourPrice}}元</view>
146
+        <view class="summaryItem_total">汇总单总价:{{dataInfo.summaryObj.totalMaintenancePrice}}元</view>
147
+      </template>
148
+      
149
+      <!-- 处理流程 -->
150
+      <template v-if="dataInfo.tabActiveValue === '3'">
151
+        <view class="process_item_wrap">
152
+          <view class="process_item" v-for="item in dataInfo.incidentLogList" :key="item.id">
153
+            <view class="process_item_top">
154
+              <text class="name">{{item.logType ? item.logType.name : ''}}</text>
155
+              <text class="value ellipsis" v-if="item.remark">({{item.remark}})</text>
156
+            </view>
157
+            <view class="process_item_bottom">
158
+              <text class="name">{{formatDate(item.startTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
159
+              <text class="value" v-if="item.appointorName">{{item.appointorName}}</text>
160
+            </view>
161
+          </view>
162
+        </view>
163
+      </template>
164
+      
165
+      <!-- 评价信息 -->
166
+      <template v-if="dataInfo.tabActiveValue === '4'">
167
+        <view class="detail_head">
168
+          <text class="title">评价信息</text>
169
+        </view>
170
+        <view class="appraise_detail" v-for="item in dataInfo.resolveLogs" :key="item.id">
171
+          <view class="appraise_detail_top">
172
+            <text>{{formatDate(item.startTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
173
+            <view v-if="dataInfo.incidentData.wxdegree">
174
+              <uni-rate readonly :value="dataInfo.incidentData.wxdegree.value" />
175
+            </view>
176
+          </view>
177
+          <view class="appraise_detail_bottom">
178
+            <text>{{item.remark}}</text>
179
+          </view>
180
+        </view>
181
+        
182
+        <view class="detail_head">
183
+          <text class="title">回访信息</text>
184
+        </view>
185
+        <view class="appraise_detail" v-for="item in dataInfo.callbackLogs" :key="item.id">
186
+          <view class="appraise_detail_top">
187
+            <text>{{formatDate(item.startTime, 'yyyy-MM-dd HH:mm:ss')}}</text>
188
+            <text v-if="dataInfo.incidentData.degree">{{dataInfo.incidentData.degree.name}}</text>
189
+          </view>
190
+          <view class="appraise_detail_bottom">
191
+            <text>{{item.remark}}</text>
192
+          </view>
193
+        </view>
194
+      </template>
195
+    </scroll-view>
196
+    <view class="foot_common_btns">
197
+      <button @click="goBack" type="default" class="primaryButton btn">返回</button>
198
+    </view>
199
+    <IncidentAttachment v-if="dataInfo.isAttachment" @knowEmit="knowAttachment" :incidentData="dataInfo.incidentData"></IncidentAttachment>
200
+  </view>
201
+</template>
202
+
203
+<script setup>
204
+  import { ref, reactive } from 'vue'
205
+  import IncidentAttachment from '@/components/IncidentAttachment.vue';
206
+  import { onLoad } from '@dcloudio/uni-app'
207
+  import { api_listAttachment, api_incidentDetail, api_querySummaryDoc, api_incidentLog } from "@/http/api.js"
208
+  import { defaultColor } from '@/static/js/theme.js'
209
+  import { useSetTitle } from '@/share/useSetTitle.js'
210
+  import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
211
+  import { useGoBack } from '@/share/useGoBack.js'
212
+  import { useLoginUserStore } from '@/stores/loginUser'
213
+  import { computedPriorityStyle } from '@/filters/computedPriorityStyle.js'
214
+  import { computedStateStyle } from '@/filters/computedStateStyle.js'
215
+  import { filterFormatDate } from '@/filters/filterFormatDate.js'
216
+  
217
+  useSetTitle();
218
+  const loginUserStore = useLoginUserStore();
219
+  const { makePhoneCall }  = useMakePhoneCall();
220
+  const { goBack }  = useGoBack();
221
+  const { priorityStyle }  = computedPriorityStyle();
222
+  const { stateStyle }  = computedStateStyle();
223
+  const { formatDate }  = filterFormatDate();
224
+  
225
+  // 主题颜色
226
+  const primaryColor = ref(defaultColor)
227
+  
228
+  // 数据
229
+  const dataInfo = reactive({
230
+    tabs: [
231
+      {id: 1, name: '工单信息', value: '1', num: ''},
232
+      {id: 2, name: '维修汇总单', value: '2', num: ''},
233
+      {id: 3, name: '处理流程', value: '3', num: ''},
234
+      {id: 4, name: '评价信息', value: '4', num: ''},
235
+    ],
236
+    tabActiveValue: 0,//当前选择的tab
237
+    incidentId: undefined,//事件ID
238
+    incidentData: {},//事件对象
239
+    repairImgs: [],//报修图片
240
+    handlerImgs: [],//处理图片
241
+    summaryObj: {
242
+      consumableList: [],//耗材列表
243
+      workHourManagementList: [],//工时列表
244
+    },//汇总单信息
245
+    incidentLogList: [],//流程列表
246
+    resolveLogs: [],//评价
247
+    callbackLogs: [],//回访
248
+    isAttachment: false,//录音开关
249
+  })
250
+  
251
+  // 点击录音
252
+  function attachmentClick(){
253
+    dataInfo.isAttachment = true;
254
+  }
255
+  
256
+  // 知道了录音
257
+  function knowAttachment(){
258
+    dataInfo.isAttachment = false;
259
+  }
260
+  
261
+  // 获取汇总单信息
262
+  function getSummaryList(){
263
+    uni.showLoading({
264
+      title: "加载中",
265
+      mask: true,
266
+    });
267
+    let postData = {
268
+      "incidentId": dataInfo.incidentId,
269
+    };
270
+    api_querySummaryDoc(postData).then(res => {
271
+      uni.hideLoading();
272
+      if(res.status == 200){
273
+        dataInfo.summaryObj = {...{consumableList:[], workHourManagementList: []}, ...res };
274
+      }else{
275
+        uni.showToast({
276
+          icon: 'none',
277
+          title: res.msg || '请求数据失败!'
278
+        });
279
+      }
280
+    })
281
+  }
282
+  
283
+  // 获取流程列表
284
+  function getIncidentLogList(){
285
+    uni.showLoading({
286
+      title: "加载中",
287
+      mask: true,
288
+    });
289
+    let postData = {
290
+        "idx": 0,
291
+        "sum": 9999,
292
+        "incidentLog": {
293
+            "incidentId": dataInfo.incidentId,
294
+        }
295
+    };
296
+    api_incidentLog(postData).then(res => {
297
+      uni.hideLoading();
298
+      if(res.status == 200){
299
+        let incidentLogList = res.list || [];
300
+        dataInfo.incidentLogList = incidentLogList;
301
+      }else{
302
+        uni.showToast({
303
+          icon: 'none',
304
+          title: res.msg || '请求数据失败!'
305
+        });
306
+      }
307
+    })
308
+  }
309
+  
310
+  // 预览图片
311
+  function previewImg(index, type){
312
+    uni.previewImage({
313
+      current: index,
314
+      urls: dataInfo[type].map(v => v.previewUrl),
315
+      longPressActions: {
316
+        itemList: ['发送给朋友', '保存图片', '收藏'],
317
+        success: function(data) {
318
+          console.log('选中了第' + (data.tapIndex + 1) + '个按钮,第' + (data.index + 1) + '张图片');
319
+        },
320
+        fail: function(err) {
321
+          console.log(err.errMsg);
322
+        }
323
+      }
324
+    });
325
+  }
326
+  
327
+  // 初始化表单
328
+  function initForm(){
329
+    if(dataInfo.tabActiveValue === '1'){
330
+      getRepairImgs();
331
+      getHandlerImgs();
332
+    }else if(dataInfo.tabActiveValue === '2'){
333
+      getSummaryList();
334
+    }else if(dataInfo.tabActiveValue === '3'){
335
+      getIncidentLogList();
336
+    }else if(dataInfo.tabActiveValue === '4'){
337
+      
338
+    }
339
+  }
340
+  
341
+  // 点击tab
342
+  function clickTab(tabValue){
343
+    if(dataInfo.tabActiveValue == tabValue){
344
+      return;
345
+    }
346
+    dataInfo.tabActiveValue = tabValue;
347
+    initForm()
348
+  }
349
+  
350
+  // 获取事件详情
351
+  function getIncidentDetail(){
352
+    uni.showLoading({
353
+      title: "加载中",
354
+      mask: true,
355
+    });
356
+
357
+    api_incidentDetail(dataInfo.incidentId).then(res => {
358
+      uni.hideLoading();
359
+      if(res.status == 200){
360
+        dataInfo.incidentData = res.data || {};
361
+        let logs = dataInfo.incidentData.logs || [];
362
+        dataInfo.resolveLogs = logs.filter(v => v.logType.value == 'resolve').slice(0, 1);
363
+        dataInfo.callbackLogs = logs.filter(v => v.logType.value == 'callback').slice(0, 1);
364
+        dataInfo.tabActiveValue = dataInfo.tabs[0].value;
365
+        initForm()
366
+      }else{
367
+        uni.showToast({
368
+          icon: 'none',
369
+          title: res.msg || '请求数据失败!'
370
+        });
371
+      }
372
+    })
373
+  }
374
+  
375
+  // 获取报修图片
376
+  function getRepairImgs(){
377
+    uni.showLoading({
378
+      title: "加载中",
379
+      mask: true,
380
+    });
381
+    api_listAttachment('wechatRequesterIncident', dataInfo.incidentId).then(res => {
382
+      uni.hideLoading();
383
+      res.data = res.data || [];
384
+      res.data.forEach(v => {
385
+        v.previewUrl = location.origin + "/file" + v.relativeFilePath;
386
+      })
387
+      dataInfo.repairImgs = res.data;
388
+    })
389
+  }
390
+  
391
+  // 获取处理图片
392
+  function getHandlerImgs(){
393
+    uni.showLoading({
394
+      title: "加载中",
395
+      mask: true,
396
+    });
397
+    api_listAttachment('incident', dataInfo.incidentId).then(res => {
398
+      uni.hideLoading();
399
+      res.data = res.data || [];
400
+      res.data.forEach(v => {
401
+        v.previewUrl = location.origin + "/file" + v.relativeFilePath;
402
+      })
403
+      dataInfo.handlerImgs = res.data;
404
+    })
405
+  }
406
+  
407
+  onLoad((option) => {
408
+    dataInfo.incidentId = option.incidentId;
409
+    getIncidentDetail();
410
+  })
411
+</script>
412
+
413
+<style lang="scss" scoped>
414
+.incidentDetail{
415
+  height: 100%;
416
+  display: flex;
417
+  flex-direction: column;
418
+  justify-content: space-between;
419
+  .head{
420
+    height: 88rpx;
421
+    display: flex;
422
+    position: fixed;
423
+    z-index: 99;
424
+    width: 100%;
425
+    background-color: #fff;
426
+    font-size: 30rpx;
427
+    .tab{
428
+      flex: 1;
429
+      display: flex;
430
+      justify-content: center;
431
+      align-items: center;
432
+      border-bottom: 4rpx solid transparent;
433
+      position: relative;
434
+      &:last-of-type{
435
+        &:after{
436
+          display: none;
437
+        }
438
+      }
439
+      &:after{
440
+        content: '';
441
+        position: absolute;
442
+        right: 0;
443
+        top: 50%;
444
+        transform: translateY(-50%);
445
+        width: 1rpx;
446
+        height: 44rpx;
447
+        background-color: #515151;
448
+      }
449
+      &.active{
450
+        color: $uni-primary;
451
+        border-color: $uni-primary;
452
+      }
453
+    }
454
+  }
455
+  .body{
456
+    margin-top: 88rpx;
457
+    box-sizing: border-box;
458
+    flex: 1;
459
+    min-height: 0;
460
+    border-top: 7rpx solid #EBEBEB;
461
+    .phone-filled{
462
+      margin-left: 5rpx;
463
+    }
464
+    .mic-filled{
465
+      margin-right: 100rpx;
466
+    }
467
+    .detail_item_wrap{
468
+      padding-bottom: 24rpx;
469
+    }
470
+    .detail_head{
471
+      padding: 24rpx;
472
+      border-top: 1rpx solid #D2D2D2;
473
+      border-bottom: 1rpx solid #D2D2D2;
474
+      display: flex;
475
+      justify-content: space-between;
476
+      align-items: center;
477
+      &:first-of-type{
478
+        border-top: none;
479
+      }
480
+      .title{
481
+        font-size: 26rpx;
482
+        color: $uni-primary;
483
+        padding-left: 18rpx;
484
+        position: relative;
485
+        &:before{
486
+          content: '';
487
+          width: 8rpx;
488
+          height: 25rpx;
489
+          background-color: $uni-primary;
490
+          position: absolute;
491
+          left: 0;
492
+          top: 50%;
493
+          transform: translateY(-50%);
494
+        }
495
+      }
496
+      .other{
497
+        display: flex;
498
+        align-items: center;
499
+        .priority{
500
+          font-size: 26rpx;
501
+          margin-right: 15rpx;
502
+        }
503
+        .status{
504
+          padding: 4rpx 10rpx;
505
+          border-radius: 20rpx;
506
+          background-color: #DBE8FE;
507
+          font-size: 22rpx;
508
+          color: #006CF9;
509
+        }
510
+      }
511
+    }
512
+    
513
+    .deital_item{
514
+      font-size: 26rpx;
515
+      color: #555;
516
+      padding: 24rpx 24rpx 0;
517
+      display: flex;
518
+      align-items: center;
519
+      .name{
520
+        width: 7em;
521
+        margin-right: 24rpx;
522
+      }
523
+      .value{
524
+        flex: 1;
525
+        word-break: break-all;
526
+        &.img{
527
+          display: flex;
528
+          .imgItem{
529
+            width: 82rpx;
530
+            height: 82rpx;
531
+            margin-right: 24rpx;
532
+            &:last-of-type{
533
+              margin-right: 0;
534
+            }
535
+          }
536
+        }
537
+      }
538
+    }
539
+    
540
+    .summaryItem_bodyItem{
541
+      padding: 24rpx 24rpx 0;
542
+      font-size: 26rpx;
543
+      .summaryItem_bodyItem_top{
544
+        display: flex;
545
+        justify-content: space-between;
546
+        align-items: center;
547
+        .value{
548
+          padding-left: 48rpx;
549
+          flex-shrink: 0;
550
+        }
551
+      }
552
+      .summaryItem_bodyItem_bottom{
553
+        margin-top: 24rpx;
554
+        display: flex;
555
+        justify-content: space-between;
556
+        align-items: center;
557
+        .name{
558
+          text-align: right;
559
+          flex: 1;
560
+        }
561
+        .value{
562
+          width: 220rpx;
563
+          text-align: right;
564
+          flex-shrink: 0;
565
+        }
566
+      }
567
+    }
568
+    
569
+    .summaryItem_bodyItem_total{
570
+      text-align: right;
571
+      padding: 24rpx;
572
+      font-size: 26rpx;
573
+    }
574
+    
575
+    .summaryItem_total{
576
+      text-align: center;
577
+      padding-top: 24rpx;
578
+      font-size: 32rpx;
579
+      font-weight: bold;
580
+      color: $uni-primary;
581
+      border-top: 1rpx solid #D2D2D2;
582
+    }
583
+    
584
+    .process_item_wrap{
585
+      padding: 38rpx;
586
+      .process_item{
587
+        &:last-of-type{
588
+          .process_item_bottom{
589
+            border-left: none;
590
+          }
591
+        }
592
+        .process_item_top{
593
+          padding-left: 30rpx;
594
+          display: flex;
595
+          align-items: center;
596
+          position: relative;
597
+          &:before{
598
+            content: '';
599
+            position: absolute;
600
+            left: -13rpx;
601
+            top: 50%;
602
+            width: 26rpx;
603
+            height: 26rpx;
604
+            border-radius: 50%;
605
+            background-color: $uni-primary;
606
+            transform: translateY(-50%);
607
+          }
608
+          .name{
609
+            font-size: 30rpx;
610
+          }
611
+          .value{
612
+            margin-left: 20rpx;
613
+            font-size: 24rpx;
614
+            color: #A1A1A1;
615
+          }
616
+        }
617
+        .process_item_bottom{
618
+          min-height: 82rpx;
619
+          border-left: 1rpx solid #B7BDC6;
620
+          margin-top: 5rpx;
621
+          padding-left: 30rpx;
622
+          display: flex;
623
+          font-size: 24rpx;
624
+          color: #A1A1A1;
625
+          .value{
626
+            margin-left: 20rpx;
627
+          }
628
+        }
629
+      }
630
+    }
631
+    
632
+    .appraise_detail{
633
+      padding: 24rpx 24rpx 24rpx 40rpx;
634
+      .appraise_detail_top{
635
+        display: flex;
636
+        align-items: center;
637
+        justify-content: space-between;
638
+        font-size: 26rpx;
639
+        .name{
640
+          color: #A1A1A1;
641
+        }
642
+        .value{}
643
+      }
644
+      .appraise_detail_bottom{
645
+        font-size: 30rpx;
646
+        margin-top: 24rpx;
647
+        word-break: break-all;
648
+      }
649
+    }
650
+  }
651
+}
652
+</style>

+ 37 - 50
pages/incidentList/incidentList.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="toIncidentDetail(data)">
13 13
         <view class="body_item_head ellipsis-multiline">
14 14
           <text :style="priorityStyle(data.priority)">{{data.priority ? data.priority.name + ' ' : ''}}</text>{{data.description}}
15 15
         </view>
@@ -28,7 +28,7 @@
28 28
           <view class="body_item_content_p">
29 29
             <text class="name"><template v-if="data.assigneeName">处理人:{{data.assigneeName}}</template></text>
30 30
             <text class="name"><template v-if="data.candidateGroupsName">处理组:{{data.candidateGroupsName}}</template></text>
31
-            <view class="icon_all" @click="attachmentClick(data)">
31
+            <view class="icon_all" @click.stop="attachmentClick(data)">
32 32
               <uni-icons type="mic-filled" class="mic-filled" :size="22" color="#949494" v-if="data.callID"></uni-icons>
33 33
               <uni-icons type="image-filled" class="image-filled" :size="22" color="#949494" v-if="data.reqAttachment"></uni-icons>
34 34
             </view>
@@ -37,13 +37,13 @@
37 37
         
38 38
         <view class="body_item_foot">
39 39
           <view class="foot_info">
40
-            <view class="name" @click="makePhoneCall(data.contactsInformation)">联系电话:{{data.contactsInformation}}<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></view>
40
+            <view class="name" @click.stop="makePhoneCall(data.contactsInformation)">联系电话:{{data.contactsInformation}}<uni-icons type="phone-filled" class="phone-filled" :size="18" :color="primaryColor"></uni-icons></view>
41 41
             <text class="date">{{formatDate(data.startDate, 'MM-dd HH:mm')}}</text>
42 42
           </view>
43 43
           <view class="btns">
44
-            <button @click="handler('changeUser', data.id)" type="default" class="primaryButton btn" v-if="data.state.value === 'pending' || data.state.value === 'handler' || (data.state.value === 'reassign' && assignFlag)">换人处理</button>
45
-            <button @click="handler('handler', data.id)" type="default" class="primaryButton btn" v-if="data.state.value === 'handler'">处理</button>
46
-            <button @click="receive(data)" type="default" class="primaryButton btn" v-if="computedReceive(data)">接单</button>
44
+            <button @click.stop="handler('changeUser', data.id)" type="default" class="primaryButton btn" v-if="data.state.value === 'pending' || data.state.value === 'handler' || (data.state.value === 'reassign' && assignFlag)">换人处理</button>
45
+            <button @click.stop="handler('handler', data.id)" type="default" class="primaryButton btn" v-if="data.state.value === 'handler'">处理</button>
46
+            <button @click.stop="receive(data)" type="default" class="primaryButton btn" v-if="computedReceive(data)">接单</button>
47 47
           </view>
48 48
         </view>
49 49
       </view>
@@ -117,6 +117,13 @@
117 117
     },//筛选框数据
118 118
   })
119 119
   
120
+  // 工单详情
121
+  function toIncidentDetail(data){
122
+    uni.navigateTo({
123
+      url: `/pages/incidentDetail/incidentDetail?incidentId=${data.id}`
124
+    })
125
+  }
126
+  
120 127
   // 获取tab选项
121 128
   function getTabs(){
122 129
     uni.showLoading({
@@ -241,19 +248,36 @@
241 248
         }
242 249
     }
243 250
     
244
-    if(loginUserStore.loginUser.user.duty){
245
-      // 当前的所属责任科室
246
-      postData.incident.duty = loginUserStore.loginUser.user.duty;
247
-    }else if(loginUserStore.loginUser.user.branch){
248
-      // 当前的所属院区
249
-      postData.incident.branch = loginUserStore.loginUser.user.branch.id;
251
+    // 请求参数调整
252
+    if(!postData.incident){
253
+        postData.incident = {};
254
+    }
255
+    
256
+    if(postData.incident.queryTask === 'all' || postData.incident.queryTask === 'callback'){
257
+      if(loginUserStore.loginUser.user.duty){
258
+        // 当前的所属责任科室
259
+        postData.incident.duty = loginUserStore.loginUser.user.duty;
260
+      }else if(loginUserStore.loginUser.user.branch){
261
+        // 当前的所属院区
262
+        postData.incident.branch = loginUserStore.loginUser.user.branch.id;
263
+      }
264
+    }else{
265
+      delete postData.incident.duty;
266
+      delete postData.incident.branch;
267
+    }
268
+    
269
+    if(postData.incident.queryTask === 'todo' || postData.incident.queryTask === 'owns' || postData.incident.queryTask === 'todoingAll'){
270
+        postData.incident.candidateGroups = loginUserStore.loginUser.user.group.map(v => v.id).toString();
271
+    }else{
272
+        delete postData.incident.candidateGroups;
250 273
     }
251 274
     
252 275
     if(dataInfo.evtFilter && dataInfo.evtFilter.category && dataInfo.evtFilter.category.id){
253 276
       postData.incident.levelCategory = dataInfo.evtFilter.category;
254 277
     }
278
+    
255 279
     if(dataInfo.evtFilter && dataInfo.evtFilter.area && dataInfo.evtFilter.area.id){
256
-      postData.incident.area = dataInfo.evtFilter.area;
280
+      postData.incident.area = dataInfo.evtFilter.area
257 281
     }
258 282
     
259 283
     api_incident(postData).then(res => {
@@ -289,43 +313,6 @@
289 313
         postData.incidentList.push({...incident, ...{statusId: v.id || undefined}});
290 314
     })
291 315
     
292
-    postData.incidentList.forEach(incident => {
293
-        // 请求参数调整
294
-        if(!incident){
295
-            incident = {};
296
-        }
297
-        
298
-        if(incident.queryTask === 'all' || incident.queryTask === 'callback'){
299
-            if(loginUserStore.loginUser.user.duty){
300
-                // 当前的所属责任科室
301
-                incident.duty = loginUserStore.loginUser.user.duty;
302
-            }else if(loginUserStore.loginUser.user.branch){
303
-                // 当前的所属院区
304
-                incident.branch = loginUserStore.loginUser.user.branch.id;
305
-            }
306
-        }else{
307
-            delete incident.duty;
308
-            delete incident.branch;
309
-        }
310
-        
311
-        incident.assignee = loginUserStore.loginUser.user.id;
312
-        
313
-        if(incident.queryTask === 'todo' || incident.queryTask === 'owns'){
314
-            incident.candidateGroups = loginUserStore.loginUser.user.group.map(v => v.id).toString();
315
-        }else{
316
-            delete incident.candidateGroups;
317
-        }
318
-        
319
-        if(dataInfo.evtFilter && dataInfo.evtFilter.category && dataInfo.evtFilter.category.id){
320
-          incident.levelCategory = dataInfo.evtFilter.category;
321
-        }
322
-        
323
-        if(dataInfo.evtFilter && dataInfo.evtFilter.area && dataInfo.evtFilter.area.id){
324
-          incident.place = {
325
-            area: dataInfo.evtFilter.area
326
-          }
327
-        }
328
-    })
329 316
     api_incident_count(postData).then(res => {
330 317
       if(res.state == 200){
331 318
         let myData = res.data || [];

+ 2 - 1
pages/synergeticAdd/synergeticAdd.vue

@@ -84,7 +84,8 @@
84 84
         currentDuty: dataInfo.incidentData.duty.id,
85 85
         roleData: {
86 86
           "rolecode": "first-line support"
87
-        }
87
+        },
88
+        "engineer": 1,
88 89
       }
89 90
     }
90 91