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

49 lines
1.2 KiB

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
  1. <template>
  2. <view>
  3. <view class="se-fs-40 se-fw-6 se-ta-c se-pt-120">
  4. 请选择您要入驻的身份
  5. </view>
  6. <view @click="onBusinessSettled" class="business se-mt-80 se-br-10 se-mx-35 se-bgc-red se-flex se-flex-h-sb se-w-680 se-h-240 se-fs-48 se-c-white">
  7. <text class="se-ml-80">企业/个人入驻</text>
  8. <image class="se-a-170 se-br-p-50 se-mr-80" src="@/static/image/header.png" mode=""></image>
  9. </view>
  10. <view @click="onMasterSettled" class="master se-mt-80 se-br-10 se-mx-35 se-bgc-orange se-flex se-flex-h-sb se-w-680 se-h-240 se-fs-48 se-c-white">
  11. <text class="se-ml-80">师傅入驻</text>
  12. <image class="se-a-170 se-br-p-50 se-mr-80" src="@/static/image/47761.png" mode=""></image>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default{
  18. data(){
  19. return{
  20. }
  21. },
  22. methods:{
  23. onBusinessSettled(){
  24. uni.navigateTo({
  25. url:"/pages_subpack/business-settled/index"
  26. })
  27. },
  28. onMasterSettled(){
  29. uni.navigateTo({
  30. url:"/pages_subpack/master-settled/index"
  31. })
  32. }
  33. }
  34. }
  35. </script>
  36. <style>
  37. .business{
  38. background: #ff7a31;
  39. border: 8rpx solid rgba(255,255,255,0.64);
  40. border-radius: 16rpx;
  41. }
  42. .master{
  43. background: #f0a921;
  44. border: 8rpx solid rgba(255,255,255,0.64);
  45. border-radius: 16rpx;
  46. }
  47. </style>