生成笔录接口联调,证据清单
This commit is contained in:
@@ -866,6 +866,6 @@ export default {
|
||||
<style>
|
||||
/* // #formContainer {} */
|
||||
.el-table .pendingTrial {
|
||||
background:oldlace;
|
||||
background:rgb(97, 224, 23);
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -11,8 +11,13 @@
|
||||
<div class="loading" v-if ="flagLoading">
|
||||
<i class="el-icon-loading"></i>
|
||||
</div>
|
||||
<div>申请人证据清单:</div>
|
||||
<div v-for="item in this.caseAttachListR" style="margin-top:10px;">
|
||||
<el-link target="_blank" type="primary" v-if="item.annexType == 2 || item.annexType == 6" :href="fileURL+item.annexPath">{{item.annexName}}</el-link>
|
||||
<el-link target="_blank" type="primary" v-if="item.annexType == 2" :href="fileURL+item.annexPath">{{item.annexName}}</el-link>
|
||||
</div>
|
||||
<div style="margin-top:30px;;">被申请人证据清单:</div>
|
||||
<div v-for="item in this.caseAttachListR" style="margin-top:10px;">
|
||||
<el-link target="_blank" type="primary" v-if="item.annexType == 6" :href="fileURL+item.annexPath">{{item.annexName}}</el-link>
|
||||
</div>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click="cancel" class="endbutton1"
|
||||
|
||||
@@ -170,16 +170,16 @@
|
||||
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.applicantOpinion" placeholder="请输入" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="24">
|
||||
<!-- <el-col :span="24">
|
||||
<el-form-item label="查明本案事实" prop="caseFacts">
|
||||
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.caseFacts" placeholder="请输入" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="24">
|
||||
</el-col> -->
|
||||
<!-- <el-col :span="24">
|
||||
<el-form-item label="本案争议焦点" prop="caseFocus">
|
||||
<el-input type="textarea" :autosize="{ minRows: 6 }" v-model="form2.caseFocus" placeholder="请输入" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-col> -->
|
||||
<!-- <el-col :span="12">
|
||||
<el-form-item label="被申请人质证意见:" prop="responCrossOpin" :rules="[
|
||||
{
|
||||
@@ -288,6 +288,7 @@ import { getUserProfile } from "@/api/system/user";
|
||||
import {
|
||||
writtenHear,
|
||||
creatTrialRecord,
|
||||
creatTrialRecordnew,
|
||||
document,
|
||||
} from "@/api/caseManagement/caseManagement.js";
|
||||
|
||||
@@ -397,7 +398,7 @@ export default {
|
||||
submitForm() {
|
||||
this.$refs["form2"].validate((valid) => {
|
||||
if (valid) {
|
||||
creatTrialRecord({
|
||||
creatTrialRecordnew({
|
||||
caseAppliId: this.formData.id,
|
||||
// evidenDetermi: this.form2.evidenDetermi,
|
||||
// factDetermi: this.form2.factDetermi,
|
||||
@@ -412,19 +413,20 @@ export default {
|
||||
isAbsence: this.form2.isAbsence,
|
||||
appliIsAbsen: this.form2.appliIsAbsen,
|
||||
respondentOpinion: this.form2.respondentOpinion,
|
||||
applicantOpinion: this.form2.applicaCrossOpin,
|
||||
caseFacts: this.form2.caseFacts,
|
||||
caseFocus: this.form2.caseFocus
|
||||
applicantOpinion: this.form2.applicantOpinion,
|
||||
// caseFacts: this.form2.caseFacts,
|
||||
// caseFocus: this.form2.caseFocus
|
||||
})
|
||||
.then((res) => {
|
||||
res.data.caseAttachList.forEach((item) => {
|
||||
if (item.annexType == 7) {
|
||||
this.recordArr.push({
|
||||
annexName: item.annexName,
|
||||
annexPath: item.annexPath,
|
||||
});
|
||||
}
|
||||
});
|
||||
// console.log(res);
|
||||
// res.data.caseAttachList.forEach((item) => {
|
||||
// if (item.annexType == 7) {
|
||||
// this.recordArr.push({
|
||||
// annexName: item.annexName,
|
||||
// annexPath: item.annexPath,
|
||||
// });
|
||||
// }
|
||||
// });
|
||||
this.$modal.msgSuccess("提交成功");
|
||||
this.showsubmit = false;
|
||||
this.closeArbitrationresults();
|
||||
|
||||
Reference in New Issue
Block a user