|
@@ -3,16 +3,72 @@
|
3
|
3
|
<scroll-view scroll-y class="body">
|
4
|
4
|
<view class="form_item">
|
5
|
5
|
<view class="title select"><text class="required newicon newicon-bitian"></text>院区:</view>
|
6
|
|
- <uni-data-select class="value" v-model="dataInfo.groupId" :localdata="dataInfo.groupList" :clear="false" placeholder="请选择院区" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}"></uni-data-select>
|
|
6
|
+ <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>
|
7
|
7
|
</view>
|
8
|
8
|
<view class="form_item">
|
9
|
|
- <view class="title select"><text class="required newicon newicon-bitian"></text>报修科室:</view>
|
10
|
|
- <uni-data-select class="value" v-model="dataInfo.groupId" :localdata="dataInfo.groupList" :clear="false" placeholder="请选择报修科室" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}"></uni-data-select>
|
|
9
|
+ <view class="title"><text class="required newicon newicon-bitian"></text>报修科室:</view>
|
|
10
|
+ <view class="value category" @click="selectDepartment">
|
|
11
|
+ <text class="categoryName ellipsis-multiline">{{incidentData.department ? incidentData.department.dept : ''}}</text>
|
|
12
|
+ <text class="newicon newicon-weibiaoti2010104"></text>
|
|
13
|
+ </view>
|
11
|
14
|
</view>
|
12
|
15
|
<view class="form_item">
|
13
|
16
|
<view class="title select"><text class="required newicon newicon-bitian transparent"></text>报修人:</view>
|
14
|
|
- <uni-data-select class="value" v-model="dataInfo.groupId" :localdata="dataInfo.groupList" :clear="false" placeholder="请选择报修人" @change="changeGroup" :class="{formRed: isSubmit && !dataInfo.groupId}"></uni-data-select>
|
|
17
|
+ <uni-data-select readonly class="value" v-model="incidentData.requester" :localdata="dataInfo.requesterList" placeholder="请选择报修人"></uni-data-select>
|
15
|
18
|
</view>
|
|
19
|
+ <view class="form_item">
|
|
20
|
+ <view class="title select"><text class="required newicon newicon-bitian transparent"></text>联系人:</view>
|
|
21
|
+ <uni-easyinput class="value" v-model="incidentData.contacts" placeholder="请输入联系人" />
|
|
22
|
+ </view>
|
|
23
|
+ <view class="form_item">
|
|
24
|
+ <view class="title select"><text class="required newicon newicon-bitian"></text>联系电话:</view>
|
|
25
|
+ <uni-easyinput class="value" v-model="incidentData.contactsInformation" placeholder="请输入联系电话" :class="{formRed: isSubmit && !incidentData.contactsInformation.trim()}" />
|
|
26
|
+ </view>
|
|
27
|
+ <view class="form_item">
|
|
28
|
+ <view class="title"><text class="required newicon newicon-bitian transparent"></text>楼栋楼层:</view>
|
|
29
|
+ <view class="value category" @click="selectAreaPlace">
|
|
30
|
+ <text class="categoryName ellipsis-multiline">{{incidentData.place ? incidentData.place.area.area + ' ' + incidentData.place.place : ''}}</text>
|
|
31
|
+ <text class="newicon newicon-weibiaoti2010104"></text>
|
|
32
|
+ </view>
|
|
33
|
+ </view>
|
|
34
|
+ <view class="form_item">
|
|
35
|
+ <view class="title select"><text class="required newicon newicon-bitian transparent"></text>详细地址:</view>
|
|
36
|
+ <uni-easyinput class="value" v-model="incidentData.houseNumber" placeholder="请输入详细地址" />
|
|
37
|
+ </view>
|
|
38
|
+ <view class="form_item">
|
|
39
|
+ <view class="title"><text class="required newicon newicon-bitian"></text>故障现象:</view>
|
|
40
|
+ <view class="value category" @click="selectCategory">
|
|
41
|
+ <text class="categoryName ellipsis-multiline">{{incidentData.category ? incidentData.category.mutiCategory : ''}}</text>
|
|
42
|
+ <text class="newicon newicon-weibiaoti2010104"></text>
|
|
43
|
+ </view>
|
|
44
|
+ </view>
|
|
45
|
+ <view class="form_item">
|
|
46
|
+ <view class="title select"><text class="required newicon newicon-bitian transparent"></text>故障来源:</view>
|
|
47
|
+ <uni-data-select readonly class="value" v-model="incidentData.source" :localdata="dataInfo.sourceList" placeholder="请选择故障来源"></uni-data-select>
|
|
48
|
+ </view>
|
|
49
|
+ <view class="form_item">
|
|
50
|
+ <view class="title select"><text class="required newicon newicon-bitian transparent"></text>优先级:</view>
|
|
51
|
+ <uni-data-select placement="top" readonly class="value" v-model="incidentData.priority" :localdata="dataInfo.priorityList" placeholder="请选择优先级"></uni-data-select>
|
|
52
|
+ </view>
|
|
53
|
+ <view class="form_item column">
|
|
54
|
+ <view class="title select"><text class="required newicon newicon-bitian"></text>故障描述:</view>
|
|
55
|
+ <uni-easyinput class="value" type="textarea" v-model="incidentData.description" placeholder="请输入故障描述" :class="{formRed: isSubmit && !incidentData.description.trim()}" />
|
|
56
|
+ </view>
|
|
57
|
+ <view class="form_item_column">
|
|
58
|
+ <view class="form_item">
|
|
59
|
+ <view class="title"><text class="required newicon newicon-bitian transparent"></text>处理图片:</view>
|
|
60
|
+ <view class="value">
|
|
61
|
+ <uni-file-picker ref="handlerImgRef" v-model="incidentData.handlerImgList" limit="3" @success="handlerImgSuccess" @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete"></uni-file-picker>
|
|
62
|
+ </view>
|
|
63
|
+ </view>
|
|
64
|
+ <view class="form_item">
|
|
65
|
+ <view class="title transparent"><text class="required newicon newicon-bitian transparent"></text>处理图片:</view>
|
|
66
|
+ <view class="value">
|
|
67
|
+ <text class="imgTips ellipsis">(支持JPG/PNG格式图片,单张大小10M以内)</text>
|
|
68
|
+ </view>
|
|
69
|
+ </view>
|
|
70
|
+ </view>
|
|
71
|
+
|
16
|
72
|
</scroll-view>
|
17
|
73
|
<view class="foot_common_btns">
|
18
|
74
|
<button @click="goBack" type="default" class="cancelButton btn">返回</button>
|
|
@@ -24,82 +80,136 @@
|
24
|
80
|
<script setup>
|
25
|
81
|
import { ref, reactive } from 'vue'
|
26
|
82
|
import { onLoad } from '@dcloudio/uni-app'
|
27
|
|
- import { api_group, api_incidentDetail, api_user, api_incidentTask, api_branch, api_dutyDepartment } from "@/http/api.js"
|
|
83
|
+ import { api_user, api_branch, api_getDictionary, api_incidentTask } from "@/http/api.js"
|
28
|
84
|
import { defaultColor } from '@/static/js/theme.js'
|
29
|
85
|
import { useSetTitle } from '@/share/useSetTitle.js'
|
30
|
|
- import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
|
31
|
86
|
import { useGoBack } from '@/share/useGoBack.js'
|
32
|
87
|
import { useLoginUserStore } from '@/stores/loginUser'
|
|
88
|
+ import { useIncidentBuildStore } from '@/stores/incidentBuild'
|
|
89
|
+ import { useUploadFile } from '@/share/useUploadFile.js'
|
33
|
90
|
|
34
|
91
|
useSetTitle();
|
35
|
92
|
const loginUserStore = useLoginUserStore();
|
36
|
|
- const { makePhoneCall } = useMakePhoneCall();
|
|
93
|
+ const incidentBuildStore = useIncidentBuildStore();
|
|
94
|
+ const { uploadFile } = useUploadFile();
|
37
|
95
|
const { goBack } = useGoBack();
|
38
|
96
|
|
39
|
97
|
// 主题颜色
|
40
|
98
|
const primaryColor = ref(defaultColor)
|
41
|
99
|
|
|
100
|
+ // 工单对象
|
|
101
|
+ const incidentData = reactive({
|
|
102
|
+ "deleteFlag": 0,
|
|
103
|
+ "duty": undefined,
|
|
104
|
+ "department": undefined,
|
|
105
|
+ "contactsInformation": '',
|
|
106
|
+ "contacts": '',
|
|
107
|
+ "branch": undefined,
|
|
108
|
+ "area": undefined,
|
|
109
|
+ "place": undefined,
|
|
110
|
+ "houseNumber": '',
|
|
111
|
+ "category": undefined,
|
|
112
|
+ "priority": undefined,
|
|
113
|
+ "source": undefined,
|
|
114
|
+ "title": '',
|
|
115
|
+ "description": '',
|
|
116
|
+ "repairType": undefined,
|
|
117
|
+ "requester":undefined,
|
|
118
|
+ "acceptUser": loginUserStore.loginUser.user,
|
|
119
|
+ handlerImgList: [],//处理图片列表
|
|
120
|
+ })
|
|
121
|
+
|
|
122
|
+ // 处理图片
|
|
123
|
+ const handlerImgRef = ref(null)
|
|
124
|
+
|
42
|
125
|
// 数据
|
43
|
126
|
const dataInfo = reactive({
|
44
|
|
- incidentId: undefined,//事件ID
|
45
|
|
- incidentData: {},//事件对象
|
46
|
|
- groupList: [], //工作组列表
|
47
|
|
- groupId: undefined, //工作组ID
|
48
|
|
- userList: [], //用户列表
|
49
|
|
- userId: undefined, //用户ID
|
50
|
127
|
branchList: [], //院区列表
|
51
|
|
- branchId: undefined, //院区ID
|
52
|
|
- dutyList: [], //责任科室列表
|
53
|
|
- dutyId: undefined, //责任科室ID
|
54
|
|
- isAssignUser: 1, //工作组是否转派到人
|
55
|
|
- isAssignUserList: [
|
56
|
|
- { text: '是', value: 1 },
|
57
|
|
- { text: '否', value: 0 },
|
58
|
|
- ], //工作组是否转派到人选项
|
59
|
|
- reassignRemark: '',//退回原因
|
|
128
|
+ requesterList: [], //报修人列表
|
|
129
|
+ sourceList: [], //故障来源列表
|
|
130
|
+ priorityList: [], //优先级列表
|
60
|
131
|
})
|
61
|
132
|
|
62
|
133
|
// 是否提交
|
63
|
134
|
const isSubmit = ref(false)
|
64
|
135
|
|
65
|
|
- // 重置
|
66
|
|
- function reset(){
|
67
|
|
- dataInfo.branchId = undefined;
|
68
|
|
- dataInfo.branchList = [];
|
69
|
|
-
|
70
|
|
- dataInfo.dutyId = undefined;
|
71
|
|
- dataInfo.dutyList = [];
|
72
|
|
-
|
73
|
|
- dataInfo.groupId = undefined;
|
74
|
|
- dataInfo.groupList = [];
|
75
|
|
-
|
76
|
|
- dataInfo.userId = undefined;
|
77
|
|
- dataInfo.userList = [];
|
78
|
|
-
|
79
|
|
- dataInfo.isAssignUser = 1;
|
|
136
|
+ // 上传处理图片成功
|
|
137
|
+ function handlerImgSuccess(e){
|
|
138
|
+ dataInfo.handlerImgList.forEach(v => {
|
|
139
|
+ v.url = v.path;
|
|
140
|
+ })
|
|
141
|
+ console.log(dataInfo.handlerImgList);
|
|
142
|
+ // let handlerOrder$ = handlerOrder();
|
|
143
|
+ // let requestList = [handlerOrder$];
|
|
144
|
+ // dataInfo.handlerImgList.forEach(v => {
|
|
145
|
+ // let handlerOrderImg$ = handlerOrderImg(v);
|
|
146
|
+ // requestList.push(handlerOrderImg$);
|
|
147
|
+ // })
|
80
|
148
|
|
81
|
|
- dataInfo.reassignRemark = '';
|
|
149
|
+ // Promise.all(requestList).then(resList => {
|
|
150
|
+ // uni.hideLoading();
|
|
151
|
+ // console.log(resList);
|
|
152
|
+ // if(resList[0].state == 200){
|
|
153
|
+ // uni.showToast({
|
|
154
|
+ // icon: 'none',
|
|
155
|
+ // title: '处理成功',
|
|
156
|
+ // mask: true,
|
|
157
|
+ // });
|
|
158
|
+ // setTimeout(() => {
|
|
159
|
+ // uni.reLaunch({
|
|
160
|
+ // url: '/pages/incidentList/incidentList',
|
|
161
|
+ // })
|
|
162
|
+ // }, 1500)
|
|
163
|
+ // }else{
|
|
164
|
+ // uni.showToast({
|
|
165
|
+ // icon: 'none',
|
|
166
|
+ // title: resList[0].msg || '请求数据失败!'
|
|
167
|
+ // });
|
|
168
|
+ // }
|
|
169
|
+ // })
|
82
|
170
|
}
|
83
|
171
|
|
84
|
|
- // 获取事件详情
|
85
|
|
- function getIncidentDetail(){
|
86
|
|
- uni.showLoading({
|
87
|
|
- title: "加载中",
|
88
|
|
- mask: true,
|
89
|
|
- });
|
90
|
|
-
|
91
|
|
- api_incidentDetail(dataInfo.incidentId).then(res => {
|
92
|
|
- uni.hideLoading();
|
93
|
|
- if(res.status == 200){
|
94
|
|
- dataInfo.incidentData = res.data || {};
|
95
|
|
-
|
96
|
|
- initForm()
|
97
|
|
- }else{
|
98
|
|
- uni.showToast({
|
99
|
|
- icon: 'none',
|
100
|
|
- title: res.msg || '请求数据失败!'
|
101
|
|
- });
|
102
|
|
- }
|
|
172
|
+ // 上传处理图片失败
|
|
173
|
+ function handlerImgFail(e){
|
|
174
|
+ dataInfo.handlerImgList.forEach(v => {
|
|
175
|
+ v.url = v.path;
|
|
176
|
+ })
|
|
177
|
+ console.log(dataInfo.handlerImgList);
|
|
178
|
+ }
|
|
179
|
+
|
|
180
|
+ // 选择上传图片
|
|
181
|
+ function handlerImgSelect(e){
|
|
182
|
+ dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
|
|
183
|
+ console.log(dataInfo.handlerImgList);
|
|
184
|
+ }
|
|
185
|
+
|
|
186
|
+ // 删除上传图片
|
|
187
|
+ function handlerImgDelete(e){
|
|
188
|
+ dataInfo.handlerImgList = dataInfo.handlerImgList.filter(v => e.tempFile.uuid != v.uuid);
|
|
189
|
+ console.log(dataInfo.handlerImgList);
|
|
190
|
+ }
|
|
191
|
+
|
|
192
|
+ // 选择故障现象
|
|
193
|
+ function selectCategory(){
|
|
194
|
+ incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
|
|
195
|
+ uni.navigateTo({
|
|
196
|
+ url: `/pages/categoryOne/categoryOne`
|
|
197
|
+ })
|
|
198
|
+ }
|
|
199
|
+
|
|
200
|
+ // 选择楼栋楼层
|
|
201
|
+ function selectAreaPlace(){
|
|
202
|
+ incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
|
|
203
|
+ uni.navigateTo({
|
|
204
|
+ url: `/pages/searchArea/searchArea`
|
|
205
|
+ })
|
|
206
|
+ }
|
|
207
|
+
|
|
208
|
+ // 跳转到搜索报修科室
|
|
209
|
+ function selectDepartment(){
|
|
210
|
+ incidentBuildStore.setIncidentBuildData(incidentData, 'buildIncident');
|
|
211
|
+ uni.navigateTo({
|
|
212
|
+ url: `/pages/searchDept/searchDept`
|
103
|
213
|
})
|
104
|
214
|
}
|
105
|
215
|
|
|
@@ -124,15 +234,12 @@
|
124
|
234
|
|
125
|
235
|
if(loginUserStore.loginUser.user.duty){
|
126
|
236
|
// 当前的所属责任科室
|
127
|
|
- dataInfo.branchId = loginUserStore.loginUser.user.duty.branch;
|
128
|
|
- changeBranch();
|
129
|
|
-
|
130
|
|
- dataInfo.dutyId = loginUserStore.loginUser.user.duty.id;
|
131
|
|
- changeDuty();
|
|
237
|
+ incidentData.branch = loginUserStore.loginUser.user.duty.branch;
|
132
|
238
|
}else if(loginUserStore.loginUser.user.branch){
|
133
|
239
|
// 当前的所属院区
|
134
|
|
- dataInfo.branchId = loginUserStore.loginUser.user.branch.id;
|
|
240
|
+ incidentData.branch = loginUserStore.loginUser.user.branch.id;
|
135
|
241
|
}
|
|
242
|
+
|
136
|
243
|
}else{
|
137
|
244
|
uni.showToast({
|
138
|
245
|
icon: 'none',
|
|
@@ -142,8 +249,8 @@
|
142
|
249
|
})
|
143
|
250
|
}
|
144
|
251
|
|
145
|
|
- // 获取责任科室列表
|
146
|
|
- function getDutys(){
|
|
252
|
+ // 获取报修人列表
|
|
253
|
+ function getRequesters(){
|
147
|
254
|
uni.showLoading({
|
148
|
255
|
title: "加载中",
|
149
|
256
|
mask: true,
|
|
@@ -151,18 +258,19 @@
|
151
|
258
|
let postData = {
|
152
|
259
|
"idx": 0,
|
153
|
260
|
"sum": 9999,
|
154
|
|
- "dutyDepartment": {
|
155
|
|
- "branch": dataInfo.branchId,
|
|
261
|
+ "user": {
|
|
262
|
+ "engineer": undefined,
|
156
|
263
|
}
|
157
|
264
|
};
|
158
|
|
- api_dutyDepartment(postData).then(res => {
|
|
265
|
+ api_user(postData).then(res => {
|
159
|
266
|
uni.hideLoading();
|
160
|
267
|
if(res.status == 200){
|
161
|
268
|
res.list = res.list || [];
|
162
|
|
- dataInfo.dutyList = res.list.map(v => ({
|
163
|
|
- text: v.dept,
|
|
269
|
+ dataInfo.requesterList = res.list.map(v => ({
|
|
270
|
+ text: v.name,
|
164
|
271
|
value: v.id,
|
165
|
272
|
}));
|
|
273
|
+
|
166
|
274
|
}else{
|
167
|
275
|
uni.showToast({
|
168
|
276
|
icon: 'none',
|
|
@@ -172,183 +280,74 @@
|
172
|
280
|
})
|
173
|
281
|
}
|
174
|
282
|
|
175
|
|
- // 获取工作组列表
|
176
|
|
- function getGroups(){
|
|
283
|
+ // 获取故障来源列表
|
|
284
|
+ function getSources(){
|
177
|
285
|
uni.showLoading({
|
178
|
286
|
title: "加载中",
|
179
|
287
|
mask: true,
|
180
|
288
|
});
|
181
|
|
-
|
182
|
|
- let duty = undefined;
|
183
|
|
-
|
184
|
289
|
let postData = {
|
185
|
|
- "idx": 0,
|
186
|
|
- "sum": 9999,
|
187
|
|
- "group": {
|
188
|
|
- "duty": duty,
|
189
|
|
- "selectType": "nouser"
|
190
|
|
- }
|
|
290
|
+ "key": 'incident_source',
|
|
291
|
+ "type": "list",
|
191
|
292
|
};
|
192
|
|
- api_group(postData).then(res => {
|
|
293
|
+ api_getDictionary(postData).then(res => {
|
193
|
294
|
uni.hideLoading();
|
194
|
|
- if(res.status == 200){
|
195
|
|
- res.list = res.list || [];
|
196
|
|
- dataInfo.groupList = res.list.map(v => ({
|
197
|
|
- text: v.groupName,
|
198
|
|
- value: v.id,
|
199
|
|
- }));
|
200
|
|
- }else{
|
201
|
|
- uni.showToast({
|
202
|
|
- icon: 'none',
|
203
|
|
- title: res.msg || '请求数据失败!'
|
204
|
|
- });
|
205
|
|
- }
|
|
295
|
+ res = res || [];
|
|
296
|
+ dataInfo.sourceList = res.map(v => ({
|
|
297
|
+ text: v.name,
|
|
298
|
+ value: v.id,
|
|
299
|
+ }));
|
206
|
300
|
})
|
207
|
301
|
}
|
208
|
302
|
|
209
|
|
- // 获取用户列表
|
210
|
|
- function getUsers(){
|
|
303
|
+ // 获取优先级列表
|
|
304
|
+ function getPrioritys(){
|
211
|
305
|
uni.showLoading({
|
212
|
306
|
title: "加载中",
|
213
|
307
|
mask: true,
|
214
|
308
|
});
|
215
|
309
|
let postData = {
|
216
|
|
- "idx": 0,
|
217
|
|
- "sum": 9999,
|
218
|
|
- "user": {
|
219
|
|
- "groupdata":{
|
220
|
|
- "id": dataInfo.groupId,
|
221
|
|
- },
|
222
|
|
- "roledata": {
|
223
|
|
- "rolecode": "first-line support"
|
224
|
|
- },
|
225
|
|
- "roledata2": {
|
226
|
|
- "rolecode": "second-line support"
|
227
|
|
- },
|
228
|
|
- "selectType": "1",
|
229
|
|
- "selectDetails": 1,
|
230
|
|
- "simple": true,
|
231
|
|
- "engineer": 1
|
232
|
|
- }
|
|
310
|
+ "key": 'incident_priority',
|
|
311
|
+ "type": "list",
|
233
|
312
|
};
|
234
|
|
- api_user(postData).then(res => {
|
|
313
|
+ api_getDictionary(postData).then(res => {
|
235
|
314
|
uni.hideLoading();
|
236
|
|
- if(res.status == 200){
|
237
|
|
- res.list = res.list || [];
|
238
|
|
- dataInfo.userList = res.list.map(v => ({
|
239
|
|
- text: v.name,
|
240
|
|
- value: v.id,
|
241
|
|
- }));
|
242
|
|
- }else{
|
243
|
|
- uni.showToast({
|
244
|
|
- icon: 'none',
|
245
|
|
- title: res.msg || '请求数据失败!'
|
246
|
|
- });
|
247
|
|
- }
|
|
315
|
+ res = res || [];
|
|
316
|
+ dataInfo.priorityList = res.map(v => ({
|
|
317
|
+ text: v.name,
|
|
318
|
+ value: v.id,
|
|
319
|
+ }));
|
248
|
320
|
})
|
249
|
321
|
}
|
250
|
322
|
|
251
|
323
|
// 选择院区
|
252
|
|
- function changeBranch(){
|
253
|
|
- dataInfo.dutyId = undefined;
|
254
|
|
- dataInfo.dutyList = [];
|
255
|
|
-
|
256
|
|
- dataInfo.groupId = undefined;
|
257
|
|
- dataInfo.groupList = [];
|
258
|
|
-
|
259
|
|
- dataInfo.userId = undefined;
|
260
|
|
- dataInfo.userList = [];
|
261
|
|
- getDutys();
|
262
|
|
- }
|
|
324
|
+ function changeBranch(){}
|
263
|
325
|
|
264
|
|
- // 选择责任科室
|
265
|
|
- function changeDuty(){
|
266
|
|
- dataInfo.groupId = undefined;
|
267
|
|
- dataInfo.groupList = [];
|
|
326
|
+ // 处理提交事件
|
|
327
|
+ function handlerOrder(){
|
|
328
|
+ let postData = {
|
|
329
|
+ incident: dataInfo.incidentData,
|
|
330
|
+ }
|
268
|
331
|
|
269
|
|
- dataInfo.userId = undefined;
|
270
|
|
- dataInfo.userList = [];
|
271
|
|
- getGroups();
|
272
|
|
- }
|
273
|
|
-
|
274
|
|
- // 选择工作组
|
275
|
|
- function changeGroup(){
|
276
|
|
- dataInfo.userId = undefined;
|
277
|
|
- dataInfo.userList = [];
|
278
|
|
- getUsers();
|
|
332
|
+ postData.incident.handleDescription = dataInfo.handleDescription;
|
|
333
|
+ postData.incident.handleCategory = {id: dataInfo.handleCategory};
|
|
334
|
+ postData.incident.closecode = {id: dataInfo.closecode};
|
|
335
|
+ postData.incident.category = dataInfo.category;
|
|
336
|
+ postData.incident.synergetic = dataInfo.synergetic;
|
|
337
|
+
|
|
338
|
+ return api_incidentTask('accept', postData);
|
279
|
339
|
}
|
280
|
340
|
|
281
|
|
- // 选择是否转派到人
|
282
|
|
- function changeIsAssignUser(){
|
283
|
|
- dataInfo.userId = undefined;
|
|
341
|
+ // 处理图片
|
|
342
|
+ function handlerOrderImg(imgObj){
|
|
343
|
+ return uploadFile(imgObj, 'incident', dataInfo.incidentId)
|
284
|
344
|
}
|
285
|
345
|
|
286
|
346
|
// 提交
|
287
|
347
|
function submit(){
|
288
|
348
|
isSubmit.value = true;
|
289
|
|
-
|
290
|
|
- }
|
291
|
|
-
|
292
|
|
- // 转派提交
|
293
|
|
- function submitRedeploy(){
|
294
|
|
- if(!dataInfo.groupId){
|
295
|
|
- uni.showToast({
|
296
|
|
- icon: 'none',
|
297
|
|
- title: '请选择工作组'
|
298
|
|
- });
|
299
|
|
- return;
|
300
|
|
- }
|
301
|
|
-
|
302
|
|
- if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
|
303
|
|
- uni.showToast({
|
304
|
|
- icon: 'none',
|
305
|
|
- title: '请选择指派对象'
|
306
|
|
- });
|
307
|
|
- return;
|
308
|
|
- }
|
309
|
|
-
|
310
|
|
- uni.showLoading({
|
311
|
|
- title: "加载中",
|
312
|
|
- mask: true,
|
313
|
|
- });
|
314
|
|
-
|
315
|
|
- let postData = {
|
316
|
|
- incident: dataInfo.incidentData,
|
317
|
|
- }
|
318
|
|
-
|
319
|
|
- if(dataInfo.userId){
|
320
|
|
- // 派人
|
321
|
|
- postData.incident.assignee = dataInfo.userId;
|
322
|
|
- } else {
|
323
|
|
- // 派组
|
324
|
|
- postData.incident.candidateGroups = dataInfo.groupId;
|
325
|
|
- }
|
326
|
|
-
|
327
|
|
- // api_incidentTask('' postData).then(res => {
|
328
|
|
- // uni.hideLoading();
|
329
|
|
- // if(res.state == 200){
|
330
|
|
- // uni.showToast({
|
331
|
|
- // icon: 'none',
|
332
|
|
- // title: '转派成功',
|
333
|
|
- // mask: true,
|
334
|
|
- // });
|
335
|
|
- // setTimeout(() => {
|
336
|
|
- // uni.reLaunch({
|
337
|
|
- // url: '/pages/incidentList/incidentList',
|
338
|
|
- // })
|
339
|
|
- // }, 1500)
|
340
|
|
- // }else{
|
341
|
|
- // uni.showToast({
|
342
|
|
- // icon: 'none',
|
343
|
|
- // title: res.msg || '请求数据失败!'
|
344
|
|
- // });
|
345
|
|
- // }
|
346
|
|
- // })
|
347
|
|
- }
|
348
|
|
-
|
349
|
|
- // 指派提交
|
350
|
|
- function submitAssign(){
|
351
|
|
- if(!dataInfo.branchId){
|
|
349
|
+ console.log(dataInfo);
|
|
350
|
+ if(!dataInfo.branch){
|
352
|
351
|
uni.showToast({
|
353
|
352
|
icon: 'none',
|
354
|
353
|
title: '请选择院区'
|
|
@@ -356,115 +355,89 @@
|
356
|
355
|
return;
|
357
|
356
|
}
|
358
|
357
|
|
359
|
|
- if(!dataInfo.dutyId){
|
|
358
|
+ if(!dataInfo.department){
|
360
|
359
|
uni.showToast({
|
361
|
360
|
icon: 'none',
|
362
|
|
- title: '请选择责任科室'
|
|
361
|
+ title: '请选择报修科室'
|
363
|
362
|
});
|
364
|
363
|
return;
|
365
|
364
|
}
|
366
|
365
|
|
367
|
|
- if(!dataInfo.groupId){
|
|
366
|
+ if(!dataInfo.contactsInformation.trim()){
|
368
|
367
|
uni.showToast({
|
369
|
368
|
icon: 'none',
|
370
|
|
- title: '请选择工作组'
|
|
369
|
+ title: '请填写联系电话'
|
371
|
370
|
});
|
372
|
371
|
return;
|
373
|
372
|
}
|
374
|
373
|
|
375
|
|
- if(dataInfo.isAssignUser == 1 && !dataInfo.userId){
|
|
374
|
+ if(!dataInfo.category){
|
376
|
375
|
uni.showToast({
|
377
|
376
|
icon: 'none',
|
378
|
|
- title: '请选择指派对象'
|
|
377
|
+ title: '请选择故障现象'
|
379
|
378
|
});
|
380
|
379
|
return;
|
381
|
380
|
}
|
382
|
381
|
|
383
|
|
- uni.showLoading({
|
384
|
|
- title: "加载中",
|
385
|
|
- mask: true,
|
386
|
|
- });
|
387
|
|
-
|
388
|
|
- let postData = {
|
389
|
|
- incident: dataInfo.incidentData,
|
390
|
|
- }
|
391
|
|
-
|
392
|
|
- if(dataInfo.userId){
|
393
|
|
- // 派人
|
394
|
|
- postData.incident.assignee = dataInfo.userId;
|
395
|
|
- } else {
|
396
|
|
- // 派组
|
397
|
|
- postData.incident.candidateGroups = dataInfo.groupId;
|
398
|
|
- }
|
399
|
|
-
|
400
|
|
- // api_incidentTask('', postData).then(res => {
|
401
|
|
- // uni.hideLoading();
|
402
|
|
- // if(res.state == 200){
|
403
|
|
- // uni.showToast({
|
404
|
|
- // icon: 'none',
|
405
|
|
- // title: '指派成功',
|
406
|
|
- // mask: true,
|
407
|
|
- // });
|
408
|
|
- // setTimeout(() => {
|
409
|
|
- // uni.reLaunch({
|
410
|
|
- // url: '/pages/incidentList/incidentList',
|
411
|
|
- // })
|
412
|
|
- // }, 1500)
|
413
|
|
- // }else{
|
414
|
|
- // uni.showToast({
|
415
|
|
- // icon: 'none',
|
416
|
|
- // title: res.msg || '请求数据失败!'
|
417
|
|
- // });
|
418
|
|
- // }
|
419
|
|
- // })
|
420
|
|
- }
|
421
|
|
-
|
422
|
|
- // 退回提交
|
423
|
|
- function submitReassign(){
|
424
|
|
- if(!dataInfo.reassignRemark.trim()){
|
|
382
|
+ if(!dataInfo.handleDescription.trim()){
|
425
|
383
|
uni.showToast({
|
426
|
384
|
icon: 'none',
|
427
|
|
- title: '请填写退回原因'
|
|
385
|
+ title: '请填写故障描述'
|
428
|
386
|
});
|
429
|
387
|
return;
|
430
|
388
|
}
|
|
389
|
+ console.log(dataInfo.handlerImgList)
|
|
390
|
+ incidentBuildStore.setIncidentBuildData(dataInfo, 'buildIncident');
|
431
|
391
|
|
432
|
|
- uni.showLoading({
|
433
|
|
- title: "加载中",
|
434
|
|
- mask: true,
|
435
|
|
- });
|
436
|
|
-
|
437
|
|
- let postData = {
|
438
|
|
- incident: dataInfo.incidentData,
|
439
|
|
- }
|
440
|
|
-
|
441
|
|
- postData.incident.reassignRemark = dataInfo.reassignRemark;
|
442
|
|
-
|
443
|
|
- // api_incidentTask('', postData).then(res => {
|
444
|
|
- // uni.hideLoading();
|
445
|
|
- // if(res.state == 200){
|
446
|
|
- // uni.showToast({
|
447
|
|
- // icon: 'none',
|
448
|
|
- // title: '退回成功',
|
449
|
|
- // mask: true,
|
450
|
|
- // });
|
451
|
|
- // setTimeout(() => {
|
452
|
|
- // uni.reLaunch({
|
453
|
|
- // url: '/pages/incidentList/incidentList',
|
454
|
|
- // })
|
455
|
|
- // }, 1500)
|
456
|
|
- // }else{
|
457
|
|
- // uni.showToast({
|
458
|
|
- // icon: 'none',
|
459
|
|
- // title: res.msg || '请求数据失败!'
|
460
|
|
- // });
|
461
|
|
- // }
|
462
|
|
- // })
|
|
392
|
+ // uni.showLoading({
|
|
393
|
+ // title: "加载中",
|
|
394
|
+ // mask: true,
|
|
395
|
+ // });
|
|
396
|
+ // if(dataInfo.handlerImgList.length){
|
|
397
|
+ // // 有图片
|
|
398
|
+ // handlerImgRef.value.upload();
|
|
399
|
+ // }else{
|
|
400
|
+ // // 没有图片
|
|
401
|
+ // let handlerOrder$ = handlerOrder();
|
|
402
|
+ // let requestList = [handlerOrder$];
|
|
403
|
+ // Promise.all(requestList).then(resList => {
|
|
404
|
+ // uni.hideLoading();
|
|
405
|
+ // console.log(resList);
|
|
406
|
+ // if(resList[0].state == 200){
|
|
407
|
+ // uni.showToast({
|
|
408
|
+ // icon: 'none',
|
|
409
|
+ // title: '处理成功',
|
|
410
|
+ // mask: true,
|
|
411
|
+ // });
|
|
412
|
+ // setTimeout(() => {
|
|
413
|
+ // uni.reLaunch({
|
|
414
|
+ // url: '/pages/incidentList/incidentList',
|
|
415
|
+ // })
|
|
416
|
+ // }, 1500)
|
|
417
|
+ // }else{
|
|
418
|
+ // uni.showToast({
|
|
419
|
+ // icon: 'none',
|
|
420
|
+ // title: resList[0].msg || '请求数据失败!'
|
|
421
|
+ // });
|
|
422
|
+ // }
|
|
423
|
+ // })
|
|
424
|
+ // }
|
463
|
425
|
}
|
464
|
426
|
|
465
|
427
|
onLoad((option) => {
|
466
|
|
- dataInfo.incidentId = option.incidentId;
|
467
|
|
- getIncidentDetail();
|
|
428
|
+ if(incidentBuildStore.incidentBuild.data){
|
|
429
|
+ Object.assign(incidentData, incidentBuildStore.incidentBuild.data);
|
|
430
|
+ incidentBuildStore.clearIncidentBuildData();
|
|
431
|
+
|
|
432
|
+ // 修改报修科室,则回显楼栋,楼层,详细地址,联系电话
|
|
433
|
+ incidentData.place = incidentData.department.place || undefined;
|
|
434
|
+ incidentData.houseNumber = incidentData.department.address || '';
|
|
435
|
+ incidentData.contactsInformation = incidentData.department.phone || '';
|
|
436
|
+ }
|
|
437
|
+ getBranchs();
|
|
438
|
+ getRequesters();
|
|
439
|
+ getSources();
|
|
440
|
+ getPrioritys();
|
468
|
441
|
})
|
469
|
442
|
</script>
|
470
|
443
|
|
|
@@ -475,7 +448,6 @@
|
475
|
448
|
flex-direction: column;
|
476
|
449
|
justify-content: space-between;
|
477
|
450
|
.body{
|
478
|
|
- margin-top: 88rpx;
|
479
|
451
|
padding: 0 24rpx;
|
480
|
452
|
box-sizing: border-box;
|
481
|
453
|
flex: 1;
|
|
@@ -511,10 +483,33 @@
|
511
|
483
|
display: flex;
|
512
|
484
|
align-items: center;
|
513
|
485
|
margin-right: 12rpx;
|
|
486
|
+ flex-shrink: 0;
|
514
|
487
|
&.select{
|
515
|
488
|
width: calc(5em + 20rpx);
|
516
|
489
|
}
|
517
|
490
|
}
|
|
491
|
+ .value{
|
|
492
|
+ width: 100%;
|
|
493
|
+ &.category{
|
|
494
|
+ width: 100%;
|
|
495
|
+ display: flex;
|
|
496
|
+ justify-content: space-between;
|
|
497
|
+ align-items: center;
|
|
498
|
+ .categoryName{
|
|
499
|
+ font-size: 26rpx;
|
|
500
|
+ color: #555;
|
|
501
|
+ flex: 1;
|
|
502
|
+ }
|
|
503
|
+ .newicon-weibiaoti2010104{
|
|
504
|
+ color: $uni-primary;
|
|
505
|
+ margin-left: 24rpx;
|
|
506
|
+ }
|
|
507
|
+ }
|
|
508
|
+ .imgTips{
|
|
509
|
+ color: #909399;
|
|
510
|
+ font-size: 22rpx;
|
|
511
|
+ }
|
|
512
|
+ }
|
518
|
513
|
}
|
519
|
514
|
}
|
520
|
515
|
}
|