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

35 lines
645 B

8 months ago
  1. <template>
  2. <view>
  3. <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>
  4. <!-- 企业端 -->
  5. <enterpriseBox v-if="status==1" />
  6. <!-- 师傅端 -->
  7. <masterBox v-if="status==2" />
  8. </view>
  9. </template>
  10. <script>
  11. import enterpriseBox from "./component/enterprise.vue"
  12. import masterBox from "./component/master.vue"
  13. export default{
  14. components:{
  15. enterpriseBox,
  16. masterBox
  17. },
  18. data(){
  19. return {
  20. status:2,
  21. }
  22. },
  23. mounted() {
  24. },
  25. methods:{
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. </style>