share_team.vue 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <template>
  2. <view class="content">
  3. <view class="wrapper">
  4. <view class="title">成为新邻社区心选商城店主的达成提示</view>
  5. <view class="price_item">消费金额达到<view class="price">198</view>元</view>
  6. <view class="btn bg-linear-gradient" @tap="handleClick">可通过点击按钮成为新邻社区店主</view>
  7. <view class="explain">用户累计消费满198.00元,可以成为新邻社区心选购物商城的店主,您已确认收货消费 ?元,请加油!</view>
  8. <view class="explain">
  9. ①累计自购达到198元且确认收货</br>
  10. ②确认收货后,在我的分享团队进行店主身份升级
  11. </view>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. };
  20. },
  21. methods:{
  22. handleClick(){
  23. uni.navigateTo({
  24. url: '/pages/my_earnings'
  25. })
  26. }
  27. }
  28. }
  29. </script>
  30. <style lang="scss">
  31. .content{
  32. background:rgba(255,255,255,1);
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. justify-content: center;
  37. .wrapper{
  38. margin: 40upx 0;
  39. width:705upx;
  40. height:1222upx;
  41. background:rgba(255,255,255,1);
  42. box-shadow:0upx -2upx 47upx 4upx rgba(1,0,32,0.1);
  43. border-radius:30upx;
  44. display: flex;
  45. flex-direction: column;
  46. align-items: center;
  47. .title{
  48. height:35upx;
  49. font-size:36upx;
  50. font-family:PingFang SC;
  51. font-weight:bold;
  52. color:rgba(51,51,51,1);
  53. line-height:6upx;
  54. margin-top: 98upx;
  55. }
  56. .price_item{
  57. height:55upx;
  58. font-size:24upx;
  59. font-family:PingFang SC;
  60. font-weight:400;
  61. color:rgba(51,51,51,1);
  62. margin-top: 78upx;
  63. .price{
  64. display: inline-block;
  65. color:$dt-color-primary;
  66. font-size: 70upx;
  67. font-weight: bold;
  68. }
  69. }
  70. .btn{
  71. width:651upx;
  72. height:82upx;
  73. border-radius:30upx;
  74. text-align: center;
  75. line-height:82upx;
  76. font-size:30upx;
  77. font-family:PingFang SC;
  78. font-weight:400;
  79. color:rgba(255,255,255,1);
  80. margin-top: 67upx;
  81. }
  82. .explain{
  83. width:629upx;
  84. line-height:40upx;
  85. font-size:24upx;
  86. font-family:PingFang SC;
  87. font-weight:400;
  88. color:rgba(153,153,153,1);
  89. margin-top:50upx
  90. }
  91. }
  92. }
  93. </style>