diff --git a/components/buns-post-detail-templates/bpd-send-site-tmp.vue b/components/buns-post-detail-templates/bpd-send-site-tmp.vue
index fce8e82..6233483 100644
--- a/components/buns-post-detail-templates/bpd-send-site-tmp.vue
+++ b/components/buns-post-detail-templates/bpd-send-site-tmp.vue
@@ -37,9 +37,11 @@
-
-
+
+
+ 预计送达时间:
+ {{modelInfo.estimateDate || '-'}}
+
diff --git a/pages/post/query.vue b/pages/post/query.vue
index 4c96a02..70a1452 100644
--- a/pages/post/query.vue
+++ b/pages/post/query.vue
@@ -155,10 +155,10 @@
}
// 更新缓存
setSessionSystemInfo({ postQueryHistory: this.historyList })
-
- if(resData.estimateDate){
- resData.estimateDate = dayjs(resData.estimateDate).format('YYYY-MM-DD')
- }
+ let estimateDate = resData.estimateDate
+ // 已签收取 签收时间
+ resData.waybillStatus == 50 && (estimateDate = resData.signDate)
+ estimateDate && (resData.estimateDate = dayjs(estimateDate).format('YYYY-MM-DD'))
// 通过对象合并才能修改父级 数据
Object.assign(this.modelInfo, resData || {})
// 判断是否有权限查看图片