diff --git a/pages/chat/ChatMainList.vue b/pages/chat/ChatMainList.vue
index 0572af7..5f1e981 100644
--- a/pages/chat/ChatMainList.vue
+++ b/pages/chat/ChatMainList.vue
@@ -188,6 +188,9 @@
const handleReplyInstruct = (item) => {
if(item.type === 'MyOrder') {
/// 订单
+ uni.navigateTo({
+ url: '/pages/order/list'
+ })
return
}
commonType = item.type
diff --git a/pages/drawer/DrawerHome.vue b/pages/drawer/DrawerHome.vue
index 12fc8ef..24b257c 100644
--- a/pages/drawer/DrawerHome.vue
+++ b/pages/drawer/DrawerHome.vue
@@ -1,48 +1,23 @@
- 抽屉页面
-
-
-
-
-
-
-
-
- {{item}}
-
+
+ 我的
+
+
@@ -50,43 +25,26 @@
.drawer-home {
width: 100%;
height: 100vh;
- background-color: #E9F3F7;
- padding-top: 44px;
+ background-color: #fff;
+ padding-top: 44px;
+ }
+
+ .drawer-home-nav {
+ position: relative;
+ padding: 12px;
+ display: flex;
+ justify-content: center; /* 文字水平居中 */
+ align-items: center; /* 垂直居中 */
- .drawer-home-nav {
- padding: 12px;
- display: flex;
- justify-content: center;
-
- text {
- font-size: 20px;
- text-align: center;
- }
+ .title {
+ font-size: 18px;
+ text-align: center;
+ color: #333333;
}
- .drawer-list {
- display: flex;
- flex-direction: column;
- height: 100%;
- overflow-y: scroll;
- }
-
- .message-item {
- display: flex;
- justify-content: center;
- background-color: white;
- margin: 6px 12px;
- padding: 8px 24px;
- border-radius: 4px;
- font-size: 14px;
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
-
- text {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 14px;
- color: #333333;
- }
+ .close-icon {
+ position: absolute;
+ left: 12px; /* 距离左边12px */
}
}
\ No newline at end of file
diff --git a/pages/drawer/MineSetting.vue b/pages/drawer/MineSetting.vue
new file mode 100644
index 0000000..f6edcb7
--- /dev/null
+++ b/pages/drawer/MineSetting.vue
@@ -0,0 +1,149 @@
+
+
+
+
+
+ 头像
+
+
+
+ 昵称
+ {{ userInfo.nickname }}
+
+
+ 手机号
+ {{ userInfo.phone }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/module/booking/QuickBookingContentList.vue b/pages/module/booking/QuickBookingContentList.vue
index 0de4551..919dc83 100644
--- a/pages/module/booking/QuickBookingContentList.vue
+++ b/pages/module/booking/QuickBookingContentList.vue
@@ -22,7 +22,7 @@
/人
- 下单
+ 下单
@@ -39,6 +39,13 @@
default: {}
}
})
+
+ /// 去下单
+ const placeOrderHandle = (item) => {
+ uni.navigateTo({
+ url: `/pages/goods/index?commodityId=${item.commodityId}`,
+ })
+ }