ReedawFoodApp/pages/target/target.vue

30 lines
456 B
Vue
Raw Normal View History

2026-03-23 16:23:40 +08:00
<template>
<view class="content ">
</view>
</template>
<script>
import {
mapState
} from "vuex";
export default {
data() {
2026-03-27 10:56:18 +08:00
return {}
2026-03-23 16:23:40 +08:00
},
2026-03-27 10:56:18 +08:00
onTabItemTap(item) {
// 监听 Tab 点击,立即跳转外部小程序
uni.navigateToMiniProgram({
appId: "wxdd371c9267b7299b",
path: "/pages/index/index",
success() {
console.log('跳转成功');
2026-03-23 16:23:40 +08:00
}
2026-03-27 10:56:18 +08:00
});
},
methods: {}
2026-03-23 16:23:40 +08:00
}
</script>
<style scoped lang="scss">
</style>