短信记录相关
This commit is contained in:
parent
a9bdd338df
commit
2bfd65f93b
@ -157,28 +157,18 @@
|
||||
<div v-if="rightActive === 5">
|
||||
<div class="tab-content-title f16 f-weight600 pb-8">签字记录</div>
|
||||
<el-scrollbar :style="'height:'+`${contentHeight}`+'px'">
|
||||
<el-card shadow="never" class="mt-8">
|
||||
<div class="f-weight600 pb-6">(2022)川092701民诉02号</div>
|
||||
<div class="pb-6 color-86909C f12">2024-11-29 21:15:05</div>
|
||||
|
||||
<el-card shadow="never" class="mt-8" v-for="(item, index) in WritRecord" :key="index">
|
||||
<!-- <div class="f-weight600 pb-6">(2022)川092701民诉02号</div> -->
|
||||
<div class="pb-6 color-86909C f12">{{ item.createAt | formaDate("yyyy-MM-dd hh:mm:ss") }}</div>
|
||||
<div class="mb-8 flex-row align-items-center border-radius-4 agreement-pdf">
|
||||
<a class="case-img"><img :src="imgPdf"/></a>
|
||||
<div class="ml-8">调解协议.PDF</div>
|
||||
<div class="ml-8">{{item.documentType.desc}}</div>
|
||||
</div>
|
||||
|
||||
<div class="flex-row align-items-center">
|
||||
<div class="flex-row align-items-center mr-16">张三<el-tag class="ml-8" size="small" effect="danger">未签</el-tag></div>
|
||||
<div class="flex-row align-items-center">李四<el-tag class="ml-8" size="small" effect="success">已签</el-tag></div>
|
||||
</div>
|
||||
</el-card>
|
||||
<el-card shadow="never" class="mt-8">
|
||||
<div class="f-weight600 pb-6">(2022)川092701民诉02号</div>
|
||||
<div class="pb-6 color-86909C f12">2024-11-29 21:15:05</div>
|
||||
<div class="mb-8 flex-row align-items-center border-radius-4 agreement-pdf">
|
||||
<a class="case-img"><img :src="imgPdf"/></a>
|
||||
<div class="ml-8">调解协议.PDF</div>
|
||||
</div>
|
||||
<div class="flex-row align-items-center">
|
||||
<div class="flex-row align-items-center mr-16">张三<el-tag class="ml-8" size="small" effect="danger">未签</el-tag></div>
|
||||
<div class="flex-row align-items-center">李四<el-tag class="ml-8" size="small" effect="success">已签</el-tag></div>
|
||||
<div class="flex-row align-items-center mr-16" v-if="item.unsign!=''&&item.unsign!=null">{{item.unsign}}<el-tag class="ml-8" size="small" effect="danger">未签</el-tag></div>
|
||||
<div class="flex-row align-items-center" v-if="item.signed!=''&&item.signed!=null">{{item.signed}}<el-tag class="ml-8" size="small" effect="success">已签</el-tag></div>
|
||||
</div>
|
||||
</el-card>
|
||||
</el-scrollbar>
|
||||
@ -333,6 +323,7 @@ export default {
|
||||
communicationRecord: [],
|
||||
communicationvideoRecord:[],
|
||||
smsRecord:[],
|
||||
WritRecord:[],
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
@ -361,6 +352,10 @@ export default {
|
||||
{
|
||||
this.getvideomediate_record()
|
||||
}
|
||||
if(this.rightActive == 5)
|
||||
{
|
||||
this.getWritCaseList()
|
||||
}
|
||||
},
|
||||
// 获取调解记录
|
||||
getmediate_record() {
|
||||
@ -418,6 +413,14 @@ export default {
|
||||
})
|
||||
}).catch(() => {});
|
||||
},
|
||||
// 签字记录列表数据
|
||||
getWritCaseList() {
|
||||
tracapi.posttrace_sign_detail({size:100,current:1,caseId:this.caseId}).then(res => {
|
||||
if (!res.code) {
|
||||
this.WritRecord = res.records;
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@ -50,12 +50,12 @@
|
||||
handleBy 操作人
|
||||
handleTime 操作时间 -->
|
||||
<a class="color-86909C f12 pt-6 pb-6">{{item.handleBy}} {{ $util.formatDate(item.handleTime, 'YYYY-MM-DD HH:mm:ss')}}</a>
|
||||
<div class="flex-row justify-content-between align-items-center color-86909C" v-if="item.signList.length > 0">
|
||||
<div class="flex-row justify-content-between align-items-center color-86909C" v-if="item.signList.length > 0 || item.unsignList.length > 0">
|
||||
<div>签字</div>
|
||||
<el-tag class="ml-4" size="small" type="success" effect="plain"
|
||||
v-for="(item1, index1) in item.signList" :key="index1">{{item1.signed}}</el-tag>
|
||||
v-for="(item1, index1) in item.signList" :key="index1">{{item1.signName}}</el-tag>
|
||||
<el-tag class="ml-4" size="small" type="info" effect="plain"
|
||||
v-for="(item2, index2) in item.unsignList" :key="index2">{{item2.unsigned}}</el-tag>
|
||||
v-for="(item2, index2) in item.unsignList" :key="index2">{{item2.signName}}</el-tag>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user