chargeVerify.vue 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <template>
  2. <view>
  3. <view class="main">
  4. <view>
  5. <image src="https://rl-zk-image.oss-cn-hangzhou.aliyuncs.com/vehicle-pic/2023-06/dfc15b9438624ded97bee786d915a4f7-uploadFile"></image>
  6. </view>
  7. <view class="tip">{{verifyInfo}}</view>
  8. <!-- <view class="descript">{{tipdata[2]}}</view> -->
  9. <view><button type="primary" @click="goHome" class="index">返回首页</button></view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. verifyInfo:''
  18. }
  19. },
  20. methods: {
  21. goHome() {
  22. this.$utils.switchTab("index/index");
  23. }
  24. },
  25. onLoad(options) {
  26. this.verifyInfo = options.error
  27. // uni.setNavigationBarTitle({
  28. // title: '提示信息'
  29. // })
  30. }
  31. }
  32. </script>
  33. <style lang="scss" scoped>
  34. .main {
  35. width: 588rpx;
  36. display: flex;
  37. flex-direction: column;
  38. margin: 0 auto;
  39. text-align: center;
  40. font-size: 32rpx;
  41. color: #1D2129;
  42. padding-top: 100rpx;
  43. image {
  44. width: 547rpx;
  45. height: 511rpx;
  46. }
  47. .tip {
  48. margin-bottom: 38rpx;
  49. font-size: 28rpx;
  50. font-weight: 600;
  51. color: #1D2129;
  52. }
  53. .descript {
  54. font-weight: 400;
  55. color: #88909B;
  56. font-size: 28rpx;
  57. margin-bottom: 98rpx;
  58. }
  59. .index {
  60. width: 400rpx;
  61. height: 88rpx;
  62. background: #58BE6B;
  63. border-radius: 58rpx 58rpx 58rpx 58rpx;
  64. opacity: 1;
  65. font-size: 32rpx;
  66. color: #fff;
  67. font-weight: 600;
  68. line-height: 88rpx;
  69. font-family: Noto Sans SC-Regular, Noto Sans SC;
  70. }
  71. }
  72. </style>