【新增】后台页面设计【导航组件】增加跳转到其他小程序的下拉设置。

This commit is contained in:
jianweie code
2024-06-20 21:22:03 +08:00
parent 79e15fdeb1
commit f4d0d610cb
4 changed files with 21 additions and 4 deletions

View File

@@ -305,6 +305,19 @@ module.exports = {
} else if (type == navLinkType.shopCategory) {
//商品分类
this.$u.route('/pages/category/list/list', { id: val });
} else if (type == navLinkType.wxMiNiProgram) {
//跳转微信小程序
console.log("跳转微信小程序");
uni.navigateToMiniProgram({
appId: val,
path: '',
extraData: {},
success(res) {
console.log("跳转小程序成功", res);
}, fail(res) {
console.log("跳转小程序失败", res);
}
})
} else {
this.$u.route(val);
}

View File

@@ -132,6 +132,7 @@ export const navLinkType = {
article: 3,// "文章"
articleCategory: 4,// "文章分类",
intelligentForms: 5,// "智能表单"
shopCategory: 6// "商品分类"
shopCategory: 6,// "商品分类"
wxMiNiProgram: 7// "跳转小程序Appid"
};