transitionPages.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view class="container container-transition">
  3. <text class="moneh-text"> 上传名片并填写简单信息,24小时内我们会为您开通一个月的免费月卡 </text>
  4. <img src="https://hzchart.oss-cn-shanghai.aliyuncs.com/cygx/czbk/month_card.png" class="month_card" alt="" />
  5. <view class="btn-cont btn-dl" @click="applyAuth"> 立即上传 </view>
  6. <view class="btn-cont month-back" @click="backIndex"> 返回</view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {};
  13. },
  14. methods: {
  15. applyAuth() {
  16. uni.navigateTo({
  17. url: "/pageMy/applyTrial/applyTrial",
  18. });
  19. },
  20. backIndex() {
  21. uni.switchTab({
  22. url: "/pages/index/index",
  23. });
  24. },
  25. },
  26. };
  27. </script>
  28. <style lang="scss" scoped>
  29. .container-transition {
  30. padding-top: 200rpx;
  31. .month_card {
  32. width: 100%;
  33. height: 565rpx;
  34. padding-left: -20rpx;
  35. }
  36. .btn-cont {
  37. width: 368rpx;
  38. height: 80rpx;
  39. color: #fff;
  40. font-size: 34rpx;
  41. margin: 0 auto ;
  42. text-align: center;
  43. line-height: 80rpx;
  44. }
  45. .btn-dl {
  46. background: linear-gradient(253deg, #fcf3e9 0%, #eedec8 100%) !important;
  47. color: #333 !important;
  48. margin: 30rpx auto !important;
  49. }
  50. .month-back {
  51. background: #f6f6f6 !important;
  52. color: #999 !important;
  53. }
  54. .moneh-text {
  55. text-align: center;
  56. width: 632rpx;
  57. margin: 0 auto 20rpx;
  58. color: #999999;
  59. }
  60. }
  61. </style>