|
|
- <template>
- <view>
- <view class="se-bgc-orange se-pos se-pos-lt se-w-vw-100 se-h-vh-30" style="z-index: -1;border-bottom-left-radius: 120rpx;border-bottom-right-radius: 120rpx;"></view>
- <!-- 企业端 -->
- <enterpriseBox v-if="status==1" />
- <!-- 师傅端 -->
- <masterBox v-if="status==2" />
- </view>
- </template>
-
- <script>
- import enterpriseBox from "./component/enterprise.vue"
- import masterBox from "./component/master.vue"
- export default{
- components:{
- enterpriseBox,
- masterBox
- },
- data(){
- return {
- status:2,
- }
- },
- mounted() {
-
- },
- methods:{
-
- }
-
- }
- </script>
-
- <style lang="scss" scoped>
-
- </style>
|