修改文书送达bug

This commit is contained in:
liuxi 2025-02-28 15:22:28 +08:00
parent 42a74f3c4e
commit 469eacabb6
4 changed files with 13 additions and 12 deletions

View File

@ -113,7 +113,7 @@
</div>
</div>
<!-- 追踪明细 -->
<officeDeliveryDialogDetail v-else :DialogDetail.sync="officeDeliveryDialogDetail" />
<officeDeliveryDialogDetail v-else :DialogDetail.sync="DialogDetail" />
</div>
</template>

View File

@ -56,9 +56,9 @@
<el-table-column prop="receiver" label="文书接收人" show-overflow-tooltip ></el-table-column>
<el-table-column label="文书类型" show-overflow-tooltip>
<template slot-scope="scope">
<span v-for="(item,index) in JSON.parse(scope.row.documentType)" :key="index">
{{ index > 0 ? ',':''}}{{ item }}
</span>
<span>
{{ scope.row.documentType.desc}}
</span>
</template>
</el-table-column>
@ -120,7 +120,8 @@ import api from "@/services/eventTracingApi";
pkgName:'',
size:10,
current:1,
traceId:''
traceId:'',
caseId:''
},
tableData:[],
total:0,
@ -132,7 +133,9 @@ import api from "@/services/eventTracingApi";
},
methods: {
initializeQuery(){
this.queryParam.caseNo = this.DialogDetail.caseNo
if (this.DialogDetail.caseNo != undefined && this.DialogDetail.caseNo != '') {
this.queryParam.caseNo = this.DialogDetail.caseNo
}
if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') {
this.queryParam.caseId = this.DialogDetail.caseId
}
@ -170,10 +173,8 @@ import api from "@/services/eventTracingApi";
this.queryParam.startTime = this.queryParam.beginTime
this.queryParam.current = val
api.posttrace_served_detail(this.queryParam).then(res => {
if (!res.code) {
this.tableData = res.records;
this.total = res.total;
}
this.tableData = res.records;
this.total = res.total;
})
},
}

View File

@ -64,7 +64,7 @@
<span v-else>{{ scope.row.status.desc }}</span>
</template>
</el-table-column>
<el-table-column label="失败原因" show-overflow-tooltip >
<el-table-column label="执行结果" show-overflow-tooltip >
<template slot-scope="scope">
<span>{{ scope.row.resultMsg }}</span>
</template>

View File

@ -74,7 +74,7 @@ import api from "@/services/caseManagement";
}
this.ObjectInfo.caseId = this.caseId
api.traceServedCreate(this.ObjectInfo).then((res) => {
this.$message.success("发起签字成功");
this.$message.success("发起文书电子送达成功");
this.handleClose()
this.$parent.getWritCaseList()
});