特易招,招聘小程序
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.

103 lines
2.1 KiB

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
  1. <template>
  2. <!-- 获取积分 -->
  3. <view class="page">
  4. <navbar title="获取积分" bgColor="#3796F8" leftClick color="#fff" @leftClick="$utils.navigateBack" />
  5. <view class="box">
  6. <view class="card">
  7. <view class="top">
  8. <image src="../static/mine/characteristic.png" mode="aspectFill" />
  9. <view>充值积分</view>
  10. </view>
  11. <view class="txt">注册用户享受最新充值优惠活动</view>
  12. <view class="button">充值</view>
  13. <view style="height: 40rpx;" />
  14. </view>
  15. <view class="card">
  16. <view class="top">
  17. <image src="../static/mine/crowd.png" mode="aspectFill" />
  18. <view>邀请工业获取积分</view>
  19. </view>
  20. <view class="txt">成功邀请一名新好友注册最高可获得
  21. <text style="color: red;font-size: 32rpx;">2</text>
  22. 个正式积分
  23. <view style="color: red;">多邀多得可叠加</view>
  24. </view>
  25. <view class="button" @click="$utils.navigateTo('/pages_order/mine/InvitationCredit')">邀请</view>
  26. <view style="height: 40rpx;" />
  27. </view>
  28. </view>
  29. <view class="service">如有疑问请联系客服<text>4008-678-918</text></view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. }
  37. },
  38. methods: {
  39. }
  40. }
  41. </script>
  42. <style scoped lang="scss">
  43. .page {
  44. .box {
  45. width: 94%;
  46. margin-left: 3%;
  47. background-color: #fff;
  48. border-radius: 16rpx;
  49. margin-top: 40rpx;
  50. .card {
  51. width: 94%;
  52. margin-left: 3%;
  53. .top {
  54. display: flex;
  55. align-items: center;
  56. font-size: 32rpx;
  57. padding: 20rpx 0;
  58. view {
  59. margin-left: 20rpx;
  60. }
  61. image {
  62. height: 50rpx;
  63. width: 50rpx;
  64. }
  65. }
  66. .txt {
  67. font-size: 24rpx;
  68. color: #999999;
  69. margin-top: 20rpx;
  70. }
  71. .button {
  72. text-align: center;
  73. background-color: #3796F8;
  74. color: #fff;
  75. padding: 25rpx 0;
  76. margin-top: 40rpx;
  77. border-radius: 16rpx;
  78. }
  79. }
  80. }
  81. .service {
  82. width: 94%;
  83. margin-left: 3%;
  84. font-size: 24rpx;
  85. text-align: center;
  86. margin-top: 20rpx;
  87. padding: 25rpx 0;
  88. background-color: #fff;
  89. border-radius: 12rpx;
  90. }
  91. }
  92. </style>