|
|
@@ -93,7 +93,10 @@
|
|
93
|
93
|
</el-col> -->
|
|
94
|
94
|
<el-col :span="12">
|
|
95
|
95
|
<el-form-item label="案件状态:" prop="caseStatus">
|
|
96
|
|
- <el-input v-model="formData.caseStatusName" placeholder="请输入" />
|
|
|
96
|
+ <el-input
|
|
|
97
|
+ v-model="formData.caseStatusName"
|
|
|
98
|
+ placeholder="请输入"
|
|
|
99
|
+ />
|
|
97
|
100
|
</el-form-item>
|
|
98
|
101
|
</el-col>
|
|
99
|
102
|
<el-col :span="12">
|
|
|
@@ -123,7 +126,7 @@
|
|
123
|
126
|
</el-col>
|
|
124
|
127
|
</el-form>
|
|
125
|
128
|
<el-form ref="form2" :model="form2" label-width="150px">
|
|
126
|
|
- <el-col :span="24">
|
|
|
129
|
+ <!-- <el-col :span="24">
|
|
127
|
130
|
<el-form-item
|
|
128
|
131
|
label="案情描述:"
|
|
129
|
132
|
prop="accidentDescription"
|
|
|
@@ -143,7 +146,7 @@
|
|
143
|
146
|
>
|
|
144
|
147
|
</el-input>
|
|
145
|
148
|
</el-form-item>
|
|
146
|
|
- </el-col>
|
|
|
149
|
+ </el-col>
|
|
147
|
150
|
<el-col :span="24">
|
|
148
|
151
|
<el-form-item
|
|
149
|
152
|
label="仲裁结果:"
|
|
|
@@ -164,6 +167,111 @@
|
|
164
|
167
|
>
|
|
165
|
168
|
</el-input>
|
|
166
|
169
|
</el-form-item>
|
|
|
170
|
+ </el-col>-->
|
|
|
171
|
+ <el-col :span="24">
|
|
|
172
|
+ <el-form-item
|
|
|
173
|
+ label="经庭审质证,对各方提供的证据认定如下:"
|
|
|
174
|
+ prop="arbitrationResult"
|
|
|
175
|
+ :rules="[
|
|
|
176
|
+ {
|
|
|
177
|
+ required: true,
|
|
|
178
|
+ message: '请输入仲裁结果',
|
|
|
179
|
+ trigger: 'blur',
|
|
|
180
|
+ },
|
|
|
181
|
+ ]"
|
|
|
182
|
+ >
|
|
|
183
|
+ <el-input
|
|
|
184
|
+ type="textarea"
|
|
|
185
|
+ :autosize="{ minRows: 4}"
|
|
|
186
|
+ placeholder="请输入仲裁结果"
|
|
|
187
|
+ v-model="form2.arbitrationResult"
|
|
|
188
|
+ >
|
|
|
189
|
+ </el-input>
|
|
|
190
|
+ </el-form-item>
|
|
|
191
|
+ </el-col>
|
|
|
192
|
+ <el-col :span="24">
|
|
|
193
|
+ <el-form-item
|
|
|
194
|
+ label="仲裁庭经审理查明(写明仲裁庭认定的事实):"
|
|
|
195
|
+ prop="arbitrationResult"
|
|
|
196
|
+ :rules="[
|
|
|
197
|
+ {
|
|
|
198
|
+ required: true,
|
|
|
199
|
+ message: '请输入仲裁结果',
|
|
|
200
|
+ trigger: 'blur',
|
|
|
201
|
+ },
|
|
|
202
|
+ ]"
|
|
|
203
|
+ >
|
|
|
204
|
+ <el-input
|
|
|
205
|
+ type="textarea"
|
|
|
206
|
+ :autosize="{ minRows: 4}"
|
|
|
207
|
+ placeholder="请输入仲裁结果"
|
|
|
208
|
+ v-model="form2.arbitrationResult"
|
|
|
209
|
+ >
|
|
|
210
|
+ </el-input>
|
|
|
211
|
+ </el-form-item>
|
|
|
212
|
+ </el-col>
|
|
|
213
|
+ <el-col :span="24">
|
|
|
214
|
+ <el-form-item
|
|
|
215
|
+ label="综上所述:"
|
|
|
216
|
+ prop="arbitrationResult"
|
|
|
217
|
+ :rules="[
|
|
|
218
|
+ {
|
|
|
219
|
+ required: true,
|
|
|
220
|
+ message: '请输入仲裁结果',
|
|
|
221
|
+ trigger: 'blur',
|
|
|
222
|
+ },
|
|
|
223
|
+ ]"
|
|
|
224
|
+ >
|
|
|
225
|
+ <el-input
|
|
|
226
|
+ type="textarea"
|
|
|
227
|
+ autosize
|
|
|
228
|
+ placeholder="请输入仲裁结果"
|
|
|
229
|
+ v-model="form2.arbitrationResult"
|
|
|
230
|
+ >
|
|
|
231
|
+ </el-input>
|
|
|
232
|
+ </el-form-item>
|
|
|
233
|
+ </el-col>
|
|
|
234
|
+ <el-col :span="24">
|
|
|
235
|
+ <el-form-item
|
|
|
236
|
+ label="本庭认为:"
|
|
|
237
|
+ prop="arbitrationResult"
|
|
|
238
|
+ :rules="[
|
|
|
239
|
+ {
|
|
|
240
|
+ required: true,
|
|
|
241
|
+ message: '请输入仲裁结果',
|
|
|
242
|
+ trigger: 'blur',
|
|
|
243
|
+ },
|
|
|
244
|
+ ]"
|
|
|
245
|
+ >
|
|
|
246
|
+ <el-input
|
|
|
247
|
+ type="textarea"
|
|
|
248
|
+ autosize
|
|
|
249
|
+ placeholder="请输入仲裁结果"
|
|
|
250
|
+ v-model="form2.arbitrationResult"
|
|
|
251
|
+ >
|
|
|
252
|
+ </el-input>
|
|
|
253
|
+ </el-form-item>
|
|
|
254
|
+ </el-col>
|
|
|
255
|
+ <el-col :span="24">
|
|
|
256
|
+ <el-form-item
|
|
|
257
|
+ label="裁决如下:"
|
|
|
258
|
+ prop="arbitrationResult"
|
|
|
259
|
+ :rules="[
|
|
|
260
|
+ {
|
|
|
261
|
+ required: true,
|
|
|
262
|
+ message: '请输入仲裁结果',
|
|
|
263
|
+ trigger: 'blur',
|
|
|
264
|
+ },
|
|
|
265
|
+ ]"
|
|
|
266
|
+ >
|
|
|
267
|
+ <el-input
|
|
|
268
|
+ type="textarea"
|
|
|
269
|
+ autosize
|
|
|
270
|
+ placeholder="请输入仲裁结果"
|
|
|
271
|
+ v-model="form2.arbitrationResult"
|
|
|
272
|
+ >
|
|
|
273
|
+ </el-input>
|
|
|
274
|
+ </el-form-item>
|
|
167
|
275
|
</el-col>
|
|
168
|
276
|
</el-form>
|
|
169
|
277
|
<div slot="footer" class="dialog-footer">
|
|
|
@@ -190,7 +298,6 @@ export default {
|
|
190
|
298
|
handler(val) {
|
|
191
|
299
|
if (val) {
|
|
192
|
300
|
this.formData = this.form;
|
|
193
|
|
- console.log('this.formData',this.formData);
|
|
194
|
301
|
this.form2 = {};
|
|
195
|
302
|
}
|
|
196
|
303
|
},
|