初始提交
This commit is contained in:
35
pages/commonPage/morePage/index.vue
Normal file
35
pages/commonPage/morePage/index.vue
Normal 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>
|
||||
Reference in New Issue
Block a user