|
@@ -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>
|