用工小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

36 lines
645 B

<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>