seimin před 11 měsíci
rodič
revize
70b2182c42

+ 42 - 0
http/api.js

@@ -75,4 +75,46 @@ export function api_wechatRequesterIncident(data){
75 75
  */
76 76
 export function api_callrecord(data){
77 77
   return post("/bpm/data/fetchDataList/callrecord", data);
78
+}
79
+
80
+/**
81
+ * 获取工作组列表
82
+ */
83
+export function api_group(data){
84
+  return post("/user/data/fetchDataList/group", data);
85
+}
86
+
87
+/**
88
+ * 获取人员列表
89
+ */
90
+export function api_user(data){
91
+  return post("/user/data/fetchDataList/user", data);
92
+}
93
+
94
+/**
95
+ * 获取院区列表
96
+ */
97
+export function api_branch(data){
98
+  return post("/user/data/fetchDataList/branch", data);
99
+}
100
+
101
+/**
102
+ * 获取责任科室列表
103
+ */
104
+export function api_dutyDepartment(data){
105
+  return post("/user/data/fetchDataList/dutyDepartment", data);
106
+}
107
+
108
+/**
109
+ * 获取事件详情
110
+ */
111
+export function api_incidentDetail(data){
112
+  return get("/simple/data/fetchData/incident/" + data);
113
+}
114
+
115
+/**
116
+ * 转派
117
+ */
118
+export function api_incidentTask(type, data){
119
+  return post("/flow/incident/task/" + type, data);
78 120
 }

+ 3 - 2
interceptor/routeInterceptor.js

@@ -3,7 +3,8 @@ const loginUserStore = useLoginUserStore()
3 3
 
4 4
 let repaireRouterList = [
5 5
     "/pages/homePage/homePage", //登录页
6
-    "/pages/repairEntrance/repairEntrance", //绑定工号
6
+    "/pages/initBind/initBind", //绑定工号
7
+    "/pages/repairEntrance/repairEntrance", //报修入口页
7 8
   ]
8 9
   let list = ["navigateTo", "redirectTo", "reLaunch", "switchTab"];
9 10
   //用遍历的方式分别为uni.navigateTo,uni.redirectTo,uni.reLaunch,uni.switchTab这4个路由方法添加拦截器
@@ -12,7 +13,7 @@ let repaireRouterList = [
12 13
       invoke(e) {
13 14
         // 调用前拦截
14 15
         const url = e.url.split('?')[0];
15
-        // 报修人不可以访问除了登录页,绑定工号页的其他页面
16
+        // 报修人不可以访问除了登录页,绑定工号页,报修入口页的其他页面
16 17
         if (!repaireRouterList.includes(url) && loginUserStore.loginUser.user && loginUserStore.loginUser.user
17 18
           .engineer !== 1) {
18 19
           uni.reLaunch({

+ 2 - 10
pages.json

@@ -33,15 +33,7 @@
33 33
       }
34 34
     },
35 35
     {
36
-      "path": "pages/index/index",
37
-      "style": {
38
-        "h5": {
39
-          "titleNView": false
40
-        }
41
-      }
42
-    },
43
-    {
44
-      "path": "pages/repairList/repairList",
36
+      "path": "pages/my/my",
45 37
       "style": {
46 38
         "h5": {
47 39
           "titleNView": false
@@ -49,7 +41,7 @@
49 41
       }
50 42
     },
51 43
     {
52
-      "path": "pages/my/my",
44
+      "path": "pages/changeUser/changeUser",
53 45
       "style": {
54 46
         "h5": {
55 47
           "titleNView": false

+ 661 - 0
pages/changeUser/changeUser.vue

@@ -0,0 +1,661 @@
1
+<template>
2
+  <view class="changeUser">
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 === 'redeploy'">
11
+        <view class="form_item">
12
+          <view class="title select"><text class="required newicon newicon-bitian"></text>工作组:</view>
13
+          <uni-data-select class="value" v-model="dataInfo.groupId" :localdata="dataInfo.groupList" :clear="false" placeholder="请选择工作组" @change="changeGroup" :class="{formRed: isSubmmit && !dataInfo.groupId}"></uni-data-select>
14
+        </view>
15
+        <view class="form_item">
16
+          <view class="title radio"><text class="required newicon newicon-bitian"></text>是否转派到人:</view>
17
+          <uni-data-checkbox class="value" v-model="dataInfo.isAssignUser" :localdata="dataInfo.isAssignUserList" @change="changeIsAssignUser" />
18
+        </view>
19
+        <view class="form_item" v-if="dataInfo.isAssignUser === 1">
20
+          <view class="title select"><text class="required newicon newicon-bitian"></text>转派对象:</view>
21
+          <uni-data-select class="value" v-model="dataInfo.userId" :localdata="dataInfo.userList" :clear="false" placeholder="请选择转派对象" :class="{formRed: isSubmmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}"></uni-data-select>
22
+        </view>
23
+      </template>
24
+      
25
+      <!-- 指派 -->
26
+      <template v-if="dataInfo.tabActiveValue === 'assign'">
27
+        <view class="form_item">
28
+          <view class="title select"><text class="required newicon newicon-bitian"></text>院区:</view>
29
+          <uni-data-select class="value" v-model="dataInfo.branchId" :localdata="dataInfo.branchList" :clear="false" placeholder="请选择院区" @change="changeBranch" :class="{formRed: isSubmmit && !dataInfo.branchId}"></uni-data-select>
30
+        </view>
31
+        <view class="form_item">
32
+          <view class="title select"><text class="required newicon newicon-bitian"></text>责任科室:</view>
33
+          <uni-data-select class="value" v-model="dataInfo.dutyId" :localdata="dataInfo.dutyList" :clear="false" placeholder="请选择责任科室" @change="changeDuty" :class="{formRed: isSubmmit && !dataInfo.dutyId}"></uni-data-select>
34
+        </view>
35
+        <view class="form_item">
36
+          <view class="title select"><text class="required newicon newicon-bitian"></text>工作组:</view>
37
+          <uni-data-select class="value" v-model="dataInfo.groupId" :localdata="dataInfo.groupList" :clear="false" placeholder="请选择工作组" @change="changeGroup" :class="{formRed: isSubmmit && !dataInfo.groupId}"></uni-data-select>
38
+        </view>
39
+        <view class="form_item">
40
+          <view class="title radio"><text class="required newicon newicon-bitian"></text>是否指派到人:</view>
41
+          <uni-data-checkbox class="value" v-model="dataInfo.isAssignUser" :localdata="dataInfo.isAssignUserList" @change="changeIsAssignUser" />
42
+        </view>
43
+        <view class="form_item" v-if="dataInfo.isAssignUser === 1">
44
+          <view class="title select"><text class="required newicon newicon-bitian"></text>指派对象:</view>
45
+          <uni-data-select class="value" v-model="dataInfo.userId" :localdata="dataInfo.userList" :clear="false" placeholder="请选择指派对象" :class="{formRed: isSubmmit && dataInfo.groupId && dataInfo.isAssignUser == 1 && !dataInfo.userId}"></uni-data-select>
46
+        </view>
47
+      </template>
48
+      
49
+      <!-- 退回 -->
50
+      <template v-if="dataInfo.tabActiveValue === 'reassign'">
51
+        <view class="form_item column">
52
+          <view class="title"><text class="required newicon newicon-bitian"></text>退回原因:</view>
53
+          <uni-easyinput class="value" type="textarea" v-model="dataInfo.reassignRemark" placeholder="请输入退回原因" :class="{formRed: isSubmmit && !dataInfo.reassignRemark.trim()}" />
54
+          <view class="tips">注:退回后,由调度台重新指派。</view>
55
+        </view>
56
+      </template>
57
+    </scroll-view>
58
+    <view class="foot_common_btns">
59
+      <button @click="goBack" type="default" class="cancelButton btn">返回</button>
60
+      <button @click="submmit" type="default" class="primaryButton btn">提交</button>
61
+    </view>
62
+  </view>
63
+</template>
64
+
65
+<script setup>
66
+  import { ref, reactive } from 'vue'
67
+  import { onLoad } from '@dcloudio/uni-app'
68
+  import { api_group, api_incidentDetail, api_user, api_incidentTask, api_branch, api_dutyDepartment } from "@/http/api.js"
69
+  import { defaultColor } from '@/static/js/theme.js'
70
+  import { useSetTitle } from '@/share/useSetTitle.js'
71
+  import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
72
+  import { useGoBack } from '@/share/useGoBack.js'
73
+  import { useLoginUserStore } from '@/stores/loginUser'
74
+  
75
+  useSetTitle();
76
+  const loginUserStore = useLoginUserStore();
77
+  const { makePhoneCall }  = useMakePhoneCall();
78
+  const { goBack }  = useGoBack();
79
+  
80
+  // 主题颜色
81
+  const primaryColor = ref(defaultColor)
82
+  
83
+  // 数据
84
+  const dataInfo = reactive({
85
+    tabs: [
86
+      // {id: 1, name: '转派', value: 'redeploy', num: ''},
87
+      // {id: 2, name: '指派', value: 'assign', num: ''},
88
+      // {id: 3, name: '升级', value: 'upgrade', num: ''},
89
+      // {id: 4, name: '退回', value: 'reassign', num: ''},
90
+    ],
91
+    tabActiveValue: 0,//当前选择的tab
92
+    incidentId: undefined,//事件ID
93
+    incidentData: {},//事件对象
94
+    groupList: [], //工作组列表
95
+    groupId: undefined, //工作组ID
96
+    userList: [], //用户列表
97
+    userId: undefined, //用户ID
98
+    branchList: [], //院区列表
99
+    branchId: undefined, //院区ID
100
+    dutyList: [], //责任科室列表
101
+    dutyId: undefined, //责任科室ID
102
+    isAssignUser: 1, //工作组是否转派到人
103
+    isAssignUserList: [
104
+      { text: '是', value: 1 },
105
+      { text: '否', value: 0 },
106
+    ], //工作组是否转派到人选项
107
+    reassignRemark: '',//退回原因
108
+  })
109
+  
110
+  // 是否提交
111
+  const isSubmmit = ref(false)
112
+  
113
+  // 重置
114
+  function reset(){
115
+    dataInfo.branchId = undefined;
116
+    dataInfo.branchList = [];
117
+    
118
+    dataInfo.dutyId = undefined;
119
+    dataInfo.dutyList = [];
120
+    
121
+    dataInfo.groupId = undefined;
122
+    dataInfo.groupList = [];
123
+    
124
+    dataInfo.userId = undefined;
125
+    dataInfo.userList = [];
126
+    
127
+    dataInfo.isAssignUser = 1;
128
+    
129
+    dataInfo.reassignRemark = '';
130
+  }
131
+  
132
+  // 初始化表单
133
+  function initForm(){
134
+    if(dataInfo.tabActiveValue === 'redeploy'){
135
+      getGroups();
136
+    }else if(dataInfo.tabActiveValue === 'assign'){
137
+      getBranchs();
138
+    }
139
+  }
140
+  
141
+  // 点击tab
142
+  function clickTab(tabValue){
143
+    if(dataInfo.tabActiveValue == tabValue){
144
+      return;
145
+    }
146
+    dataInfo.tabActiveValue = tabValue;
147
+    isSubmmit.value = false;
148
+    reset();
149
+    initForm()
150
+  }
151
+  
152
+  // 获取事件详情
153
+  function getIncidentDetail(){
154
+    uni.showLoading({
155
+      title: "加载中",
156
+      mask: true,
157
+    });
158
+
159
+    api_incidentDetail(dataInfo.incidentId).then(res => {
160
+      uni.hideLoading();
161
+      if(res.status == 200){
162
+        dataInfo.incidentData = res.data || {};
163
+        let transferFlag = false;//转派权限
164
+        let assignFlag = false;//指派权限
165
+        for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
166
+            if (loginUserStore.loginUser.menu[i].link == "shijianliebiao_assign") {
167
+                assignFlag = true
168
+            }
169
+            if (loginUserStore.loginUser.menu[i].link == "shijianliebiao_transfer") {
170
+                transferFlag = true
171
+            }
172
+        }
173
+        
174
+        // 转派
175
+        if(dataInfo.incidentData.state.value == 'handler' && dataInfo.incidentData.handlingPersonnelUser && dataInfo.incidentData.handlingPersonnelUser.id == loginUserStore.loginUser.user.id && !assignFlag && transferFlag){
176
+          dataInfo.tabs.splice(0, 0, {id: 1, name: '转派', value: 'redeploy', num: ''});
177
+        }
178
+        
179
+        // 指派
180
+        if((dataInfo.incidentData.state.value == 'pending' || dataInfo.incidentData.state.value == 'handler' || dataInfo.incidentData.state.value == 'reassign') && assignFlag){
181
+          let index = dataInfo.tabs.findIndex(v => v.value === 'reassign');
182
+          if(index < 0){
183
+            dataInfo.tabs = [{id: 1, name: '指派', value: 'assign', num: ''}];
184
+          }else{
185
+            dataInfo.tabs.splice(index, 0, {id: 1, name: '指派', value: 'assign', num: ''});
186
+          }
187
+        }
188
+        
189
+        // 退回
190
+        if(dataInfo.incidentData.state.value == 'pending' || dataInfo.incidentData.state.value == 'handler'){
191
+          if(dataInfo.tabs.length){
192
+            dataInfo.tabs.splice(dataInfo.tabs.length, 0, {id: 4, name: '退回', value: 'reassign', num: ''});
193
+          }else{
194
+            dataInfo.tabs = [{id: 4, name: '退回', value: 'reassign', num: ''}];
195
+          }
196
+        }
197
+        
198
+        dataInfo.tabActiveValue = dataInfo.tabs[0].value;
199
+        
200
+        initForm()
201
+      }else{
202
+        uni.showToast({
203
+          icon: 'none',
204
+          title: res.msg || '请求数据失败!'
205
+        });
206
+      }
207
+    })
208
+  }
209
+  
210
+  // 获取院区列表
211
+  function getBranchs(){
212
+    uni.showLoading({
213
+      title: "加载中",
214
+      mask: true,
215
+    });
216
+    let postData = {
217
+      "idx": 0,
218
+      "sum": 9999,
219
+    };
220
+    api_branch(postData).then(res => {
221
+      uni.hideLoading();
222
+      if(res.status == 200){
223
+        res.list = res.list || [];
224
+        dataInfo.branchList = res.list.map(v => ({
225
+          text: v.hosName,
226
+          value: v.id,
227
+        }));
228
+        
229
+        if(loginUserStore.loginUser.user.duty){
230
+          // 当前的所属责任科室
231
+          dataInfo.branchId = loginUserStore.loginUser.user.duty.branch;
232
+          changeBranch();
233
+          
234
+          dataInfo.dutyId = loginUserStore.loginUser.user.duty.id;
235
+          changeDuty();
236
+        }else if(loginUserStore.loginUser.user.branch){
237
+          // 当前的所属院区
238
+          dataInfo.branchId = loginUserStore.loginUser.user.branch.id;
239
+        }
240
+      }else{
241
+        uni.showToast({
242
+          icon: 'none',
243
+          title: res.msg || '请求数据失败!'
244
+        });
245
+      }
246
+    })
247
+  }
248
+  
249
+  // 获取责任科室列表
250
+  function getDutys(){
251
+    uni.showLoading({
252
+      title: "加载中",
253
+      mask: true,
254
+    });
255
+    let postData = {
256
+      "idx": 0,
257
+      "sum": 9999,
258
+      "dutyDepartment": {
259
+        "branch": dataInfo.branchId,
260
+      }
261
+    };
262
+    api_dutyDepartment(postData).then(res => {
263
+      uni.hideLoading();
264
+      if(res.status == 200){
265
+        res.list = res.list || [];
266
+        dataInfo.dutyList = res.list.map(v => ({
267
+          text: v.dept,
268
+          value: v.id,
269
+        }));
270
+      }else{
271
+        uni.showToast({
272
+          icon: 'none',
273
+          title: res.msg || '请求数据失败!'
274
+        });
275
+      }
276
+    })
277
+  }
278
+  
279
+  // 获取工作组列表
280
+  function getGroups(){
281
+    uni.showLoading({
282
+      title: "加载中",
283
+      mask: true,
284
+    });
285
+    
286
+    let duty = undefined;
287
+    if(dataInfo.tabActiveValue === 'redeploy'){
288
+      duty = dataInfo.incidentData.duty;
289
+    }else if(dataInfo.tabActiveValue === 'assign'){
290
+      duty = { id: dataInfo.dutyId };
291
+    }
292
+    
293
+    let postData = {
294
+      "idx": 0,
295
+      "sum": 9999,
296
+      "group": {
297
+          "duty": duty,
298
+          "selectType": "nouser"
299
+      }
300
+    };
301
+    api_group(postData).then(res => {
302
+      uni.hideLoading();
303
+      if(res.status == 200){
304
+        res.list = res.list || [];
305
+        dataInfo.groupList = res.list.map(v => ({
306
+          text: v.groupName,
307
+          value: v.id,
308
+        }));
309
+      }else{
310
+        uni.showToast({
311
+          icon: 'none',
312
+          title: res.msg || '请求数据失败!'
313
+        });
314
+      }
315
+    })
316
+  }
317
+  
318
+  // 获取用户列表
319
+  function getUsers(){
320
+    uni.showLoading({
321
+      title: "加载中",
322
+      mask: true,
323
+    });
324
+    let postData = {
325
+      "idx": 0,
326
+      "sum": 9999,
327
+      "user": {
328
+          "groupdata":{
329
+            "id": dataInfo.groupId,
330
+          },
331
+          "roledata": {
332
+              "rolecode": "first-line support"
333
+          },
334
+          "roledata2": {
335
+              "rolecode": "second-line support"
336
+          },
337
+          "selectType": "1",
338
+          "selectDetails": 1,
339
+          "simple": true,
340
+          "engineer": 1
341
+      }
342
+    };
343
+    api_user(postData).then(res => {
344
+      uni.hideLoading();
345
+      if(res.status == 200){
346
+        res.list = res.list || [];
347
+        dataInfo.userList = res.list.map(v => ({
348
+          text: v.name,
349
+          value: v.id,
350
+        }));
351
+      }else{
352
+        uni.showToast({
353
+          icon: 'none',
354
+          title: res.msg || '请求数据失败!'
355
+        });
356
+      }
357
+    })
358
+  }
359
+  
360
+  // 选择院区
361
+  function changeBranch(){
362
+    dataInfo.dutyId = undefined;
363
+    dataInfo.dutyList = [];
364
+    
365
+    dataInfo.groupId = undefined;
366
+    dataInfo.groupList = [];
367
+    
368
+    dataInfo.userId = undefined;
369
+    dataInfo.userList = [];
370
+    getDutys();
371
+  }
372
+  
373
+  // 选择责任科室
374
+  function changeDuty(){
375
+    dataInfo.groupId = undefined;
376
+    dataInfo.groupList = [];
377
+    
378
+    dataInfo.userId = undefined;
379
+    dataInfo.userList = [];
380
+    getGroups();
381
+  }
382
+  
383
+  // 选择工作组
384
+  function changeGroup(){
385
+    dataInfo.userId = undefined;
386
+    dataInfo.userList = [];
387
+    getUsers();
388
+  }
389
+  
390
+  // 选择是否转派到人
391
+  function changeIsAssignUser(){
392
+    dataInfo.userId = undefined;
393
+  }
394
+  
395
+  // 提交
396
+  function submmit(){
397
+    isSubmmit.value = true;
398
+    
399
+    if(dataInfo.tabActiveValue === 'redeploy'){
400
+      submmitRedeploy();
401
+    }else if(dataInfo.tabActiveValue === 'assign'){
402
+      submmitAssign();
403
+    }else if(dataInfo.tabActiveValue === 'reassign'){
404
+      submmitReassign();
405
+    }
406
+  }
407
+  
408
+  // 转派提交
409
+  function submmitRedeploy(){
410
+    if(!dataInfo.groupId){
411
+      uni.showToast({
412
+      	icon: 'none',
413
+        title: '请选择工作组'
414
+      });
415
+      return;
416
+    }
417
+    
418
+    if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
419
+      uni.showToast({
420
+      	icon: 'none',
421
+        title: '请选择指派对象'
422
+      });
423
+      return;
424
+    }
425
+    
426
+    uni.showLoading({
427
+      title: "加载中",
428
+      mask: true,
429
+    });
430
+    
431
+    let postData = {
432
+      incident: dataInfo.incidentData,
433
+    }
434
+    
435
+    if(dataInfo.userId){
436
+      // 派人
437
+      postData.incident.assignee = dataInfo.userId;
438
+    } else {
439
+      // 派组
440
+      postData.incident.candidateGroups = dataInfo.groupId;
441
+    }
442
+    
443
+    api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
444
+      uni.hideLoading();
445
+      if(res.state == 200){
446
+        uni.showToast({
447
+        	icon: 'none',
448
+          title: '转派成功',
449
+          mask: true,
450
+          complete: () => {
451
+            setTimeout(() => {
452
+              uni.reLaunch({
453
+                url: '/pages/incidentList/incidentList',
454
+              })
455
+            }, 1500)
456
+          }
457
+        });
458
+      }else{
459
+        uni.showToast({
460
+          icon: 'none',
461
+          title: res.msg || '请求数据失败!'
462
+        });
463
+      }
464
+    })
465
+  }
466
+  
467
+  // 指派提交
468
+  function submmitAssign(){
469
+    if(!dataInfo.branchId){
470
+      uni.showToast({
471
+      	icon: 'none',
472
+        title: '请选择院区'
473
+      });
474
+      return;
475
+    }
476
+    
477
+    if(!dataInfo.dutyId){
478
+      uni.showToast({
479
+      	icon: 'none',
480
+        title: '请选择责任科室'
481
+      });
482
+      return;
483
+    }
484
+    
485
+    if(!dataInfo.groupId){
486
+      uni.showToast({
487
+      	icon: 'none',
488
+        title: '请选择工作组'
489
+      });
490
+      return;
491
+    }
492
+    
493
+    if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
494
+      uni.showToast({
495
+      	icon: 'none',
496
+        title: '请选择指派对象'
497
+      });
498
+      return;
499
+    }
500
+    
501
+    uni.showLoading({
502
+      title: "加载中",
503
+      mask: true,
504
+    });
505
+    
506
+    let postData = {
507
+      incident: dataInfo.incidentData,
508
+    }
509
+    
510
+    if(dataInfo.userId){
511
+      // 派人
512
+      postData.incident.assignee = dataInfo.userId;
513
+    } else {
514
+      // 派组
515
+      postData.incident.candidateGroups = dataInfo.groupId;
516
+    }
517
+    
518
+    api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
519
+      uni.hideLoading();
520
+      if(res.state == 200){
521
+        uni.showToast({
522
+        	icon: 'none',
523
+          title: '指派成功',
524
+          mask: true,
525
+          complete: () => {
526
+            setTimeout(() => {
527
+              uni.reLaunch({
528
+                url: '/pages/incidentList/incidentList',
529
+              })
530
+            }, 1500)
531
+          }
532
+        });
533
+      }else{
534
+        uni.showToast({
535
+          icon: 'none',
536
+          title: res.msg || '请求数据失败!'
537
+        });
538
+      }
539
+    })
540
+  }
541
+  
542
+  // 退回提交
543
+  function submmitReassign(){
544
+    if(!dataInfo.reassignRemark.trim()){
545
+      uni.showToast({
546
+      	icon: 'none',
547
+        title: '请填写退回原因'
548
+      });
549
+      return;
550
+    }
551
+    
552
+    uni.showLoading({
553
+      title: "加载中",
554
+      mask: true,
555
+    });
556
+    
557
+    let postData = {
558
+      incident: dataInfo.incidentData,
559
+    }
560
+    
561
+    postData.incident.reassignRemark = dataInfo.reassignRemark;
562
+    
563
+    api_incidentTask(dataInfo.tabActiveValue, postData).then(res => {
564
+      uni.hideLoading();
565
+      if(res.state == 200){
566
+        uni.showToast({
567
+        	icon: 'none',
568
+          title: '退回成功',
569
+          mask: true,
570
+          complete: () => {
571
+            setTimeout(() => {
572
+              uni.reLaunch({
573
+                url: '/pages/incidentList/incidentList',
574
+              })
575
+            }, 1500)
576
+          }
577
+        });
578
+      }else{
579
+        uni.showToast({
580
+          icon: 'none',
581
+          title: res.msg || '请求数据失败!'
582
+        });
583
+      }
584
+    })
585
+  }
586
+  
587
+  onLoad((option) => {
588
+    dataInfo.incidentId = option.incidentId;
589
+    getIncidentDetail();
590
+  })
591
+</script>
592
+
593
+<style lang="scss" scoped>
594
+.changeUser{
595
+  height: 100%;
596
+  display: flex;
597
+  flex-direction: column;
598
+  justify-content: space-between;
599
+  .head{
600
+    height: 88rpx;
601
+    display: flex;
602
+    position: fixed;
603
+    z-index: 99;
604
+    width: 100%;
605
+    background-color: #fff;
606
+    .tab{
607
+      flex: 1;
608
+      display: flex;
609
+      justify-content: center;
610
+      align-items: center;
611
+      border-bottom: 4rpx solid transparent;
612
+      &.active{
613
+        color: $uni-primary;
614
+        border-color: $uni-primary;
615
+      }
616
+    }
617
+  }
618
+  .body{
619
+    margin-top: 88rpx;
620
+    padding: 0 24rpx;
621
+    box-sizing: border-box;
622
+    flex: 1;
623
+    min-height: 0;
624
+    .form_item{
625
+      display: flex;
626
+      align-items: center;
627
+      padding-top: 24rpx;
628
+      height: 86rpx;
629
+      &.column{
630
+        flex-direction: column;
631
+        align-items: flex-start;
632
+        .title{
633
+          margin-right: 0;
634
+        }
635
+        .value{
636
+          margin-top: 10rpx;
637
+          padding-left: 20rpx;
638
+          box-sizing: border-box;
639
+        }
640
+        .tips{
641
+          padding: 24rpx;
642
+          text-align: center;
643
+          font-size: 22rpx;
644
+          color: #909399;
645
+          width: 100%;
646
+          box-sizing: border-box;
647
+        }
648
+      }
649
+      .title{
650
+        font-size: 26rpx;
651
+        display: flex;
652
+        align-items: center;
653
+        margin-right: 12rpx;
654
+        &.select{
655
+          width: calc(5em + 20rpx);
656
+        }
657
+      }
658
+    }
659
+  }
660
+}
661
+</style>

+ 14 - 7
pages/incidentList/incidentList.vue

@@ -40,10 +40,10 @@
40 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>
41 41
             <text class="date">{{formatDate(data.startDate, 'MM-dd HH:mm')}}</text>
42 42
           </view>
43
-          <view class="btns" v-if="data.state.value === 'pending' || data.state.value === 'handler'">
44
-            <button @click="handler('changeUser')" type="default" class="primaryButton btn">换人处理</button>
45
-            <button @click="handler('handler')" type="default" class="primaryButton btn" v-if="data.state.value === 'handler'">处理</button>
46
-            <button @click="handler('receive')" type="default" class="primaryButton btn" v-if="data.state.value === 'pending'">接单</button>
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="handler('receive', data.id)" type="default" class="primaryButton btn" v-if="data.state.value === 'pending'">接单</button>
47 47
           </view>
48 48
         </view>
49 49
       </view>
@@ -82,6 +82,8 @@
82 82
   // 主题颜色
83 83
   const primaryColor = ref(defaultColor)
84 84
   
85
+  const assignFlag = ref(false);//指派权限
86
+  
85 87
   // 数据
86 88
   const dataInfo = reactive({
87 89
     tabs: [{id: 0, name: '全部', value: 'all', num: ''}],
@@ -156,9 +158,9 @@
156 158
   }
157 159
   
158 160
   // 处理按钮
159
-  function handler(type){
161
+  function handler(type, incidentId){
160 162
     uni.navigateTo({
161
-      url: `/pages/${type}/${type}`
163
+      url: `/pages/${type}/${type}?incidentId=${incidentId}`
162 164
     })
163 165
   }
164 166
   
@@ -202,7 +204,7 @@
202 204
       uni.stopPullDownRefresh();
203 205
       if(res.status == 200){
204 206
         let list = res.list || [];
205
-        list = list.map(v => ({...v, ...{reqAttachment: true, callID:123}}))//模拟
207
+        list = list.map(v => ({...v, ...{callID:123}}))//模拟
206 208
         if(list.length){
207 209
           dataInfo.hasMore = true;
208 210
           dataInfo.list = dataInfo.idx === 0 ? list : dataInfo.list.concat(list);
@@ -283,6 +285,11 @@
283 285
   }
284 286
   
285 287
   onLoad((option) => {
288
+    for (let i = 0; i < loginUserStore.loginUser.menu.length; i++) {
289
+        if (loginUserStore.loginUser.menu[i].link == "shijianliebiao_assign") {
290
+            assignFlag.value = true;
291
+        }
292
+    }
286 293
     getTabs();
287 294
   })
288 295
   

+ 0 - 19
pages/index/index.vue

@@ -1,19 +0,0 @@
1
-<template>
2
-  <view>
3
-    首页
4
-  </view>
5
-</template>
6
-
7
-<script>
8
-  export default {
9
-    data() {
10
-      return {
11
-        
12
-      };
13
-    }
14
-  }
15
-</script>
16
-
17
-<style lang="scss">
18
-
19
-</style>

+ 10 - 16
pages/initBind/initBind.vue

@@ -1,6 +1,6 @@
1 1
 <template>
2
-  <view class="repairEntrance page_padding">
3
-    <view class="info">
2
+  <view class="repairEntrance">
3
+    <view class="info page_padding">
4 4
       <view class="info_text">
5 5
         <view class="text_left text_justify">您还没有绑定工号,请填写您的工号进行绑定。</view>
6 6
       </view>
@@ -8,11 +8,13 @@
8 8
         <view class="info_form_item">
9 9
           <label for="account" class="label"><text class="required newicon newicon-bitian"></text>工号:</label>
10 10
           <uni-easyinput class="flex1" v-model="postData.account" placeholder="请输入工号" focus
11
-            :styles="{borderColor: !postData.account && isSubmmit ? '#f00' : ''}" :primaryColor="primaryColor" />
11
+            :styles="{borderColor: !postData.account.trim() && isSubmmit ? '#f00' : ''}" :primaryColor="primaryColor" />
12 12
         </view>
13 13
       </view>
14 14
     </view>
15
-    <button @click="bind" type="default" class="primaryButton bind">绑定</button>
15
+    <view class="foot_common_btns">
16
+      <button @click="bind" type="default" class="primaryButton btn">绑定</button>
17
+    </view>
16 18
   </view>
17 19
 </template>
18 20
 
@@ -48,13 +50,10 @@
48 50
    */
49 51
   function bind() {
50 52
     isSubmmit.value = true;
51
-    if(!postData.account){
52
-      uni.showModal({
53
-        title: '提示',
54
-        content: `请填写工号`,
55
-        showCancel: false,
56
-        confirmColor: defaultColor,
57
-        confirmText: '取消',
53
+    if(!postData.account.trim()){
54
+      uni.showToast({
55
+      	icon: 'none',
56
+        title: '请填写工号'
58 57
       });
59 58
       return;
60 59
     }
@@ -153,10 +152,5 @@
153 152
         }
154 153
       }
155 154
     }
156
-
157
-    .bind {
158
-      width: 100%;
159
-      margin-bottom: 24rpx;
160
-    }
161 155
   }
162 156
 </style>

+ 5 - 7
pages/repairEntrance/repairEntrance.vue

@@ -1,12 +1,14 @@
1 1
 <template>
2
-  <view class="repairEntrance page_padding">
3
-    <view class="info">
2
+  <view class="repairEntrance">
3
+    <view class="info page_padding">
4 4
       <view class="info_text">
5 5
         <view class="text_left text_justify">您没有报修处理权限,如需要请联系管理员。</view>
6 6
       </view>
7 7
       <view class="info_tips text_center">如您需要报修点击<text class="info_primary">"进入报修”</text></view>
8 8
     </view>
9
-    <button @click="goToRepair" type="default" class="primaryButton goToRepair">进入报修</button>
9
+    <view class="foot_common_btns">
10
+      <button @click="goToRepair" type="default" class="primaryButton btn">进入报修</button>
11
+    </view>
10 12
   </view>
11 13
 </template>
12 14
 
@@ -47,9 +49,5 @@
47 49
         }
48 50
       }
49 51
     }
50
-    .goToRepair{
51
-      width: 100%;
52
-      margin-bottom: 24rpx;
53
-    }
54 52
   }
55 53
 </style>

+ 0 - 19
pages/repairList/repairList.vue

@@ -1,19 +0,0 @@
1
-<template>
2
-  <view>
3
-    我的报修
4
-  </view>
5
-</template>
6
-
7
-<script>
8
-  export default {
9
-    data() {
10
-      return {
11
-        
12
-      };
13
-    }
14
-  }
15
-</script>
16
-
17
-<style lang="scss">
18
-
19
-</style>

+ 12 - 0
share/useGoback.js

@@ -0,0 +1,12 @@
1
+export function useGoBack() {
2
+  /**
3
+   * 返回
4
+   */
5
+  const goBack = () => {
6
+    uni.navigateBack();
7
+  }
8
+  
9
+  return {
10
+    goBack
11
+  }
12
+}

+ 36 - 2
static/scss/common.scss

@@ -2,7 +2,7 @@
2 2
 page{
3 3
   background-color: #fff;
4 4
   color: #000;
5
-  height: calc(100vh - 50px);
5
+  height: 100vh;
6 6
 }
7 7
 
8 8
 uni-toast,
@@ -30,13 +30,34 @@ uni-toast,
30 30
   text-align: justify;
31 31
 }
32 32
 
33
-// 按钮
33
+// 按钮样式-绿色
34 34
 .primaryButton{
35 35
   color: #fff!important;
36 36
   background-color: $uni-primary!important;
37 37
   border-color: $uni-primary!important;
38 38
 }
39 39
 
40
+// 按钮样式-灰色
41
+.cancelButton{
42
+  color: #fff!important;
43
+  background-color: $uni-info!important;
44
+  border-color: $uni-info!important;
45
+}
46
+
47
+// 底部按钮
48
+.foot_common_btns{
49
+  width: 100%;
50
+  box-sizing: border-box;
51
+  margin-bottom: 24rpx;
52
+  padding: 0 24rpx;
53
+  display: flex;
54
+  align-items: center;
55
+  gap: 24rpx;
56
+  .btn{
57
+    flex: 1;
58
+  }
59
+}
60
+
40 61
 // 必填标识
41 62
 .required{
42 63
   color: #f00;
@@ -96,3 +117,16 @@ uni-toast,
96 117
   overflow: hidden;
97 118
   text-overflow: ellipsis;
98 119
 }
120
+
121
+// 透明
122
+.transparent{
123
+  opacity: 0;
124
+}
125
+
126
+// 下拉框边框红色
127
+.formRed{
128
+  .uni-select,
129
+  .uni-easyinput__content{
130
+    border: 1px solid red!important;
131
+  }
132
+}