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

59 lines
1.6 KiB

6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
6 months ago
4 months ago
6 months ago
4 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 class="se-pos-fixed se-flex-h-c se-bs-t se-w-750 se-h-200" style="background-color: #fff;bottom: 0;left: 0;">
  15. <view @click="onJump()" class="se-mb-20 se-br-20 se-w-400 se-ml-20 se-flex-h-c se-h-80 se-lh-80 se-ta-c se-fs-32 se-c-33 se-bgc-f5">
  16. <text class="se-ml-10">跳过</text>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default{
  23. data(){
  24. return{
  25. }
  26. },
  27. methods:{
  28. onJump(){
  29. uni.switchTab({
  30. url:"/pages/home/index"
  31. })
  32. },
  33. onBusinessSettled(){
  34. uni.navigateTo({
  35. url:"/pages_subpack/business-settled/index"
  36. })
  37. },
  38. onMasterSettled(){
  39. uni.navigateTo({
  40. url:"/pages_subpack/master-settled/index"
  41. })
  42. }
  43. }
  44. }
  45. </script>
  46. <style>
  47. .business{
  48. background: #ff7a31;
  49. border: 8rpx solid rgba(255,255,255,0.64);
  50. border-radius: 16rpx;
  51. }
  52. .master{
  53. background: #f0a921;
  54. border: 8rpx solid rgba(255,255,255,0.64);
  55. border-radius: 16rpx;
  56. }
  57. </style>