|
|
@@ -180,16 +180,16 @@
|
|
180
|
180
|
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.applicantOpinion" placeholder="请输入" />
|
|
181
|
181
|
</el-form-item>
|
|
182
|
182
|
</el-col>
|
|
183
|
|
- <el-col :span="24">
|
|
|
183
|
+ <!-- <el-col :span="24">
|
|
184
|
184
|
<el-form-item label="查明本案事实" prop="caseFacts">
|
|
185
|
185
|
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.caseFacts" placeholder="请输入" />
|
|
186
|
186
|
</el-form-item>
|
|
187
|
|
- </el-col>
|
|
188
|
|
- <el-col :span="24">
|
|
|
187
|
+ </el-col> -->
|
|
|
188
|
+ <!-- <el-col :span="24">
|
|
189
|
189
|
<el-form-item label="本案争议焦点" prop="caseFocus">
|
|
190
|
190
|
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.caseFocus" placeholder="请输入" />
|
|
191
|
191
|
</el-form-item>
|
|
192
|
|
- </el-col>
|
|
|
192
|
+ </el-col> -->
|
|
193
|
193
|
<!-- <el-col :span="12">
|
|
194
|
194
|
<el-form-item label="被申请人质证意见:" prop="responCrossOpin" :rules="[
|
|
195
|
195
|
{
|
|
|
@@ -298,6 +298,7 @@ import { getUserProfile } from "@/api/system/user";
|
|
298
|
298
|
import {
|
|
299
|
299
|
writtenHear,
|
|
300
|
300
|
creatTrialRecord,
|
|
|
301
|
+ creatTrialRecordnew,
|
|
301
|
302
|
document,
|
|
302
|
303
|
} from "@/api/caseManagement/caseManagement.js";
|
|
303
|
304
|
import { reserveConferenceList } from '@/api/meeting/index.js'
|
|
|
@@ -417,7 +418,7 @@ export default {
|
|
417
|
418
|
submitForm() {
|
|
418
|
419
|
this.$refs["form2"].validate((valid) => {
|
|
419
|
420
|
if (valid) {
|
|
420
|
|
- creatTrialRecord({
|
|
|
421
|
+ creatTrialRecordnew({
|
|
421
|
422
|
caseAppliId: this.formData.id,
|
|
422
|
423
|
// evidenDetermi: this.form2.evidenDetermi,
|
|
423
|
424
|
// factDetermi: this.form2.factDetermi,
|
|
|
@@ -432,19 +433,20 @@ export default {
|
|
432
|
433
|
isAbsence: this.form2.isAbsence,
|
|
433
|
434
|
appliIsAbsen: this.form2.appliIsAbsen,
|
|
434
|
435
|
respondentOpinion: this.form2.respondentOpinion,
|
|
435
|
|
- applicantOpinion: this.form2.applicaCrossOpin,
|
|
436
|
|
- caseFacts: this.form2.caseFacts,
|
|
437
|
|
- caseFocus: this.form2.caseFocus
|
|
|
436
|
+ applicantOpinion: this.form2.applicantOpinion,
|
|
|
437
|
+ // caseFacts: this.form2.caseFacts,
|
|
|
438
|
+ // caseFocus: this.form2.caseFocus
|
|
438
|
439
|
})
|
|
439
|
440
|
.then((res) => {
|
|
440
|
|
- res.data.caseAttachList.forEach((item) => {
|
|
441
|
|
- if (item.annexType == 7) {
|
|
442
|
|
- this.recordArr.push({
|
|
443
|
|
- annexName: item.annexName,
|
|
444
|
|
- annexPath: item.annexPath,
|
|
445
|
|
- });
|
|
446
|
|
- }
|
|
447
|
|
- });
|
|
|
441
|
+ // console.log(res);
|
|
|
442
|
+ // res.data.caseAttachList.forEach((item) => {
|
|
|
443
|
+ // if (item.annexType == 7) {
|
|
|
444
|
+ // this.recordArr.push({
|
|
|
445
|
+ // annexName: item.annexName,
|
|
|
446
|
+ // annexPath: item.annexPath,
|
|
|
447
|
+ // });
|
|
|
448
|
+ // }
|
|
|
449
|
+ // });
|
|
448
|
450
|
this.$modal.msgSuccess("提交成功");
|
|
449
|
451
|
this.showsubmit = false;
|
|
450
|
452
|
this.closeArbitrationresults();
|