register-select.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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>
  16. </view>
  17. </view>
  18. <view class="main-item-text">
  19. 提示:请尽量搜集客户完整信息,优先注册会员机构
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default{
  26. data() {
  27. return{
  28. }
  29. },
  30. onLoad(option) {
  31. },
  32. computed: {
  33. },
  34. methods:{
  35. }
  36. }
  37. </script>
  38. <style lang="scss">
  39. .register{
  40. width: 100%;
  41. height: 100%;
  42. position: relative;
  43. box-sizing: border-box;
  44. padding-top: 100rpx;
  45. .main{
  46. width: 100%;
  47. height: 370rpx;
  48. .main-item-text{
  49. width: 100%;
  50. height: 100rpx;
  51. float: left;
  52. box-sizing: border-box;
  53. margin-top: 150rpx;
  54. text-align: center;
  55. font-size: 24rpx;
  56. line-height: 100rpx;
  57. color: #fea785;
  58. }
  59. .main-item{
  60. width: 100%;
  61. height: auto;
  62. float: left;
  63. box-sizing: border-box;
  64. margin-top: 20rpx;
  65. .item{
  66. width: 100%;
  67. height: auto;
  68. float: left;
  69. display: flex;
  70. flex-direction: column;
  71. align-items: center;
  72. margin-top: 80rpx;
  73. .icon{
  74. width: 190rpx;
  75. height: 190rpx;
  76. image{
  77. width: 190rpx;
  78. height: 190rpx;
  79. display: block;
  80. }
  81. }
  82. .text{
  83. line-height: 54rpx;
  84. font-size: $font-size-30;
  85. text-align: center;
  86. color: #333333;
  87. }
  88. .text-small{
  89. line-height: 54rpx;
  90. font-size: $font-size-24;
  91. text-align: center;
  92. color: #999999;
  93. }
  94. }
  95. }
  96. }
  97. }
  98. </style>