register-select.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. <image class="bg_image" src="https://admin-b.caimei365.com/userfiles/1/images/photo/2020/11/%E8%83%8C%E6%99%AF.png" mode=""></image>
  23. </view>
  24. </template>
  25. <script>
  26. export default{
  27. data() {
  28. return{
  29. }
  30. },
  31. onLoad(option) {
  32. },
  33. computed: {
  34. },
  35. methods:{
  36. }
  37. }
  38. </script>
  39. <style lang="scss">
  40. .register{
  41. width: 100%;
  42. height: 100%;
  43. position: relative;
  44. box-sizing: border-box;
  45. padding-top: 100rpx;
  46. .main{
  47. width: 100%;
  48. height: 370rpx;
  49. .title{
  50. width: 100%;
  51. height: 46rpx;
  52. line-height: 46rpx;
  53. float: left;
  54. text-align: center;
  55. font-size: $font-size-34;
  56. color: $text-color;
  57. font-weight: bold;
  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: 50rpx;
  73. .icon{
  74. width: 186rpx;
  75. height: 186rpx;
  76. image{
  77. width: 186rpx;
  78. height: 186rpx;
  79. display: block;
  80. }
  81. }
  82. .text{
  83. line-height: 54rpx;
  84. font-size: $font-size-30;
  85. text-align: center;
  86. &.by{
  87. color: #3b77ff;
  88. }
  89. &.my{
  90. color: #ff7a51;
  91. }
  92. }
  93. .text-small{
  94. line-height: 54rpx;
  95. font-size: $font-size-24;
  96. text-align: center;
  97. color: #999999;
  98. }
  99. }
  100. }
  101. }
  102. .bg_image{
  103. position: absolute;
  104. width: 100%;
  105. height:354rpx;
  106. left: 0;
  107. bottom: 0;
  108. }
  109. }
  110. </style>