增加聊天功能

This commit is contained in:
2025-12-04 17:14:47 +08:00
parent ca829d7f00
commit 6f1185be3a
25 changed files with 2504 additions and 2 deletions

View File

@@ -281,6 +281,11 @@ const myFunList = ref([
type: "fenxiao",
icon: "/static/icon/fenxiao.svg",
},
{
name: "商家推送",
type: "msg",
icon: "/static/icon/msg.png",
},
// {
// name: "我的订单",
// type: "my_order",
@@ -383,6 +388,9 @@ const clickTo = (item, index) => {
}
let shopId = null;
switch (item.type) {
case "msg":
uni.navigateTo({ url: "/pageChat/index" });
break;
case "my_order":
uni.pro.switchTab("order/index");
break;