From 0dabf05bfe9df453ffd394e2f280f878c848942a Mon Sep 17 00:00:00 2001
From: 陶杰 <1378534974@qq.com>
Date: 星期三, 04 十二月 2024 13:19:32 +0800
Subject: [PATCH] 1.客服电话 2.订单优惠券自动选择 3.合伙人送货详情等

---
 pages/order/order-detail.vue |   19 +++++++++++++++++--
 1 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/pages/order/order-detail.vue b/pages/order/order-detail.vue
index cbc4434..4acc628 100644
--- a/pages/order/order-detail.vue
+++ b/pages/order/order-detail.vue
@@ -120,6 +120,7 @@
 			})
 
 		},
+		
 		methods: {
 			// 商品评论
 			commentButtonClick(){
@@ -222,9 +223,23 @@
 			async callTel() {
 				await this.$message.confirm('是否拨打客服电话')
 				uni.makePhoneCall({
-					phoneNumber: '15974805814'
+					phoneNumber: '19288780072'
 				});
 			},
+
+			async getTelNum(){
+				this.$http.request('get', '/api/code/value', {
+					params: {
+						type: 'customer_service_hotline'
+					}
+				}).then(res => {
+					var data = res.data;
+
+					console.log(data)
+					
+				})
+			},
+
 			async getItemList() {
 				this.$message.showLoading()
 				const {
@@ -785,7 +800,7 @@
 			<view class="flex m-t-12">
 				<view class="flex1 w-fit m-auto icon-view" @click.stop="callTel">
 					<image src="/static/common/icon-call.png" class="icon icon-call m-r-10  img100"></image>
-					拨打15974805814
+					拨打19288780072
 				</view>
 				<view class="flex1 w-fit m-auto icon-view flex flex-wrap-normal" open-type="contact">
 					<image src="/static/common/icon-wx.png" class="icon icon-call m-t-2  m-r-10 img100"></image>

--
Gitblit v1.9.3