mediate-manage-web/src/pages/event-tracing/dtraceDetail/officeDeliveryDialogDetail.vue
2025-02-26 16:36:55 +08:00

199 lines
8.3 KiB
Vue

<template>
<div>
<div class="pt-8 border-b-solid-lighter-1">
<div class="height-30 flex-row align-items-center justify-content-between mb-24">
<div class="f18 color-text-primary">筛选</div>
<span v-if="this.DialogDetail.id != undefined" class="f-weight500 f16 cursor-pointer" @click="$emit('update:DialogDetail', null)"><i class="el-icon-back"></i>返回</span>
</div>
<el-collapse-transition>
<el-row :gutter="56">
<el-col :span="8">
<div class="flex-row-center align-items-center height-40 mb-24">
<span class="tabs__search-criteria-title flex-shrink-0 pr-16">案件编号</span>
<el-input v-model.trim="queryParam.caseNo" :disabled="queryParam.caseId != undefined ? true:false"
clearable placeholder="请输入案件编号"
@keydown.enter.native="handleSearch">
</el-input>
</div>
</el-col>
<el-col :span="12">
<div class="justify-content-start align-items-center height-40 mb-24">
<span class="tabs__search-criteria-title flex-shrink-0 pr-16">操作时间</span>
<el-date-picker
v-model="queryDate"
type="daterange"
clearable
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
@change="handleChangeDate">
</el-date-picker>
</div>
</el-col>
<el-col :span="4">
<div class="flex-row align-items-center justify-content-end">
<el-button @click="hanldeReset">重置</el-button>
<el-button type="primary" @click="handleSearch">搜索</el-button>
</div>
</el-col>
</el-row>
</el-collapse-transition>
</div>
<!-- table -->
<div class="pt-8">
<div class="height-56 flex-row align-items-center justify-content-between">
<div class="f18 color-text-primary">明细列表</div>
<div class="flex-row">
</div>
</div>
<div class="case-table">
<el-table :data="tableData" height="330" >
<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="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>
</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 label="送达时间" show-overflow-tooltip >
<template slot-scope="scope">
<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>
<!-- <el-table-column label="操作" width="140">
<template slot-scope="scope">
<div class="flex-row align-items-center">
<el-button size="mini" @click="handleDelete(scope)">重试</el-button>
<el-button size="mini" @click="handleBackCase(scope)">取消</el-button>
</div>
</template>
</el-table-column> -->
</el-table>
</div>
<div class="text-center pt-16">
<el-pagination
@size-change="getList"
@current-change="getList"
:current-page="queryParam.current"
:page-size="queryParam.size"
layout="total, prev, pager, next, jumper"
:total="total">
</el-pagination>
</div>
</div>
</div>
</template>
<script>
import api from "@/services/eventTracingApi";
export default {
components: {
},
props: {
DialogDetail: {
type: Object,
default: () => {
return {}
},
},
},
data() {
return {
queryDate: '',
queryParam:{
caseNo:'',
pkgName:'',
size:10,
current:1,
traceId:''
},
tableData:[],
total:0,
};
},
mounted () {
this.initializeQuery()
this.getList(1)
},
methods: {
initializeQuery(){
this.queryParam.caseNo = this.DialogDetail.caseNo
if (this.DialogDetail.caseId != undefined && this.DialogDetail.caseId != '') {
this.queryParam.caseId = this.DialogDetail.caseId
}
this.queryParam.traceId = this.DialogDetail.id
},
handleChangeDate() {
this.activeUsage = ''
if(this.queryDate === null) {
this.queryParam.beginTime = ''
this.queryParam.endTime = ''
this.queryDate = ''
}else {
this.queryParam.beginTime = this.$util.getDayStart(this.queryDate[0])
this.queryParam.endTime = this.$util.getDayEnd(this.queryDate[1])
}
},
// 重置
hanldeReset() {
for (let key in this.queryParam) {
this.queryParam[key] = ''
}
this.queryParam.current = 1
this.queryParam.size = 10
this.activeUsage = ''
this.queryDate = ''
this.initializeQuery()
},
handleSearch() {
this.queryParam.size = 10;
this.queryParam.current = 1;
this.getList(1)
},
// 列表数据
getList(val){
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;
}
})
},
}
};
</script>
<style scoped lang="scss">
.dialog-content{
padding: 16px 24px;
max-height:500px
}
.department-wrap{
padding: 16px 24px;
max-height: 250px;
.department-wrap-list{
margin-bottom:32px;
}
.department-wrap-list:last-child{
margin-bottom:0;
}
}
.min-height350{min-height: 350px;}
.department-dept ::v-deep .el-checkbox__label {color: $color-000000}
</style>