register-select.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <template>
  2. <view class="container register">
  3. <view class="main">
  4. <view class="title">请选择注册的账号类型</view>
  5. <view class="main-item">
  6. <view class="item" @click.stop="this.$api.navigateTo('/pages/login/register')">
  7. <view class="icon">
  8. <image src="https://static.caimei365.com/app/img/icon/icon-club.png" mode=""></image>
  9. </view>
  10. <view class="text by">采购方(买家)</view>
  11. <view class="text-small">医院机构/美容会所/个人买家</view>
  12. </view>
  13. <view class="item" @click.stop="this.$api.navigateTo('/pages/login/register-supplier')">
  14. <view class="icon">
  15. <image src="https://static.caimei365.com/app/img/icon/icon-supplier.png" mode=""></image>
  16. </view>
  17. <view class="text my">供应商(卖家)</view>
  18. <view class="text-small">仪器/产品/服务供应商</view>
  19. </view>
  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. .title{
  49. width: 100%;
  50. height: 46rpx;
  51. line-height: 46rpx;
  52. float: left;
  53. text-align: center;
  54. font-size: $font-size-34;
  55. color: $text-color;
  56. font-weight: bold;
  57. }
  58. .main-item{
  59. width: 100%;
  60. height: auto;
  61. float: left;
  62. box-sizing: border-box;
  63. margin-top: 20rpx;
  64. .item{
  65. width: 100%;
  66. height: auto;
  67. float: left;
  68. display: flex;
  69. flex-direction: column;
  70. align-items: center;
  71. margin-top: 50rpx;
  72. .icon{
  73. width: 186rpx;
  74. height: 186rpx;
  75. image{
  76. width: 186rpx;
  77. height: 186rpx;
  78. display: block;
  79. }
  80. }
  81. .text{
  82. line-height: 54rpx;
  83. font-size: $font-size-30;
  84. text-align: center;
  85. &.by{
  86. color: #3b77ff;
  87. }
  88. &.my{
  89. color: #ff7a51;
  90. }
  91. }
  92. .text-small{
  93. line-height: 54rpx;
  94. font-size: $font-size-24;
  95. text-align: center;
  96. color: #999999;
  97. }
  98. }
  99. }
  100. }
  101. .bg_image{
  102. position: absolute;
  103. width: 100%;
  104. height:354rpx;
  105. left: 0;
  106. bottom: 0;
  107. }
  108. }
  109. </style>