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

193 lines
4.3 KiB

  1. <template>
  2. <!-- 邀请积分 -->
  3. <view class="page">
  4. <navbar title="邀请积分" bgColor="#3796F8" leftClick color="#fff" @leftClick="$utils.navigateBack" />
  5. <view class="TopBlock">
  6. <view class="TopBlock-box">
  7. <view class="TopBlock-top">
  8. <image src="../static/mine/characteristic.png" mode="aspectFill" />
  9. <view>您当前的正式积分</view>
  10. </view>
  11. <view class="TopBlock-balance">100</view>
  12. <view class="TopBlock-button">
  13. <view>积分明细</view>
  14. </view>
  15. </view>
  16. </view>
  17. <view class="card">
  18. <view class="card-box">
  19. <view class="card-top">获取正式积分</view>
  20. <view style="background-color: #EDEDED; height: 1rpx;" />
  21. <view class="card-cell">
  22. <uv-cell-group>
  23. <uv-cell>
  24. <!-- 自定义左侧标题 -->
  25. <template #title>
  26. <text style="font-size: 12px;">邀请好友赚积分</text>
  27. </template>
  28. <!-- 自定义左侧标题下面的内容 -->
  29. <template #label>
  30. <view style="font-size: 20rpx;color: #999999; padding: 10rpx 0;">
  31. <view>成功邀请一名好友注册可获得2正式积分</view>
  32. <view>可叠加</view>
  33. </view>
  34. </template>
  35. <!-- 自定义右侧值 -->
  36. <template #value>
  37. <text style="font-size: 24rpx; color: #4280FD;">去邀请</text>
  38. </template>
  39. <!-- 自定义左侧图标 -->
  40. <template #icon>
  41. <uv-icon size="50" name="../static/mine/notepad.png" />
  42. </template>
  43. <!-- 自定义右侧图标 -->
  44. <template #right-icon>
  45. <uv-icon color="#4280FD" size="30rpx" name="arrow-right"></uv-icon>
  46. </template>
  47. </uv-cell>
  48. </uv-cell-group>
  49. </view>
  50. </view>
  51. </view>
  52. <view class="card">
  53. <view class="card-box">
  54. <view class="card-top">招工找活</view>
  55. <view style="background-color: #EDEDED; height: 1rpx;" />
  56. <view class="card-cell">
  57. <uv-cell-group>
  58. <uv-cell>
  59. <!-- 自定义左侧标题 -->
  60. <template #title>
  61. <text style="font-size: 12px;">我要找工作</text>
  62. </template>
  63. <!-- 自定义左侧标题下面的内容 -->
  64. <template #label>
  65. <view style="font-size: 20rpx;color: #999999; padding: 10rpx 0;">
  66. <view>查看招工信息</view>
  67. </view>
  68. </template>
  69. <!-- 自定义右侧值 -->
  70. <template #value>
  71. <text style="font-size: 24rpx; color: #4280FD;">去找活</text>
  72. </template>
  73. <!-- 自定义左侧图标 -->
  74. <template #icon>
  75. <uv-icon size="50" name="../static/mine/notepad.png" />
  76. </template>
  77. <!-- 自定义右侧图标 -->
  78. <template #right-icon>
  79. <uv-icon color="#4280FD" size="30rpx" name="arrow-right"></uv-icon>
  80. </template>
  81. </uv-cell>
  82. </uv-cell-group>
  83. </view>
  84. </view>
  85. </view>
  86. <view class="service">如有疑问请联系客服<text>4008-678-918</text></view>
  87. </view>
  88. </template>
  89. <script>
  90. export default {
  91. data() {
  92. return {
  93. }
  94. },
  95. methods: {
  96. }
  97. }
  98. </script>
  99. <style scoped lang="scss">
  100. .page {
  101. .TopBlock {
  102. height: 260rpx;
  103. background-color: #3796F8;
  104. .TopBlock-box {
  105. width: 90%;
  106. margin-left: 5%;
  107. .TopBlock-top {
  108. display: flex;
  109. align-items: center;
  110. padding: 20rpx 0;
  111. view {
  112. font-size: 32rpx;
  113. color: #FFf;
  114. margin-left: 20rpx;
  115. }
  116. image {
  117. width: 40rpx;
  118. height: 40rpx;
  119. }
  120. }
  121. .TopBlock-balance {
  122. font-size: 48rpx;
  123. color: #fff;
  124. font-weight: 600;
  125. }
  126. .TopBlock-button {
  127. display: flex;
  128. justify-content: flex-end;
  129. font-size: 28rpx;
  130. color: #4280FD;
  131. view {
  132. background-color: #fff;
  133. padding: 15rpx 40rpx;
  134. border-radius: 40rpx;
  135. font-weight: 600;
  136. }
  137. }
  138. }
  139. }
  140. .card {
  141. width: 94%;
  142. margin-left: 3%;
  143. background-color: #fff;
  144. margin-top: 30rpx;
  145. .card-box {
  146. width: 94%;
  147. margin-left: 3%;
  148. .card-top {
  149. font-size: 28rpx;
  150. color: #000;
  151. font-weight: 600;
  152. padding: 20rpx 0;
  153. }
  154. .card-cell {
  155. /deep/ .uv-cell__body {
  156. padding: 20rpx 0;
  157. }
  158. }
  159. }
  160. }
  161. .service {
  162. width: 94%;
  163. margin-left: 3%;
  164. font-size: 24rpx;
  165. text-align: center;
  166. margin-top: 20rpx;
  167. padding: 25rpx 0;
  168. background-color: #fff;
  169. border-radius: 12rpx;
  170. }
  171. }
  172. </style>