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

42 lines
638 B

7 months ago
6 months ago
7 months ago
6 months ago
7 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:0,
  20. }
  21. },
  22. onLoad(options) {
  23. console.info(`options`,options)
  24. this.status = options.status
  25. },
  26. watch: {
  27. },
  28. methods: {
  29. },
  30. onReady() {
  31. }
  32. }
  33. </script>
  34. <style lang="scss" scoped>
  35. page {
  36. background-color: #f5f5f5 !important;
  37. }
  38. </style>