From e9b9e26af022ef7bd5854de2a82f30afdb279de5 Mon Sep 17 00:00:00 2001
From: WindowBird <13870814+windows-bird@user.noreply.gitee.com>
Date: Mon, 25 Aug 2025 14:45:41 +0800
Subject: [PATCH] =?UTF-8?q?=E5=9C=A8=E7=BA=BF=E5=AE=A2=E6=9C=8D=E7=9A=84?=
=?UTF-8?q?=E5=BC=B9=E7=AA=97?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../customer-service-modal.vue | 372 ++++++++++++++++++
pages/profile/profile.vue | 15 +-
2 files changed, 386 insertions(+), 1 deletion(-)
create mode 100644 components/customer-service-modal/customer-service-modal.vue
diff --git a/components/customer-service-modal/customer-service-modal.vue b/components/customer-service-modal/customer-service-modal.vue
new file mode 100644
index 0000000..1863e3f
--- /dev/null
+++ b/components/customer-service-modal/customer-service-modal.vue
@@ -0,0 +1,372 @@
+
+
+
+
+
+
+
+
+ 订单要售后:
+
+
+
+
+
+
+ {{ service.name }}
+ {{ service.phone }}
+
+
+ 工作时间:
+ {{ service.workTime }}
+
+
+
+ 📞
+ 拨打
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/profile/profile.vue b/pages/profile/profile.vue
index 5bfcbcb..fc423e8 100644
--- a/pages/profile/profile.vue
+++ b/pages/profile/profile.vue
@@ -104,7 +104,7 @@
我的订单
-
+
+
+
@@ -128,6 +130,7 @@ export default {
name: 'ProfilePage',
data() {
return {
+ serviceModalVisible: false,
commonEnum,
userInfo: {
nickName: '昵称',
@@ -303,6 +306,16 @@ export default {
})
},
+ // 显示弹窗
+ showServiceModal() {
+ this.serviceModalVisible = true
+ },
+
+ // 关闭弹窗
+ handleCloseModal() {
+ this.serviceModalVisible = false
+ },
+
async goToUserList() {
if (this.isAgent) {
uni.navigateTo({