From a53f96100d48aff1fcdd49c09a02eea8a4a226e3 Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Wed, 4 Sep 2024 21:27:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 31 +++++++---- pages/payment/payment.vue | 70 +++++++++++++++++++++--- pages/weddingCelebration/weddingCelebration.vue | 15 +++-- static/tabbar/5.png | Bin 0 -> 4194 bytes static/tabbar/6.png | Bin 0 -> 4209 bytes store/store.js | 2 +- 6 files changed, 93 insertions(+), 25 deletions(-) create mode 100644 static/tabbar/5.png create mode 100644 static/tabbar/6.png diff --git a/pages.json b/pages.json index ecaec48..64a1962 100644 --- a/pages.json +++ b/pages.json @@ -41,17 +41,26 @@ "tabBar": { "backgroundColor": "white", "selectedColor": "#33a5fc", - "list": [{ - "pagePath": "pages/payment/payment", - "iconPath": "static/tabbar/1.png", - "selectedIconPath": "static/tabbar/2.png", - "text": "加油" - }, { - "pagePath": "pages/center/center", - "iconPath": "static/tabbar/3.png", - "selectedIconPath": "static/tabbar/4.png", - "text": "个人中心" - }] + "list": [ + { + "pagePath": "pages/payment/payment", + "iconPath": "static/tabbar/1.png", + "selectedIconPath": "static/tabbar/2.png", + "text": "加油" + }, + { + "pagePath": "pages/weddingCelebration/weddingCelebration", + "iconPath": "static/tabbar/5.png", + "selectedIconPath": "static/tabbar/6.png", + "text": "佳通婚礼车队服务" + }, + { + "pagePath": "pages/center/center", + "iconPath": "static/tabbar/3.png", + "selectedIconPath": "static/tabbar/4.png", + "text": "个人中心" + } + ] }, "uniIdRouter": {} } \ No newline at end of file diff --git a/pages/payment/payment.vue b/pages/payment/payment.vue index daa4d92..71a16a0 100644 --- a/pages/payment/payment.vue +++ b/pages/payment/payment.vue @@ -6,9 +6,10 @@ - - - #95 + + {{ configList.title.keyCentent }} + {{ configList.price.keyCentent }} @@ -42,8 +43,21 @@ - + + + + + @@ -179,17 +193,59 @@ this.$api('getRechargePage', res => { this.rechargeList = res.result.records }) - } + }, + + //拨打电话 + clickService(phoneNumber) { + uni.makePhoneCall({ + phoneNumber, + success: () => {}, + fail: () => {} + }); + }, } } -