事项追踪

This commit is contained in:
liuxi 2025-01-03 17:30:58 +08:00
parent 30b0a0a131
commit 350c638a6b
6 changed files with 56 additions and 18 deletions

View File

@ -63,11 +63,17 @@
<!-- <el-table-column type="selection" width="55" ></el-table-column> -->
<el-table-column prop="pkgName" label="案件包名称" show-overflow-tooltip ></el-table-column>
<el-table-column prop="caseNo" label="案件编号" width="200" show-overflow-tooltip ></el-table-column>
<el-table-column prop="channel" label="发起方式" show-overflow-tooltip ></el-table-column>
<el-table-column label="送达方式" show-overflow-tooltip>
<template >
<span>短信送达</span>
</template>
</el-table-column>
<!-- <el-table-column prop="documentType" label="文书送达范围" show-overflow-tooltip ></el-table-column> -->
<el-table-column label="文书送达范围" show-overflow-tooltip>
<template slot-scope="scope">
<span>{{ scope.row.documentType.desc != undefined ? scope.row.documentType.desc :'' }}</span>
<span v-for="(item,index) in JSON.parse(scope.row.documentType)" :key="index">
{{ index > 0 ? ',':''}}{{ item }}
</span>
</template>
</el-table-column>
<el-table-column prop="status" label="送达状态" show-overflow-tooltip>
@ -171,7 +177,7 @@ import api from "@/services/eventTracingApi";
this.queryParam.planBegin = this.queryParam.beginTime
this.queryParam.planEnd = this.queryParam.endTime
this.queryParam.current = val
api.posttrace_generate(this.queryParam).then(res => {
api.posttrace_served(this.queryParam).then(res => {
if (!res.code) {
this.tableData = res.records;
this.total = res.total;

View File

@ -73,7 +73,17 @@
<el-table-column prop="payableAmount" label="应还金额" show-overflow-tooltip ></el-table-column> -->
<el-table-column prop="actualPayDate" label="实际还款日期" show-overflow-tooltip ></el-table-column>
<el-table-column prop="amount" label="实际还款金额" show-overflow-tooltip ></el-table-column>
<el-table-column prop="status" label="状态" show-overflow-tooltip ></el-table-column>
<el-table-column label="状态" show-overflow-tooltip >
<template slot-scope="scope">
<span >
{{ (scope.row.status.code == 0 || scope.row.status.code == 1) ? '待效验':'' }}
{{ scope.row.status.code == 2 ? '已效验':'' }}
{{ (scope.row.status.code == 3 || scope.row.status.code == 4) ? '效验失败':'' }}
</span>
</template>
</el-table-column>
<el-table-column prop="createAt" label="操作时间" show-overflow-tooltip >
<template slot-scope="scope">
<span >{{ scope.row.createAt | formaDate("yyyy-MM-dd hh:mm:ss") }}</span>
@ -84,8 +94,8 @@
<template slot-scope="scope">
<div class="flex-row align-items-center">
<el-button size="mini" @click="handleCaseShow(scope)">查看凭证</el-button>
<el-button size="mini" @click="EffectDialog = scope.row">效验</el-button>
<el-button size="mini" @click="handEffectCancel(scope.row)">取消</el-button>
<el-button v-if="(scope.row.status.code == 0 || scope.row.status.code == 1)" size="mini" @click="EffectDialog = scope.row">效验</el-button>
<el-button v-if="(scope.row.status.code == 0 || scope.row.status.code == 1)" size="mini" @click="handEffectCancel(scope.row)">取消</el-button>
</div>
</template>
</el-table-column>

View File

@ -63,7 +63,11 @@
<!-- <el-table-column type="selection" width="55" ></el-table-column> -->
<el-table-column prop="pkgName" label="案件包名称" show-overflow-tooltip ></el-table-column>
<el-table-column prop="caseNo" label="案件编号" width="200" show-overflow-tooltip ></el-table-column>
<el-table-column prop="templateId" label="短信模板" show-overflow-tooltip ></el-table-column>
<el-table-column label="短信模板" show-overflow-tooltip >
<template slot-scope="scope">
<span >{{ scope.row.templateId.desc != undefined ?scope.row.templateId.desc :'' }}</span>
</template>
</el-table-column>
<el-table-column prop="sendObjectType" label="短信接收对象" show-overflow-tooltip ></el-table-column>
<el-table-column prop="countInit" label="记录数量" show-overflow-tooltip ></el-table-column>
<el-table-column prop="countOk" label="发送成功" show-overflow-tooltip ></el-table-column>

View File

@ -64,7 +64,18 @@
<el-table-column prop="caseNo" label="案件编号" width="200" show-overflow-tooltip></el-table-column>
<el-table-column prop="bookingTime" label="预约开始时间" show-overflow-tooltip></el-table-column>
<el-table-column prop="bookingEndTime" label="预约结束时间" show-overflow-tooltip></el-table-column>
<el-table-column prop="status" label="状态" show-overflow-tooltip></el-table-column>
<el-table-column prop="状态" label="操作时间" show-overflow-tooltip>
<template slot-scope="scope">
<span>
{{ scope.row.status == 0 ? '未开始': '' }}
{{ scope.row.status == 1 ? '进行中': '' }}
{{ scope.row.status == 2 ? '已结束': '' }}
{{ scope.row.status == 3 ? '视频失败': '' }}
{{ scope.row.status == 4 ? '已取消': '' }}
</span>
</template>
</el-table-column>
<el-table-column prop="invitee" label="受邀人" show-overflow-tooltip></el-table-column>
<el-table-column prop="createByName" label="操作人" show-overflow-tooltip></el-table-column>
<el-table-column prop="createAt" label="操作时间" show-overflow-tooltip>

View File

@ -52,21 +52,24 @@
<el-table-column type="index" label="序号" width="55"></el-table-column>
<el-table-column prop="pkgName" label="案件包名称" show-overflow-tooltip ></el-table-column>
<el-table-column prop="caseNo" label="案件编号" width="200" show-overflow-tooltip ></el-table-column>
<el-table-column prop="channel" 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>
<template slot-scope="scope">
<span>{{ scope.row.documentType.desc != undefined ? scope.row.documentType.desc :'' }}</span>
</template>
</el-table-column>
<template slot-scope="scope">
<span v-for="(item,index) in JSON.parse(scope.row.documentType)" :key="index">
{{ index > 0 ? ',':''}}{{ item }}
</span>
</template>
</el-table-column>
<el-table-column prop="status" label="送达状态" show-overflow-tooltip>
<template slot-scope="scope">
<span>{{ scope.row.status.desc }}</span>
</template>
</el-table-column>
<el-table-column prop="planStartTime" label="送达时间" show-overflow-tooltip >
<el-table-column label="送达时间" show-overflow-tooltip >
<template slot-scope="scope">
<span >{{ scope.row.planStartTime | formaDate("yyyy-MM-dd hh:mm:ss") }}</span>
<span >{{ scope.row.servedTime | formaDate("yyyy-MM-dd hh:mm:ss") }}</span>
</template>
</el-table-column>
<el-table-column prop="failureReason" label="未送达原因" show-overflow-tooltip ></el-table-column>
@ -155,7 +158,7 @@ import api from "@/services/eventTracingApi";
this.queryParam.planBegin = this.queryParam.beginTime
this.queryParam.planEnd = this.queryParam.endTime
this.queryParam.current = val
api.posttrace_generate_detail(this.queryParam).then(res => {
api.posttrace_served_detail(this.queryParam).then(res => {
if (!res.code) {
this.tableData = res.records;
this.total = res.total;

View File

@ -61,7 +61,11 @@
<el-table-column type="index" label="序号" width="55"></el-table-column>
<!-- <el-table-column prop="pkgName" label="案件包名称" show-overflow-tooltip ></el-table-column> -->
<el-table-column prop="caseNo" label="案件编号" width="200" show-overflow-tooltip></el-table-column>
<el-table-column prop="templateId" label="短信模板" show-overflow-tooltip></el-table-column>
<el-table-column label="短信模板" show-overflow-tooltip >
<template slot-scope="scope">
<span >{{ scope.row.templateId.desc != undefined ?scope.row.templateId.desc :'' }}</span>
</template>
</el-table-column>
<el-table-column prop="contact" label="短信接收人" show-overflow-tooltip></el-table-column>
<el-table-column prop="phone" label="电话号码" show-overflow-tooltip></el-table-column>
<el-table-column prop="sendObjectType" label="短信接收对象" show-overflow-tooltip></el-table-column>
@ -74,7 +78,7 @@
<el-table-column prop="createByName" label="操作人" show-overflow-tooltip></el-table-column>
<el-table-column label="操作时间" show-overflow-tooltip>
<template slot-scope="scope">
<span>{{ scope.row.planStartTime | formaDate("yyyy-MM-dd hh:mm:ss") }}</span>
<span>{{ scope.row.createBy | formaDate("yyyy-MM-dd hh:mm:ss") }}</span>
</template>
</el-table-column>