diff --git a/pages.json b/pages.json
index badf2ad9..067525dd 100644
--- a/pages.json
+++ b/pages.json
@@ -969,6 +969,13 @@
"enablePullDownRefresh": true,
"navigationBarTitleText": "订单详情"
}
+ },
+ {
+ "path": "logistics/logistics",
+ "style": {
+ "enablePullDownRefresh": false,
+ "navigationBarTitleText": "物流信息"
+ }
}
]
},
diff --git a/pages/plugins/delivery/logistics/logistics.css b/pages/plugins/delivery/logistics/logistics.css
new file mode 100644
index 00000000..dc2b76f0
--- /dev/null
+++ b/pages/plugins/delivery/logistics/logistics.css
@@ -0,0 +1,20 @@
+.map-container {
+ height: 100vh;
+}
+.team {
+ left: 20rpx;
+ bottom: calc(env(safe-area-inset-bottom) + 20rpx);
+ width: calc(100% - 40rpx);
+ background-color: rgb(255 255 255 / 0.85);
+}
+.team .base .avatar {
+ width: 80rpx;
+ height: 80rpx;
+}
+.team .tel {
+ right: 20rpx;
+ top: calc(50% - 27rpx);
+ line-height: 54rpx;
+ height: 54rpx;
+ width: 54rpx;
+}
\ No newline at end of file
diff --git a/pages/plugins/delivery/logistics/logistics.vue b/pages/plugins/delivery/logistics/logistics.vue
new file mode 100644
index 00000000..95a30cb0
--- /dev/null
+++ b/pages/plugins/delivery/logistics/logistics.vue
@@ -0,0 +1,202 @@
+
+
+
+
+
+
+
+
+
+ {{team.idcard_name}}
+
+
+
+
+
+
+
+ 配送时间:
+ {{start_delivery_time}}
+ 未开始配送
+
+
+ 送达时间:
+ {{success_delivery_time}}
+ 还没有送达
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/user-order/user-order.vue b/pages/user-order/user-order.vue
index 29495f2c..b3717bb9 100644
--- a/pages/user-order/user-order.vue
+++ b/pages/user-order/user-order.vue
@@ -56,32 +56,29 @@
+ ((item.plugins_express_data || 0) == 1 && (item.express_number || null) != null) ||
+ (item.plugins_delivery_data || 0) == 1
+ " class="item-operation tr br-t padding-vertical-main">
+
-
+
@@ -194,15 +191,15 @@
params: params.data,
});
}
- },
-
- onShow() {
- // 数据加载
- this.init();
// 初始化配置
this.init_config();
+ // 数据加载
+ this.init();
+ },
+
+ onShow() {
// 分享菜单处理
app.globalData.page_share_handle();
},