You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
3.0 KiB

1 month ago
  1. <template>
  2. <view class="personal-collect">
  3. <view class="personal-user">
  4. <view style="width: 100%; margin-top: 10px;">
  5. <view style="width: 100%;text-align: center;">
  6. <img src="https://catmdogf.oss-cn-shanghai.aliyuncs.com/CMDF/front/personal/index/avatar_1.png" style="width: 66px; height: 66px;" mode="widthFix"></img>
  7. </view>
  8. <!-- <view style="width: 100%;text-align: center;">
  9. <img src="https://catmdogf.oss-cn-shanghai.aliyuncs.com/CMDF/front/personal/index/cmdf_text.png"style="width:55px;height: 16px;" mode="widthFix"></img>
  10. </view> -->
  11. </view>
  12. <!-- <view class="personal-collect-tips">
  13. 再下单{{dayNumber}}天订单可获得好礼
  14. </view> -->
  15. <view class="personal-collect-use-direction">
  16. <uni-card title="[使用说明]" margin="15px">
  17. <view class="uni-body">
  18. <view class="personal-collect-use-direction-title">1.活动概述</view>
  19. <view class="personal-collect-use-direction-content">
  20. a.适用对象猫妈狗爸品牌有效会员
  21. </view>
  22. <view class="personal-collect-use-direction-content">
  23. b.活动规则会员有效期内累计下单10次服务即可获得单次服务兑换券1张
  24. </view>
  25. <view class="personal-collect-use-direction-title">2.细则说明</view>
  26. <view class="personal-collect-use-direction-content">
  27. a.时间要求需要在会员有效期内进行下单方可参与集点累计
  28. </view>
  29. <view class="personal-collect-use-direction-content">
  30. b.次数要求累计下单10次服务即上门服务次数若1天1次则计成功下单1次1天2次则计成功下单2次以此类推
  31. </view>
  32. <view class="personal-collect-use-direction-content">
  33. c.优惠说明累计下单10次后即可获得1张单次服务兑换券即可在自领取到该优惠券的365个自然日内使用可减免1次上门服务费用下单时可直接使用扣减
  34. </view>
  35. <view class="personal-collect-use-direction-content">
  36. d.其他在获得1张单次服务兑换券后累计天数清零将重新开始累计
  37. </view>
  38. </view>
  39. </uni-card>
  40. </view>
  41. </view>
  42. </view>
  43. </template>
  44. <script>
  45. export default{
  46. data(){
  47. return{
  48. dayNumber:5,
  49. }
  50. }
  51. }
  52. </script>
  53. <style lang="scss">
  54. .personal-collect{
  55. .personal-user{
  56. display: flex;
  57. justify-content: center;
  58. flex-wrap: wrap;
  59. align-content:flex-start;
  60. width: 100%;
  61. height: 226px;
  62. flex-shrink: 0;
  63. background: linear-gradient(0deg, #F5F5F7 0%, #FFBF60 99.41%);
  64. .personal-collect-tips{
  65. color: #B78B43;
  66. text-align: center;
  67. font-size: 14px;
  68. font-style: normal;
  69. font-weight: 400;
  70. line-height: 20px;
  71. margin: 10px 0;
  72. }
  73. .personal-collect-use-direction-title{
  74. color: #333;
  75. font-size: 14px;
  76. margin-bottom: 10px;
  77. }
  78. .personal-collect-use-direction-content{
  79. color: #777;
  80. font-size: 14px;
  81. margin-bottom: 5px;
  82. }
  83. }
  84. }
  85. </style>