From 6739e375ad0dc1c5e7c7cdb9303ccedf0df7b611 Mon Sep 17 00:00:00 2001 From: sjeam <359824901@qq.com> Date: Wed, 3 Sep 2025 14:56:17 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/my/components/wx-login.vue | 22 ++++++--- src/pages/service/index.vue | 66 ++++++++++----------------- src/static/icons/fj_1.png | Bin 0 -> 3478 bytes src/static/icons/fj_2.png | Bin 0 -> 3097 bytes src/static/icons/fj_3.png | Bin 0 -> 2599 bytes src/static/icons/fj_4.png | Bin 0 -> 2645 bytes src/static/icons/fj_5.png | Bin 0 -> 2569 bytes src/static/icons/fj_6.png | Bin 0 -> 2964 bytes src/static/icons/fj_7.png | Bin 0 -> 3464 bytes src/static/icons/fj_8.png | Bin 0 -> 2743 bytes src/static/icons/local_1.png | Bin 0 -> 2745 bytes src/static/icons/local_2.png | Bin 0 -> 3000 bytes src/static/icons/local_3.png | Bin 0 -> 2177 bytes src/static/icons/local_4.png | Bin 0 -> 3035 bytes src/static/icons/ly_1.png | Bin 0 -> 2312 bytes src/static/icons/ly_2.png | Bin 0 -> 2828 bytes src/static/icons/ly_3.png | Bin 0 -> 2797 bytes 17 files changed, 39 insertions(+), 49 deletions(-) create mode 100644 src/static/icons/fj_1.png create mode 100644 src/static/icons/fj_2.png create mode 100644 src/static/icons/fj_3.png create mode 100644 src/static/icons/fj_4.png create mode 100644 src/static/icons/fj_5.png create mode 100644 src/static/icons/fj_6.png create mode 100644 src/static/icons/fj_7.png create mode 100644 src/static/icons/fj_8.png create mode 100644 src/static/icons/local_1.png create mode 100644 src/static/icons/local_2.png create mode 100644 src/static/icons/local_3.png create mode 100644 src/static/icons/local_4.png create mode 100644 src/static/icons/ly_1.png create mode 100644 src/static/icons/ly_2.png create mode 100644 src/static/icons/ly_3.png diff --git a/src/pages/my/components/wx-login.vue b/src/pages/my/components/wx-login.vue index 33619c4..153379d 100644 --- a/src/pages/my/components/wx-login.vue +++ b/src/pages/my/components/wx-login.vue @@ -80,13 +80,6 @@ color: 'blue', }, - { - name: '问题反馈', - url: '/pages/users/feedback/index', - type: 2, - icon: '/static/icons/rural_ecommerce.png', - color: 'red', - }, { name: '平台客服', url: '17309090670', @@ -143,6 +136,21 @@ function more(item) { show.value = true return } + if (item.name == '平台客服') { + uni.showModal({ + title: '提示', + content: ' 确定拨打客服电话:' + 17309090670 + '吗?', + success: function (res) { + if (res.confirm) { + uni.makePhoneCall({ + phoneNumber: 17309090670, + }) + } + }, + }) + return + } + if (item.type == 1) { getUrl(item.url) } else if (item.type == 2) { diff --git a/src/pages/service/index.vue b/src/pages/service/index.vue index 5f9ea57..7832775 100644 --- a/src/pages/service/index.vue +++ b/src/pages/service/index.vue @@ -51,49 +51,49 @@ { name: '找停车', url: '/pages/activity/lease/index', - icon: '/static/icons/village_service.png', + icon: '/static/icons/fj_1.png', color: 'green', }, { name: '农事服务', url: '/pages/store/home/index?id=13', - icon: '/static/icons/agriculture_service.png', + icon: '/static/icons/fj_2.png', color: 'blue', }, { name: '店铺街', url: '/pages/store/shopStreet/index', - icon: '/static/icons/agriculture_course.png', + icon: '/static/icons/fj_3.png', color: 'orange', }, { name: '特产产品', url: '/pages/activity/lease/index', - icon: '/static/icons/village_service.png', + icon: '/static/icons/fj_4.png', color: 'green', }, { name: '特色美食', url: '/pages/store/home/index?id=13', - icon: '/static/icons/agriculture_service.png', + icon: '/static/icons/fj_5.png', color: 'blue', }, { name: '当季产品', url: '/pages/activity/lease/index', - icon: '/static/icons/agriculture_course.png', + icon: '/static/icons/fj_6.png', color: 'orange', }, { name: '美丽乡村', url: '/pages/activity/lease/index', - icon: '/static/icons/rural_ecommerce.png', + icon: '/static/icons/fj_7.png', color: 'red', }, { name: '景区景色', url: '/pages/activity/lease/index', - icon: '/static/icons/rural_ecommerce.png', + icon: '/static/icons/fj_8.png', color: 'red', }, ]" @@ -135,35 +135,23 @@ @click="more" v-for="item in [ { - name: '特产产品', + name: '酒店住宿', url: '/pages/activity/lease/index', - icon: '/static/icons/village_service.png', + icon: '/static/icons/ly_1.png', color: 'green', }, { - name: '特色美食', + name: '风景景区', url: '/pages/activity/lease/index', - icon: '/static/icons/agriculture_service.png', + icon: '/static/icons/ly_2.png', color: 'blue', }, { - name: '当季产品', + name: '天气预报', url: '/pages/activity/lease/index', - icon: '/static/icons/agriculture_course.png', + icon: '/static/icons/ly_3.png', color: 'orange', }, - { - name: '美丽乡村', - url: '/pages/activity/lease/index', - icon: '/static/icons/rural_ecommerce.png', - color: 'red', - }, - { - name: '景区景色', - url: '/pages/activity/lease/index', - icon: '/static/icons/rural_ecommerce.png', - color: 'red', - }, ]" > @@ -185,9 +173,9 @@