From 6f7d07bad2b1af2664f3190bb3e92b0819c46864 Mon Sep 17 00:00:00 2001
From: 陶杰 <1378534974@qq.com>
Date: 星期三, 18 十二月 2024 09:49:06 +0800
Subject: [PATCH] 1.只有待付款的订单启用倒计时,避免频繁请求接口
---
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