From 516e36a4748cc5863bc1f0e00fef32062dcf7cde Mon Sep 17 00:00:00 2001
From: hutongqing <hutongqing@hnkhzn.com>
Date: 星期四, 26 十二月 2024 21:56:24 +0800
Subject: [PATCH] 1
---
代码管理/淮安PDA/pages/index/index.vue | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git "a/\344\273\243\347\240\201\347\256\241\347\220\206/\346\267\256\345\256\211PDA/pages/index/index.vue" "b/\344\273\243\347\240\201\347\256\241\347\220\206/\346\267\256\345\256\211PDA/pages/index/index.vue"
index 67f9ff8..c0fb4d7 100644
--- "a/\344\273\243\347\240\201\347\256\241\347\220\206/\346\267\256\345\256\211PDA/pages/index/index.vue"
+++ "b/\344\273\243\347\240\201\347\256\241\347\220\206/\346\267\256\345\256\211PDA/pages/index/index.vue"
@@ -3,7 +3,7 @@
<view class="" slot="body">
<!-- <view v-for="(item,index) in tree" :key="item.id"> -->
<u-grid :col="3">
- <u-grid-item @tap="clickCoupon(item.url,item.menuId,item.description)" v-for="(item) in tree"
+ <u-grid-item @tap="clickCoupon(item.url,item.menuId,item.description,item.menuName)" v-for="(item) in tree"
:key="item.menuId">
<u-icon name="home" :size="50"></u-icon>
<view class="grid-text">{{item.menuName}}</view>
@@ -115,14 +115,15 @@
// return true;
return this.datas.find(x => x.text == text);
},
- clickCoupon(url, menuid, warehouseid) {
+ clickCoupon(url, menuid, warehouseid, menuname) {
// console.log("clickCoupon")
if (this.hasLogin()) {
this.$u.route({
url: url,
params: {
menuId: menuid,
- warehouseId: warehouseid
+ warehouseId: warehouseid,
+ menuName: menuname
}
})
} else {
--
Gitblit v1.9.3