Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
32
pro_v3.5.1/view/uniapp/pages/user/components/menus/index.vue
Normal file
32
pro_v3.5.1/view/uniapp/pages/user/components/menus/index.vue
Normal file
@@ -0,0 +1,32 @@
|
||||
<script>
|
||||
import template1 from './template1.vue';
|
||||
import template2 from './template2.vue';
|
||||
import template3 from './template3.vue';
|
||||
export default {
|
||||
components: {
|
||||
template1,
|
||||
template2,
|
||||
template3
|
||||
},
|
||||
props: {
|
||||
menuData: {
|
||||
type: Object,
|
||||
default: () => {}
|
||||
},
|
||||
routineContact: {
|
||||
type: Number,
|
||||
default: 0
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<view v-if="menuData.is_show">
|
||||
<template1 v-if="menuData.style == 1" :menuData="menuData" :routineContact='routineContact'></template1>
|
||||
<template2 v-if="menuData.style == 2" :menuData="menuData" :routineContact='routineContact'></template2>
|
||||
<template3 v-if="menuData.style == 3" :menuData="menuData" :routineContact='routineContact'></template3>
|
||||
</view>
|
||||
</template>
|
||||
|
||||
<style></style>
|
||||
Reference in New Issue
Block a user