|
|
@@ -74,7 +74,8 @@
|
|
74
|
74
|
v-model="arbitrateRecord.verificaOpinion" />
|
|
75
|
75
|
</el-form-item> -->
|
|
76
|
76
|
<el-form-item label="笔录内容:" prop="responCrossOpin">
|
|
77
|
|
- <el-input type="textarea" :autosize="{ minRows: 6 }" v-model="arbitrateRecord.responCrossOpin" placeholder="请输入" />
|
|
|
77
|
+ <!-- <el-input type="textarea" :autosize="{ minRows: 6 }" v-model="arbitrateRecord.responCrossOpin" placeholder="请输入" /> -->
|
|
|
78
|
+ <el-input type="textarea" :autosize="{ minRows: 6 }" v-model="arbitrateRecordt.responCrossOpin" placeholder="请输入" />
|
|
78
|
79
|
</el-form-item>
|
|
79
|
80
|
<el-form-item label="审核意见:" prop="checkOpinion" v-if="flag == 2">
|
|
80
|
81
|
<el-input type="textarea" autosize placeholder="请输入内容" v-model="arbitrateRecord.checkOpinion" />
|
|
|
@@ -111,9 +112,11 @@ export default {
|
|
111
|
112
|
data() {
|
|
112
|
113
|
return {
|
|
113
|
114
|
// key: value
|
|
|
115
|
+ arbitrateRecordt: {},
|
|
114
|
116
|
form: {},
|
|
115
|
117
|
arbitrateRecord: {
|
|
116
|
|
- checkOpinion:"同意"
|
|
|
118
|
+ // checkOpinion:"同意"
|
|
|
119
|
+ checkOpinion:""
|
|
117
|
120
|
},
|
|
118
|
121
|
// 表单校验
|
|
119
|
122
|
rules: {
|
|
|
@@ -187,15 +190,15 @@ export default {
|
|
187
|
190
|
(this.respondenPathArr = []), //被申请人
|
|
188
|
191
|
(this.awardFileArr = []), //裁决书
|
|
189
|
192
|
(this.awardPathArr = []), //裁决书
|
|
190
|
|
- setTimeout(() => {
|
|
|
193
|
+ // setTimeout(() => {
|
|
191
|
194
|
this.form = this.detailform;
|
|
192
|
|
- console.log(this.detailform)
|
|
193
|
|
- if(this.form.arbitrateRecord.checkOpinion == null ){
|
|
194
|
|
- this.form.arbitrateRecord.checkOpinion = '同意'
|
|
195
|
|
- }
|
|
196
|
|
- this.arbitrateRecord = this.form.arbitrateRecord;
|
|
|
195
|
+ // if(this.form.arbitrateRecord && this.form.arbitrateRecord.checkOpinion == null ){
|
|
|
196
|
+ // this.form.arbitrateRecord.checkOpinion = '同意';
|
|
|
197
|
+ this.arbitrateRecord.checkOpinion = '';
|
|
|
198
|
+ // }
|
|
|
199
|
+ // this.arbitrateRecord = this.form.arbitrateRecord;
|
|
197
|
200
|
this.evidenceFile(this.form);
|
|
198
|
|
- }, 1000);
|
|
|
201
|
+ // }, 1000);
|
|
199
|
202
|
}
|
|
200
|
203
|
},
|
|
201
|
204
|
},
|
|
|
@@ -204,6 +207,12 @@ export default {
|
|
204
|
207
|
// 申请人裁决书
|
|
205
|
208
|
evidenceFile(val) {
|
|
206
|
209
|
if (val) {
|
|
|
210
|
+ this.applicantFileArr = [];
|
|
|
211
|
+ this.applicantPathArr = [];
|
|
|
212
|
+ this.respondentFileArr = [];
|
|
|
213
|
+ this.respondenPathArr = [];
|
|
|
214
|
+ this.awardFileArr = [];
|
|
|
215
|
+ this.awardPathArr = [];
|
|
207
|
216
|
this.bookFileArr = [];
|
|
208
|
217
|
this.bookPathArr = [];
|
|
209
|
218
|
val.caseAttachList.forEach((item) => {
|
|
|
@@ -214,8 +223,6 @@ export default {
|
|
214
|
223
|
this.respondentFileArr.push(item.annexName);
|
|
215
|
224
|
this.respondenPathArr.push(item.annexPath);
|
|
216
|
225
|
} else if (item.annexType == 3) {
|
|
217
|
|
- this.awardFileArr = [];
|
|
218
|
|
- this.awardPathArr = [];
|
|
219
|
226
|
this.awardFileArr.push(item.annexName);
|
|
220
|
227
|
this.awardPathArr.push(item.annexPath);
|
|
221
|
228
|
} else if (item.annexType == 7) {
|