register-select.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <template>
  2. <view class="container register">
  3. <view class="main">
  4. <view class="main-item">
  5. <view class="item" @click.stop="this.$api.navigateTo('/pages/seller/login/register-general')">
  6. <view class="icon">
  7. <image src="https://static.caimei365.com/app/img/icon/icon-general.png" mode=""></image>
  8. </view>
  9. <view class="text">个人机构</view>
  10. </view>
  11. <view class="item" @click.stop="this.$api.navigateTo('/pages/seller/login/register-member')">
  12. <view class="icon">
  13. <image src="https://static.caimei365.com/app/img/icon/icon-member.png" mode=""></image>
  14. </view>
  15. <view class="text">资质机构</view> <view class="text none">(原会员机构)</view>
  16. </view>
  17. </view>
  18. <view class="main-item-text"> 提示:请尽量搜集客户完整信息,优先注册资质机构 </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {}
  26. },
  27. onLoad(option) {},
  28. computed: {},
  29. methods: {}
  30. }
  31. </script>
  32. <style lang="scss">
  33. .register {
  34. width: 100%;
  35. height: 100%;
  36. position: relative;
  37. box-sizing: border-box;
  38. padding-top: 100rpx;
  39. .main {
  40. width: 100%;
  41. height: 370rpx;
  42. .main-item-text {
  43. width: 100%;
  44. height: 100rpx;
  45. float: left;
  46. box-sizing: border-box;
  47. margin-top: 150rpx;
  48. text-align: center;
  49. font-size: 24rpx;
  50. line-height: 100rpx;
  51. color: #fea785;
  52. }
  53. .main-item {
  54. width: 100%;
  55. height: auto;
  56. float: left;
  57. box-sizing: border-box;
  58. margin-top: 20rpx;
  59. .item {
  60. width: 100%;
  61. height: auto;
  62. float: left;
  63. display: flex;
  64. flex-direction: column;
  65. align-items: center;
  66. margin-top: 80rpx;
  67. .icon {
  68. width: 190rpx;
  69. height: 190rpx;
  70. image {
  71. width: 190rpx;
  72. height: 190rpx;
  73. display: block;
  74. }
  75. }
  76. .text {
  77. line-height: 54rpx;
  78. font-size: $font-size-30;
  79. text-align: center;
  80. color: #333333;
  81. &.none {
  82. color: #999999;
  83. font-size: $font-size-26;
  84. line-height: 28rpx;
  85. }
  86. }
  87. .text-small {
  88. line-height: 54rpx;
  89. font-size: $font-size-24;
  90. text-align: center;
  91. color: #999999;
  92. }
  93. }
  94. }
  95. }
  96. }
  97. </style>