form-select.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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/second/form/form-seller')">
  6. <view class="icon">
  7. <image src="https://static.caimei365.com/app/img/icon/icon-presale.png" mode=""></image>
  8. </view>
  9. <view class="text by">发布二手预成交商品</view>
  10. <view class="text-small">所填卖家敏感信息较多,客户已有购买意向时</view>
  11. <view class="text-small">选择此类型发布</view>
  12. </view>
  13. <view class="item bot" @click.stop="this.$api.navigateTo('/pages/second/form/form-presale')">
  14. <view class="icon">
  15. <image src="https://static.caimei365.com/app/img/icon/icon-presales.png" mode=""></image>
  16. </view>
  17. <view class="text my">发布二手估价商品</view>
  18. <view class="text-small">所填卖家敏感信息较少,为了让二手商品快速上架</view>
  19. <view class="text-small">展示选择此类型发布</view>
  20. </view>
  21. </view>
  22. </view>
  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. &.bot{
  74. margin-top: 100rpx;
  75. }
  76. .icon{
  77. width: 186rpx;
  78. height: 186rpx;
  79. image{
  80. width: 186rpx;
  81. height: 186rpx;
  82. display: block;
  83. }
  84. }
  85. .text{
  86. line-height: 54rpx;
  87. font-size: $font-size-30;
  88. text-align: center;
  89. &.by{
  90. color: #3b77ff;
  91. }
  92. &.my{
  93. color: #ff7a51;
  94. }
  95. }
  96. .text-small{
  97. line-height: 40rpx;
  98. font-size: $font-size-24;
  99. text-align: center;
  100. color: #999999;
  101. }
  102. }
  103. }
  104. }
  105. .bg_image{
  106. position: absolute;
  107. width: 100%;
  108. height:354rpx;
  109. left: 0;
  110. bottom: 0;
  111. }
  112. }
  113. </style>