优化贺报页面时间的展示

This commit is contained in:
xuxingjun
2024-12-18 17:25:24 +08:00
parent 46cccb9d4e
commit 93d5b9a05f

View File

@@ -10,7 +10,10 @@
<div class="pName">{{ orderList.productNameFull }}</div>
<div class="type">{{ orderList.outOrderType == 'accept' ? '承保规保' : '预收规保' }}</div>
<div class="yuan">{{ orderList.prem }}<span style="color: #333333"></span></div>
<div class="time">{{ orderList.outOrderType == 'accept' ? '承保时间:' : '预收时间:' }}{{ orderList.appntDate }}</div>
<div class="time">{{ orderList.outOrderType == 'accept' ? '承保时间:' : '预收时间:' }}
<span v-if="orderList.outOrderType == 'accept'">{{ orderList.signDate }}</span>
<span v-if="orderList.outOrderType != 'accept'">{{ orderList.appntDate }}</span>
</div>
</div>
</div>
<div class="flex justify-content-s bottom-btn border-color">
@@ -53,6 +56,7 @@ export default {
methods: {
getList() {
this.orderList = JSON.parse(localStorage.getItem('orderList'))
console.log('页面数据',this.orderList);
},
// 将 Blob转base64
blobToBase64(blob) {