|
@@ -24,8 +24,8 @@
|
24
|
24
|
<uni-data-select class="value" v-model="dataInfo.handleCategory" :localdata="dataInfo.handleCategoryList" :clear="false" placeholder="请选择处理方式" :class="{formRed: isSubmit && !dataInfo.handleCategory}"></uni-data-select>
|
25
|
25
|
</view>
|
26
|
26
|
<view class="form_item" v-if="dataInfo.category.hasSimple != 1">
|
27
|
|
- <view class="title select"><text class="required newicon newicon-bitian"></text>关闭代码:</view>
|
28
|
|
- <uni-data-select class="value" v-model="dataInfo.closecode" :localdata="dataInfo.closecodeList" :clear="false" placeholder="请选择关闭代码" :class="{formRed: isSubmit && !dataInfo.closecode}"></uni-data-select>
|
|
27
|
+ <view class="title select"><text class="required newicon newicon-bitian"></text>处理结果:</view>
|
|
28
|
+ <uni-data-select class="value" v-model="dataInfo.closecode" :localdata="dataInfo.closecodeList" :clear="false" placeholder="请选择处理结果" :class="{formRed: isSubmit && !dataInfo.closecode}"></uni-data-select>
|
29
|
29
|
</view>
|
30
|
30
|
<view class="form_item">
|
31
|
31
|
<view class="title"><text class="required newicon newicon-bitian transparent"></text>协同人员:</view>
|
|
@@ -136,8 +136,8 @@
|
136
|
136
|
handleDescription: '',//解决方案
|
137
|
137
|
handleCategory: undefined,//处理方式
|
138
|
138
|
handleCategoryList: [],//处理方式列表
|
139
|
|
- closecode: undefined,//关闭代码
|
140
|
|
- closecodeList: [],//关闭代码列表
|
|
139
|
+ closecode: undefined,//处理结果
|
|
140
|
+ closecodeList: [],//处理结果列表
|
141
|
141
|
handlerImgList: [],//处理图片列表
|
142
|
142
|
category: {},//故障现象
|
143
|
143
|
synergetic: [],//协同人员
|
|
@@ -391,8 +391,8 @@
|
391
|
391
|
dataInfo.handleDescription = '';//解决方案
|
392
|
392
|
dataInfo.handleCategory = undefined;//处理方式
|
393
|
393
|
dataInfo.handleCategoryList = [];//处理方式列表
|
394
|
|
- dataInfo.closecode = undefined;//关闭代码
|
395
|
|
- dataInfo.closecodeList = [];//关闭代码列表
|
|
394
|
+ dataInfo.closecode = undefined;//处理结果
|
|
395
|
+ dataInfo.closecodeList = [];//处理结果列表
|
396
|
396
|
dataInfo.handlerImgList = [];//处理图片列表
|
397
|
397
|
dataInfo.category = {};//故障现象
|
398
|
398
|
dataInfo.synergetic = [];//协同人员
|
|
@@ -530,7 +530,7 @@
|
530
|
530
|
})
|
531
|
531
|
}
|
532
|
532
|
|
533
|
|
- // 获取关闭代码列表
|
|
533
|
+ // 获取处理结果列表
|
534
|
534
|
function getClosecodes(){
|
535
|
535
|
uni.showLoading({
|
536
|
536
|
title: "加载中",
|
|
@@ -690,7 +690,7 @@
|
690
|
690
|
if(!dataInfo.closecode && dataInfo.category.hasSimple != 1){
|
691
|
691
|
uni.showToast({
|
692
|
692
|
icon: 'none',
|
693
|
|
- title: '请选择关闭代码'
|
|
693
|
+ title: '请选择处理结果'
|
694
|
694
|
});
|
695
|
695
|
return;
|
696
|
696
|
}
|