|
|
@@ -170,16 +170,16 @@
|
|
170
|
170
|
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.applicantOpinion" placeholder="请输入" />
|
|
171
|
171
|
</el-form-item>
|
|
172
|
172
|
</el-col>
|
|
173
|
|
- <el-col :span="24">
|
|
|
173
|
+ <!-- <el-col :span="24">
|
|
174
|
174
|
<el-form-item label="查明本案事实" prop="caseFacts">
|
|
175
|
175
|
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.caseFacts" placeholder="请输入" />
|
|
176
|
176
|
</el-form-item>
|
|
177
|
|
- </el-col>
|
|
178
|
|
- <el-col :span="24">
|
|
|
177
|
+ </el-col> -->
|
|
|
178
|
+ <!-- <el-col :span="24">
|
|
179
|
179
|
<el-form-item label="本案争议焦点" prop="caseFocus">
|
|
180
|
180
|
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.caseFocus" placeholder="请输入" />
|
|
181
|
181
|
</el-form-item>
|
|
182
|
|
- </el-col>
|
|
|
182
|
+ </el-col> -->
|
|
183
|
183
|
<!-- <el-col :span="12">
|
|
184
|
184
|
<el-form-item label="被申请人质证意见:" prop="responCrossOpin" :rules="[
|
|
185
|
185
|
{
|
|
|
@@ -288,6 +288,7 @@ import { getUserProfile } from "@/api/system/user";
|
|
288
|
288
|
import {
|
|
289
|
289
|
writtenHear,
|
|
290
|
290
|
creatTrialRecord,
|
|
|
291
|
+ creatTrialRecordnew,
|
|
291
|
292
|
document,
|
|
292
|
293
|
} from "@/api/caseManagement/caseManagement.js";
|
|
293
|
294
|
|
|
|
@@ -397,7 +398,7 @@ export default {
|
|
397
|
398
|
submitForm() {
|
|
398
|
399
|
this.$refs["form2"].validate((valid) => {
|
|
399
|
400
|
if (valid) {
|
|
400
|
|
- creatTrialRecord({
|
|
|
401
|
+ creatTrialRecordnew({
|
|
401
|
402
|
caseAppliId: this.formData.id,
|
|
402
|
403
|
// evidenDetermi: this.form2.evidenDetermi,
|
|
403
|
404
|
// factDetermi: this.form2.factDetermi,
|
|
|
@@ -412,19 +413,20 @@ export default {
|
|
412
|
413
|
isAbsence: this.form2.isAbsence,
|
|
413
|
414
|
appliIsAbsen: this.form2.appliIsAbsen,
|
|
414
|
415
|
respondentOpinion: this.form2.respondentOpinion,
|
|
415
|
|
- applicantOpinion: this.form2.applicaCrossOpin,
|
|
416
|
|
- caseFacts: this.form2.caseFacts,
|
|
417
|
|
- caseFocus: this.form2.caseFocus
|
|
|
416
|
+ applicantOpinion: this.form2.applicantOpinion,
|
|
|
417
|
+ // caseFacts: this.form2.caseFacts,
|
|
|
418
|
+ // caseFocus: this.form2.caseFocus
|
|
418
|
419
|
})
|
|
419
|
420
|
.then((res) => {
|
|
420
|
|
- res.data.caseAttachList.forEach((item) => {
|
|
421
|
|
- if (item.annexType == 7) {
|
|
422
|
|
- this.recordArr.push({
|
|
423
|
|
- annexName: item.annexName,
|
|
424
|
|
- annexPath: item.annexPath,
|
|
425
|
|
- });
|
|
426
|
|
- }
|
|
427
|
|
- });
|
|
|
421
|
+ // console.log(res);
|
|
|
422
|
+ // res.data.caseAttachList.forEach((item) => {
|
|
|
423
|
+ // if (item.annexType == 7) {
|
|
|
424
|
+ // this.recordArr.push({
|
|
|
425
|
+ // annexName: item.annexName,
|
|
|
426
|
+ // annexPath: item.annexPath,
|
|
|
427
|
+ // });
|
|
|
428
|
+ // }
|
|
|
429
|
+ // });
|
|
428
|
430
|
this.$modal.msgSuccess("提交成功");
|
|
429
|
431
|
this.showsubmit = false;
|
|
430
|
432
|
this.closeArbitrationresults();
|