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

29 lines
456 B

7 months ago
  1. <template>
  2. <view class="u-page se-w-vw-100">
  3. <!-- 企业端 -->
  4. <enterpriseBox v-if="status==1" />
  5. <!-- 师傅端 -->
  6. <masterBox v-if="status==2" />
  7. </view>
  8. </template>
  9. <script>
  10. import enterpriseBox from "./component/enterprise.vue"
  11. import masterBox from "./component/master.vue"
  12. export default{
  13. components:{
  14. enterpriseBox,
  15. masterBox
  16. },
  17. data(){
  18. return{
  19. status:2,
  20. }
  21. },
  22. methods:{
  23. }
  24. }
  25. </script>
  26. <style>
  27. </style>