初始代码

This commit is contained in:
wangmingwei
2026-04-21 16:55:00 +08:00
parent be9f1657b9
commit 35101db700
1335 changed files with 211213 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<template>
<view class="morePage-v">
<allCommonFlow ref="allCommonFlow" v-if="type == 1"></allCommonFlow>
<allCommonMenus ref="allCommonMenus" v-if="type == 2"></allCommonMenus>
</view>
</template>
<script>
import allCommonFlow from './allCommonFlow.vue'
import allCommonMenus from './allCommonMenus.vue'
export default {
components: {
allCommonFlow,
allCommonMenus
},
data() {
return {
type: '1'
}
},
onLoad(e) {
this.type = e?.type || '1'
uni.setNavigationBarTitle({
title: this.type == '1' ? '常用流程' : '常用菜单'
})
},
methods: {}
}
</script>
<style>
page {
background-color: #f0f2f6;
}
</style>