vip.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <view class="center">
  3. <view class="title">请选择认证身份</view>
  4. <view class="tip">请选择您认证的身份类型</view>
  5. <view class="id-box" @click="navTo('/pages/user/shop')">
  6. <view class="id-box-bg"><image src="../../static/img/vip-shop.png" mode=""></image></view>
  7. <view class="id-name">店家</view>
  8. <view class="id-tip">进出货服务特权</view>
  9. </view>
  10. <view class="id-box" @click="navTo('/pages/user/teacher')">
  11. <view class="id-box-bg"><image src="../../static/img/vip-people.png" mode=""></image></view>
  12. <view class="id-name">老师</view>
  13. <view class="id-tip">标杆服务老师</view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {};
  21. },
  22. methods: {
  23. navTo(url) {
  24. uni.navigateTo({
  25. url
  26. });
  27. }
  28. }
  29. };
  30. </script>
  31. <style lang="scss">
  32. .center,
  33. page {
  34. height: auto;
  35. min-height: 100%;
  36. background: #fff;
  37. }
  38. .title {
  39. padding: 43rpx 0 0 35rpx;
  40. font-size: 42rpx;
  41. font-family: PingFang SC;
  42. font-weight: bold;
  43. color: #000000;
  44. }
  45. .tip {
  46. padding: 27rpx 0 0 35rpx;
  47. font-size: 28rpx;
  48. font-family: PingFang SC;
  49. font-weight: bold;
  50. color: #9f9f9f;
  51. }
  52. .id-box {
  53. margin: 34rpx auto 0;
  54. width: 700rpx;
  55. height: 184rpx;
  56. border-radius: 20rpx;
  57. position: relative;
  58. padding: 57rpx 0 0 182rpx;
  59. line-height: 1;
  60. .id-box-bg {
  61. position: absolute;
  62. top: 0;
  63. left: 0;
  64. right: 0;
  65. width: 700rpx;
  66. height: 184rpx;
  67. image {
  68. width: 100%;
  69. height: 100%;
  70. }
  71. }
  72. .id-name {
  73. position: relative;
  74. z-index: 2;
  75. font-size: 35rpx;
  76. font-family: PingFang SC;
  77. font-weight: bold;
  78. color: #6a4714;
  79. }
  80. .id-tip {
  81. position: relative;
  82. z-index: 2;
  83. font-size: 26rpx;
  84. font-family: PingFang SC;
  85. font-weight: bold;
  86. color: #ad8958;
  87. margin-top: 20rpx;
  88. }
  89. }
  90. </style>