修改文书送达bug
This commit is contained in:
parent
42a74f3c4e
commit
469eacabb6
@ -113,7 +113,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 追踪明细 -->
|
<!-- 追踪明细 -->
|
||||||
<officeDeliveryDialogDetail v-else :DialogDetail.sync="officeDeliveryDialogDetail" />
|
<officeDeliveryDialogDetail v-else :DialogDetail.sync="DialogDetail" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -56,9 +56,9 @@
|
|||||||
<el-table-column prop="receiver" label="文书接收人" show-overflow-tooltip ></el-table-column>
|
<el-table-column prop="receiver" label="文书接收人" show-overflow-tooltip ></el-table-column>
|
||||||
<el-table-column label="文书类型" show-overflow-tooltip>
|
<el-table-column label="文书类型" show-overflow-tooltip>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span v-for="(item,index) in JSON.parse(scope.row.documentType)" :key="index">
|
<span>
|
||||||
{{ index > 0 ? ',':''}}{{ item }}
|
{{ scope.row.documentType.desc}}
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
@ -120,7 +120,8 @@ import api from "@/services/eventTracingApi";
|
|||||||
pkgName:'',
|
pkgName:'',
|
||||||
size:10,
|
size:10,
|
||||||
current:1,
|
current:1,
|
||||||
traceId:''
|
traceId:'',
|
||||||
|
caseId:''
|
||||||
},
|
},
|
||||||
tableData:[],
|
tableData:[],
|
||||||
total:0,
|
total:0,
|
||||||
@ -132,7 +133,9 @@ import api from "@/services/eventTracingApi";
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
initializeQuery(){
|
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 != '') {
|
if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') {
|
||||||
this.queryParam.caseId = 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.startTime = this.queryParam.beginTime
|
||||||
this.queryParam.current = val
|
this.queryParam.current = val
|
||||||
api.posttrace_served_detail(this.queryParam).then(res => {
|
api.posttrace_served_detail(this.queryParam).then(res => {
|
||||||
if (!res.code) {
|
this.tableData = res.records;
|
||||||
this.tableData = res.records;
|
this.total = res.total;
|
||||||
this.total = res.total;
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@ -64,7 +64,7 @@
|
|||||||
<span v-else>{{ scope.row.status.desc }}</span>
|
<span v-else>{{ scope.row.status.desc }}</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="失败原因" show-overflow-tooltip >
|
<el-table-column label="执行结果" show-overflow-tooltip >
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<span>{{ scope.row.resultMsg }}</span>
|
<span>{{ scope.row.resultMsg }}</span>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -74,7 +74,7 @@ import api from "@/services/caseManagement";
|
|||||||
}
|
}
|
||||||
this.ObjectInfo.caseId = this.caseId
|
this.ObjectInfo.caseId = this.caseId
|
||||||
api.traceServedCreate(this.ObjectInfo).then((res) => {
|
api.traceServedCreate(this.ObjectInfo).then((res) => {
|
||||||
this.$message.success("发起签字成功");
|
this.$message.success("发起文书电子送达成功");
|
||||||
this.handleClose()
|
this.handleClose()
|
||||||
this.$parent.getWritCaseList()
|
this.$parent.getWritCaseList()
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user