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

40 lines
550 B

8 months ago
  1. <template>
  2. <view>
  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. watch: {
  23. },
  24. methods: {
  25. },
  26. onReady() {
  27. }
  28. }
  29. </script>
  30. <style lang="scss" scoped>
  31. page {
  32. background-color: #f5f5f5 !important;
  33. }
  34. </style>