用工小程序前端代码
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.
 
 
 

30 lines
456 B

<template>
<view class="u-page se-w-vw-100">
<!-- 企业端 -->
<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,
}
},
methods:{
}
}
</script>
<style>
</style>