Merge branch 'gyj' of SH-Arbitrate/Arbitrate-Frontend into dev
This commit was merged in pull request #126.
This commit is contained in:
@@ -20,3 +20,11 @@ export function videoList(data) {
|
|||||||
params: data
|
params: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
// 下载案件压缩包
|
||||||
|
export function downloadCaseZipFile(data) {
|
||||||
|
return request({
|
||||||
|
url: '/caseApplication/downloadCaseZipFile',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|||||||
@@ -161,3 +161,11 @@ export function saveFatchRules(data) {
|
|||||||
data: data
|
data: data
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
// 模板字段列表
|
||||||
|
export function getTemplateInfoById(data) {
|
||||||
|
return request({
|
||||||
|
url: '/deptIdentify/getTemplateInfoById',
|
||||||
|
method: 'get',
|
||||||
|
params: data
|
||||||
|
})
|
||||||
|
}
|
||||||
@@ -34,9 +34,6 @@
|
|||||||
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<!-- <el-row style="margin-bottom:5px;">
|
|
||||||
<el-button type="primary" size="mini" icon="el-icon-download" @click="downloadZips">案件归档</el-button>
|
|
||||||
</el-row> -->
|
|
||||||
<el-table v-loading="loading" :data="dataList" style="width: 100%">
|
<el-table v-loading="loading" :data="dataList" style="width: 100%">
|
||||||
<el-table-column label="序号" type="index" align="center">
|
<el-table-column label="序号" type="index" align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
@@ -59,7 +56,7 @@
|
|||||||
v-if="scope.row.filearbitraUrl && scope.row.filearbitraUrl !== ''"
|
v-if="scope.row.filearbitraUrl && scope.row.filearbitraUrl !== ''"
|
||||||
@click="showModel(scope.row)">查看裁决书</el-button>
|
@click="showModel(scope.row)">查看裁决书</el-button>
|
||||||
<el-button size="mini" type="text" icon="el-icon-reading" @click="showDetail(scope.row)">归档详情</el-button>
|
<el-button size="mini" type="text" icon="el-icon-reading" @click="showDetail(scope.row)">归档详情</el-button>
|
||||||
<!-- <el-button type="text" size="mini" icon="el-icon-download" @click="downloadZips(scope.row)">下载案件压缩包</el-button> -->
|
<el-button type="text" size="mini" icon="el-icon-download" @click="downloadZips(scope.row)">下载案件压缩包</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@@ -75,7 +72,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { caseApplicationList, selectSignSealUrl,caseApplicationDetail } from "@/api/awardManagement/awardManagement";
|
import { caseApplicationList, selectSignSealUrl,caseApplicationDetail } from "@/api/awardManagement/awardManagement";
|
||||||
import { caseLogRecordList, logistics } from "@/api/caseManagement/caseManagement";
|
import { caseLogRecordList, logistics } from "@/api/caseManagement/caseManagement";
|
||||||
import { adjudicationArchives, videoList } from "@/api/caseFiling/caseFiling";
|
import { adjudicationArchives, videoList,downloadCaseZipFile} from "@/api/caseFiling/caseFiling";
|
||||||
import archiveDetailsDialog from "./components/archiveDetailsDialog.vue";
|
import archiveDetailsDialog from "./components/archiveDetailsDialog.vue";
|
||||||
export default {
|
export default {
|
||||||
name: "archiveList",
|
name: "archiveList",
|
||||||
@@ -83,6 +80,7 @@ export default {
|
|||||||
components: { archiveDetailsDialog },
|
components: { archiveDetailsDialog },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
fileURL: window.location.origin + "/API",
|
||||||
queryParams: {
|
queryParams: {
|
||||||
pageNum: 1,
|
pageNum: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
@@ -133,7 +131,10 @@ export default {
|
|||||||
},
|
},
|
||||||
// 下在案件归档压缩包
|
// 下在案件归档压缩包
|
||||||
downloadZips(row){
|
downloadZips(row){
|
||||||
// console.log(this.download)
|
downloadCaseZipFile({ id: row.id }).then(res => {
|
||||||
|
let url = this.fileURL+res.data.annexPath
|
||||||
|
window.open(url)
|
||||||
|
})
|
||||||
},
|
},
|
||||||
// 查询列表数据
|
// 查询列表数据
|
||||||
getList(parms) {
|
getList(parms) {
|
||||||
|
|||||||
@@ -231,7 +231,7 @@
|
|||||||
:uploadCaseData="uploadCaseData">
|
:uploadCaseData="uploadCaseData">
|
||||||
</uploadCaseDialog>
|
</uploadCaseDialog>
|
||||||
<!-- 秘书审核修改页面 -->
|
<!-- 秘书审核修改页面 -->
|
||||||
<caseentryExamineDialog :dialogtitle="dialogtitle" :caseentryExamineVisible="caseentryExamineVisible" :queryParams="queryParams"
|
<caseentryExamineDialog :dialogtitle="dialogtitle" :caseentryExamineVisible="caseentryExamineVisible" :queryParams="queryParams" :afterColumnValues="afterColumnValues"
|
||||||
:getcaseApply="getcaseApply"
|
:getcaseApply="getcaseApply"
|
||||||
@caseentryExamineCancel="caseentryExamineCancel" :caseentryExamineData="caseentryExamineData" :caseentryExamineDataAll="caseentryExamineDataAll"></caseentryExamineDialog>
|
@caseentryExamineCancel="caseentryExamineCancel" :caseentryExamineData="caseentryExamineData" :caseentryExamineDataAll="caseentryExamineDataAll"></caseentryExamineDialog>
|
||||||
<caseCompressionPackage :openCompressedPackages="openCompressedPackages" :queryParams="queryParams" @cancelCompreess="cancelCompreess"
|
<caseCompressionPackage :openCompressedPackages="openCompressedPackages" :queryParams="queryParams" @cancelCompreess="cancelCompreess"
|
||||||
@@ -314,6 +314,8 @@ export default {
|
|||||||
dataList: [],
|
dataList: [],
|
||||||
// 抓取数据
|
// 抓取数据
|
||||||
columnValues:[],
|
columnValues:[],
|
||||||
|
// 审核修改抓取数据
|
||||||
|
afterColumnValues:[],
|
||||||
// 查询参数
|
// 查询参数
|
||||||
queryParams: {
|
queryParams: {
|
||||||
caseNum: undefined,
|
caseNum: undefined,
|
||||||
@@ -690,9 +692,10 @@ export default {
|
|||||||
},
|
},
|
||||||
// 审核案件 selectCompareCase caseentryExamineData
|
// 审核案件 selectCompareCase caseentryExamineData
|
||||||
reviewCase(row) {
|
reviewCase(row) {
|
||||||
this.caseentryExamineVisible = true;
|
|
||||||
this.dialogtitle = "审核修改详情";
|
this.dialogtitle = "审核修改详情";
|
||||||
this.getSelectCompareCase(row)
|
this.getSelectCompareCase(row)
|
||||||
|
|
||||||
},
|
},
|
||||||
// 秘书审核修改页面 caseentryExamineVisible
|
// 秘书审核修改页面 caseentryExamineVisible
|
||||||
caseentryExamineCancel() {
|
caseentryExamineCancel() {
|
||||||
@@ -705,8 +708,11 @@ export default {
|
|||||||
version:val.version
|
version:val.version
|
||||||
}
|
}
|
||||||
selectCompareCase(param).then((res) => {
|
selectCompareCase(param).then((res) => {
|
||||||
|
this.afterColumnValues = res.data.afterCase.columnValues
|
||||||
|
console.log(this.afterColumnValues+"8888888888")
|
||||||
this.caseentryExamineData = res.data.afterCase
|
this.caseentryExamineData = res.data.afterCase
|
||||||
this.caseentryExamineDataAll = res.data
|
this.caseentryExamineDataAll = res.data
|
||||||
|
this.caseentryExamineVisible = true;
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 审核撤销
|
// 审核撤销
|
||||||
@@ -810,7 +816,6 @@ export default {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.columnValues = res.data.columnValues;
|
this.columnValues = res.data.columnValues;
|
||||||
console.log(res.data.columnValues)
|
|
||||||
this.caseAttachList = res.data.caseAttachList;
|
this.caseAttachList = res.data.caseAttachList;
|
||||||
// console.log(this.caseAttachList,"caseAttachList")
|
// console.log(this.caseAttachList,"caseAttachList")
|
||||||
this.form.requestRule = res.data.requestRule;
|
this.form.requestRule = res.data.requestRule;
|
||||||
|
|||||||
@@ -88,11 +88,17 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<!-- 申请人仲裁诉求 -->
|
<!-- 申请人仲裁诉求 -->
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
<el-form-item label="申请人仲裁请求及事实和理由" prop="arbitratClaims">
|
<el-form-item label="申请人仲裁请求" prop="arbitratClaims">
|
||||||
<el-input v-model="formData.arbitratClaims" placeholder="请输入申请人仲裁诉求" type="textarea"
|
<el-input v-model="formData.arbitratClaims" placeholder="请输入申请人仲裁诉求" type="textarea"
|
||||||
:autosize="{ minRows: 4, maxRows: 8 }" />
|
:autosize="{ minRows: 4, maxRows: 8 }" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="事实和理由" prop="arbitratClaims">
|
||||||
|
<el-input v-model="formData.arbitratClaims" placeholder="请输入申请人仲裁诉求" type="textarea"
|
||||||
|
:autosize="{ minRows: 4, maxRows: 8 }" />
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
<el-col :span="12">
|
<el-col :span="12">
|
||||||
<el-form-item label="申请人案件证据资料上传:" prop="applicantEvidence" v-if="flag !== '0'">
|
<el-form-item label="申请人案件证据资料上传:" prop="applicantEvidence" v-if="flag !== '0'">
|
||||||
<el-upload class="upload-demo" ref="fileupload" accept=".png,.jpg,.doc,.docx,.txt,.pdf"
|
<el-upload class="upload-demo" ref="fileupload" accept=".png,.jpg,.doc,.docx,.txt,.pdf"
|
||||||
@@ -493,6 +499,7 @@
|
|||||||
<el-form-item label="被申请人性别:" :prop="'paymentArr1.' + index + '.responSex'" :rules="[
|
<el-form-item label="被申请人性别:" :prop="'paymentArr1.' + index + '.responSex'" :rules="[
|
||||||
{
|
{
|
||||||
required: true,
|
required: true,
|
||||||
|
message: '请选择性别'
|
||||||
},
|
},
|
||||||
]">
|
]">
|
||||||
<el-radio-group v-model="itm.responSex">
|
<el-radio-group v-model="itm.responSex">
|
||||||
@@ -606,33 +613,22 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-show="activeName=='second'" style="margin-top:20px;">
|
<div v-show="activeName=='second'" style="margin-top:20px;">
|
||||||
<el-form :model="formGrab" ref="formGrabRef" label-width="120px" :disabled ="flag == '0'">
|
<el-form :model="formGrab" label-width="120px" :disabled ="flag == '0'">
|
||||||
|
|
||||||
<el-form-item v-for="(item,index) in formGrab.list" :prop="'list.' + index + '.value'" :label="item.name" :key="item.id"
|
<el-form-item v-for="(item,index) in formGrab.list" :label="item.name" :key="item.id">
|
||||||
:rules="{
|
|
||||||
required: true,
|
|
||||||
message: '内容不能为空',
|
|
||||||
trigger: 'blur'
|
|
||||||
}"
|
|
||||||
>
|
|
||||||
<el-input type="textarea" v-model="item.value"></el-input>
|
<el-input type="textarea" v-model="item.value"></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
</el-form>
|
</el-form>
|
||||||
<el-col :span="24">
|
<!-- <el-col :span="24">
|
||||||
<div style="text-align:center;margin-top:50px;">
|
<div style="text-align:center;margin-top:50px;">
|
||||||
<el-button type="primary" @click="submitFormGrab" v-if="flag != 0" class="endbutton"><span>确 定</span></el-button>
|
<el-button type="primary" @click="submitFormGrab" v-if="flag != 0" class="endbutton"><span>确 定</span></el-button>
|
||||||
<el-button @click="cancel" class="endbutton1"><span>取 消</span></el-button>
|
<el-button @click="cancel" class="endbutton1"><span>取 消</span></el-button>
|
||||||
</div>
|
</div>
|
||||||
</el-col>
|
</el-col> -->
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <div slot="footer" class="dialog-footer">
|
|
||||||
<el-button type="primary" @click="submitForm" v-if="flag != 0" class="endbutton"><span>确 定</span></el-button>
|
|
||||||
<el-button @click="cancel" class="endbutton1"><span>取 消</span></el-button>
|
|
||||||
</div> -->
|
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -827,7 +823,6 @@ export default {
|
|||||||
if (this.flag == "1" || this.flag == "0") {
|
if (this.flag == "1" || this.flag == "0") {
|
||||||
this.form2.paymentArr = this.initpaymentArr;
|
this.form2.paymentArr = this.initpaymentArr;
|
||||||
this.form3.paymentArr1 = this.initpaymentArr1;
|
this.form3.paymentArr1 = this.initpaymentArr1;
|
||||||
console.log(this.caseAttachList)
|
|
||||||
this.caseAttachList.forEach((item) => {
|
this.caseAttachList.forEach((item) => {
|
||||||
if (item.annexType == 2) {
|
if (item.annexType == 2) {
|
||||||
this.applicateArr.push({
|
this.applicateArr.push({
|
||||||
@@ -950,16 +945,16 @@ export default {
|
|||||||
this.$emit("cancel");
|
this.$emit("cancel");
|
||||||
},
|
},
|
||||||
// 校验借款开始日期与结束日期
|
// 校验借款开始日期与结束日期
|
||||||
// setStartTime() {
|
setStartTime() {
|
||||||
// if (
|
if (
|
||||||
// this.setTime(this.formData.loanStartDate) >=
|
this.setTime(this.formData.loanStartDate) >=
|
||||||
// this.setTime(this.formData.loanEndDate)
|
this.setTime(this.formData.loanEndDate)
|
||||||
// ) {
|
) {
|
||||||
// this.$message.error("借款开始日期应早于借款结束日期");
|
this.$message.error("借款开始日期应早于借款结束日期");
|
||||||
// this.formData.loanStartDate = "";
|
this.formData.loanStartDate = "";
|
||||||
// this.formData.loanEndDate = "";
|
this.formData.loanEndDate = "";
|
||||||
// }
|
}
|
||||||
// },
|
},
|
||||||
setEndTime() {
|
setEndTime() {
|
||||||
if (
|
if (
|
||||||
this.setTime(this.formData.loanEndDate) <=
|
this.setTime(this.formData.loanEndDate) <=
|
||||||
@@ -1039,7 +1034,7 @@ export default {
|
|||||||
"YYYY-MM-DD HH:mm:ss"
|
"YYYY-MM-DD HH:mm:ss"
|
||||||
);
|
);
|
||||||
if (this.formData.id) {
|
if (this.formData.id) {
|
||||||
// this.formData['columnValues'] = this.formGrab.list
|
this.formData['columnValues'] = this.formGrab.list
|
||||||
editCaseApply({
|
editCaseApply({
|
||||||
...this.formData,
|
...this.formData,
|
||||||
caseAffiliates: this.formData.caseAffiliates,
|
caseAffiliates: this.formData.caseAffiliates,
|
||||||
@@ -1070,22 +1065,22 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
// 提交抓取内容修改
|
// 提交抓取内容修改
|
||||||
submitFormGrab(){
|
// submitFormGrab(){
|
||||||
this.$refs['formGrabRef'].validate((valid) => {
|
// this.$refs['formGrabRef'].validate((valid) => {
|
||||||
if(valid){
|
// if(valid){
|
||||||
this.formGrabList['columnValues']= this.formGrab.list
|
// this.formGrabList['columnValues']= this.formGrab.list
|
||||||
|
|
||||||
console.log(this.formGrabList)
|
// console.log(this.formGrabList)
|
||||||
editCaseApplicationDefineval({columnValues:this.formGrab.list}).then(res=>{
|
// editCaseApplicationDefineval({columnValues:this.formGrab.list}).then(res=>{
|
||||||
if (res.code == 200) {
|
// if (res.code == 200) {
|
||||||
this.$modal.msgSuccess("修改成功");
|
// this.$modal.msgSuccess("修改成功");
|
||||||
this.$emit("cancel");
|
// this.$emit("cancel");
|
||||||
this.getcaseApply(this.queryParams);
|
// this.getcaseApply(this.queryParams);
|
||||||
}
|
// }
|
||||||
})
|
// })
|
||||||
}
|
// }
|
||||||
});
|
// });
|
||||||
},
|
// },
|
||||||
// 详情显示,展示申请人案件文件
|
// 详情显示,展示申请人案件文件
|
||||||
toFile(item, index) {
|
toFile(item, index) {
|
||||||
window.open(
|
window.open(
|
||||||
|
|||||||
@@ -5,11 +5,18 @@
|
|||||||
:visible="caseentryExamineVisible"
|
:visible="caseentryExamineVisible"
|
||||||
@close="cancel"
|
@close="cancel"
|
||||||
width="1000px"
|
width="1000px"
|
||||||
|
height="800px"
|
||||||
append-to-body
|
append-to-body
|
||||||
:destroy-on-close="true"
|
:destroy-on-close="true"
|
||||||
center
|
center
|
||||||
>
|
>
|
||||||
<!-- 案件信息 -->
|
<!-- tab页 -->
|
||||||
|
<el-tabs v-model="activeName" @tab-click="handleClick">
|
||||||
|
<el-tab-pane label="案件基本信息" name="first"></el-tab-pane>
|
||||||
|
<el-tab-pane label="自定义抓取内容" name="second"></el-tab-pane>
|
||||||
|
</el-tabs>
|
||||||
|
<div v-show="activeName=='first'">
|
||||||
|
<!-- 案件信息 -->
|
||||||
<el-form
|
<el-form
|
||||||
ref="form"
|
ref="form"
|
||||||
:model="formData"
|
:model="formData"
|
||||||
@@ -767,26 +774,38 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
</el-form>
|
</el-form>
|
||||||
<div slot="footer" class="dialog-footer">
|
<div slot="footer" class="dialog-footer" style="text-align:center;margin-top:20px;">
|
||||||
<el-button
|
<el-button
|
||||||
type="primary"
|
type="primary"
|
||||||
@click="submitIsAgree(1)"
|
@click="submitIsAgree(1)"
|
||||||
v-if="
|
v-if="
|
||||||
formData.updateSubmitStatus == 1 || formData.updateSubmitStatus == 2
|
formData.updateSubmitStatus == 1 || formData.updateSubmitStatus == 2
|
||||||
"
|
"
|
||||||
class="endbutton"
|
class="endbutton"
|
||||||
><span>同 意</span></el-button
|
><span>同 意</span></el-button
|
||||||
>
|
>
|
||||||
<el-button
|
<el-button
|
||||||
type="warning"
|
type="warning"
|
||||||
@click="submitIsAgree(0)"
|
@click="submitIsAgree(0)"
|
||||||
v-if="
|
v-if="
|
||||||
formData.updateSubmitStatus == 1 || formData.updateSubmitStatus == 2
|
formData.updateSubmitStatus == 1 || formData.updateSubmitStatus == 2
|
||||||
"
|
"
|
||||||
class="endbutton2"
|
class="endbutton2"
|
||||||
><span>拒 绝</span></el-button
|
><span>拒 绝</span></el-button
|
||||||
>
|
>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div v-show="activeName=='second'">
|
||||||
|
<el-form :model="formGrab" label-width="120px" >
|
||||||
|
|
||||||
|
<el-form-item v-for="(item,index) in formGrab.list" :label="item.name" :key="item.id">
|
||||||
|
<el-input type="textarea" v-model="item.value"></el-input>
|
||||||
|
</el-form-item>
|
||||||
|
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@@ -808,14 +827,21 @@ export default {
|
|||||||
"caseAttachList",
|
"caseAttachList",
|
||||||
"caseentryExamineVisible",
|
"caseentryExamineVisible",
|
||||||
"caseentryExamineData",
|
"caseentryExamineData",
|
||||||
"caseentryExamineDataAll"
|
"caseentryExamineDataAll",
|
||||||
|
"afterColumnValues"
|
||||||
],
|
],
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
activeName: 'first',
|
||||||
|
// 抓取内容
|
||||||
|
formGrab:{
|
||||||
|
list:[]
|
||||||
|
},
|
||||||
formData: {},
|
formData: {},
|
||||||
changeLableCode: [],
|
changeLableCode: [],
|
||||||
changeLableCode1: [],
|
changeLableCode1: [],
|
||||||
changeLableCode2: [],
|
changeLableCode2: [],
|
||||||
|
changeLableColumn:[],
|
||||||
filedata: {
|
filedata: {
|
||||||
annexType: 2,
|
annexType: 2,
|
||||||
},
|
},
|
||||||
@@ -960,6 +986,9 @@ export default {
|
|||||||
watch: {
|
watch: {
|
||||||
caseentryExamineVisible: {
|
caseentryExamineVisible: {
|
||||||
handler(val) {
|
handler(val) {
|
||||||
|
this.activeName = "first"
|
||||||
|
this.formGrab.list = this.caseentryExamineDataAll.afterCase.columnValues
|
||||||
|
console.log(this.formGrab.list)
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
if (val) {
|
if (val) {
|
||||||
this.applicateArr = [];
|
this.applicateArr = [];
|
||||||
@@ -967,6 +996,7 @@ export default {
|
|||||||
this.formData = this.caseentryExamineData;
|
this.formData = this.caseentryExamineData;
|
||||||
if (this.caseentryExamineDataAll.changeColumn) {
|
if (this.caseentryExamineDataAll.changeColumn) {
|
||||||
this.changeLableCode = this.caseentryExamineDataAll.changeColumn.split(',')
|
this.changeLableCode = this.caseentryExamineDataAll.changeColumn.split(',')
|
||||||
|
console.log(this.changeLableCode)
|
||||||
} else {
|
} else {
|
||||||
this.changeLableCode = []
|
this.changeLableCode = []
|
||||||
}
|
}
|
||||||
@@ -986,6 +1016,12 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
this.changeLableCode2 = []
|
this.changeLableCode2 = []
|
||||||
}
|
}
|
||||||
|
if(this.caseentryExamineDataAll.columnValueChangeColumn){
|
||||||
|
let changeLableColumn1 = this.caseentryExamineDataAll.columnValueChangeColumn.split(',')
|
||||||
|
|
||||||
|
}else{
|
||||||
|
this.changeLableColumn = []
|
||||||
|
}
|
||||||
this.fileList = [];
|
this.fileList = [];
|
||||||
this.form2.paymentArr = [
|
this.form2.paymentArr = [
|
||||||
this.caseentryExamineData.caseAffiliates[0],
|
this.caseentryExamineData.caseAffiliates[0],
|
||||||
@@ -1150,6 +1186,7 @@ export default {
|
|||||||
updateSubmitStatus: this.formData.updateSubmitStatus,
|
updateSubmitStatus: this.formData.updateSubmitStatus,
|
||||||
isAgree: row,
|
isAgree: row,
|
||||||
version: this.formData.version,
|
version: this.formData.version,
|
||||||
|
columnValues:this.formGrab.list
|
||||||
};
|
};
|
||||||
updateAudit(parms).then((res) => {
|
updateAudit(parms).then((res) => {
|
||||||
this.$modal.msgSuccess("审核成功");
|
this.$modal.msgSuccess("审核成功");
|
||||||
@@ -1171,6 +1208,10 @@ export default {
|
|||||||
"_black"
|
"_black"
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
// tab页
|
||||||
|
handleClick(tab, event){
|
||||||
|
|
||||||
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -310,7 +310,10 @@ export default {
|
|||||||
user: "",
|
user: "",
|
||||||
userId: 1,
|
userId: 1,
|
||||||
showArbitrationresults: false,
|
showArbitrationresults: false,
|
||||||
form2: {},
|
form2: {
|
||||||
|
isAbsence:0,
|
||||||
|
appliIsAbsen:0
|
||||||
|
},
|
||||||
applicateArr: [], //申请人案件资料
|
applicateArr: [], //申请人案件资料
|
||||||
quiltArr: [], //被申请人案件资料
|
quiltArr: [], //被申请人案件资料
|
||||||
recordArr: [], //笔录附件
|
recordArr: [], //笔录附件
|
||||||
@@ -418,6 +421,7 @@ export default {
|
|||||||
submitForm() {
|
submitForm() {
|
||||||
this.$refs["form2"].validate((valid) => {
|
this.$refs["form2"].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
|
|
||||||
creatTrialRecordnew({
|
creatTrialRecordnew({
|
||||||
caseAppliId: this.formData.id,
|
caseAppliId: this.formData.id,
|
||||||
// evidenDetermi: this.form2.evidenDetermi,
|
// evidenDetermi: this.form2.evidenDetermi,
|
||||||
@@ -450,6 +454,9 @@ export default {
|
|||||||
this.$modal.msgSuccess("提交成功");
|
this.$modal.msgSuccess("提交成功");
|
||||||
this.showsubmit = false;
|
this.showsubmit = false;
|
||||||
this.closeArbitrationresults();
|
this.closeArbitrationresults();
|
||||||
|
this.form2.respondentOpinion ="";
|
||||||
|
this.form2.applicantOpinion = "";
|
||||||
|
|
||||||
})
|
})
|
||||||
.catch((err) => { });
|
.catch((err) => { });
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -114,7 +114,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="cardList" v-hasPermi="['home:arbitratorCheck']" @click="pushPage(18)">
|
<div class="cardList" v-hasPermi="['home:arbitratorCheck']" @click="pushPage(18)">
|
||||||
<div class="badge">{{ dataCount.caseApplyAwardCheck }}</div>
|
<div class="badge">{{ dataCount.arbitratorApplyAwardConfirm }}</div>
|
||||||
<div class="cardMain">
|
<div class="cardMain">
|
||||||
<img class="iconImg" src="@/assets/images/daishencha.png" alt="">
|
<img class="iconImg" src="@/assets/images/daishencha.png" alt="">
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
getFatchRuleByTemplateid
|
getTemplateInfoById
|
||||||
} from "@/api/officialSeal/officialSeal.js";
|
} from "@/api/officialSeal/officialSeal.js";
|
||||||
export default {
|
export default {
|
||||||
props: ["listVisable", "listData", "queryParams"],
|
props: ["listVisable", "listData", "queryParams"],
|
||||||
@@ -29,7 +29,7 @@ export default {
|
|||||||
watch: {
|
watch: {
|
||||||
listData(val) {
|
listData(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
getFatchRuleByTemplateid({ id: val.id }).then(res=>{
|
getTemplateInfoById({ id: val.id }).then(res=>{
|
||||||
this.dataList = res.data;
|
this.dataList = res.data;
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,7 +41,8 @@
|
|||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
getTemplate,
|
getTemplate,
|
||||||
deleteTemplate
|
deleteTemplate,
|
||||||
|
getTemplateInfoById
|
||||||
} from "@/api/officialSeal/officialSeal.js";
|
} from "@/api/officialSeal/officialSeal.js";
|
||||||
|
|
||||||
import addInstitution from "./components/addInstitution";
|
import addInstitution from "./components/addInstitution";
|
||||||
|
|||||||
Reference in New Issue
Block a user