extractFail.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <view class="box">
  3. <view class="head-icon">
  4. <uni-icons type="closeempty" size="28" color="#ffffff"></uni-icons>
  5. </view>
  6. <view class="box-title">
  7. 提现失败
  8. </view>
  9. <view class="box-money">
  10. <span class="box-money-icon">¥</span>
  11. <span class="box-money-num">{{money}}</span>
  12. </view>
  13. <view class="box-sm">
  14. 请联系管理员
  15. </view>
  16. <view class="backButton" style="display: none;" @click="goRouter('promotion')">
  17. 返回活动页
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data() {
  24. return {
  25. money:0
  26. }
  27. },
  28. onLoad(opt) {
  29. this.money = opt.money
  30. },
  31. methods: {
  32. goRouter(url){
  33. uni.navigateTo({
  34. url:url
  35. })
  36. }
  37. }
  38. }
  39. </script>
  40. <style>
  41. .box {
  42. min-height: 100vh;
  43. background: #F4F5F7;
  44. padding-top: 20rpx;
  45. background-color: #ffffff;
  46. }
  47. .box-title {
  48. font-size: 30rpx;
  49. font-weight: 400;
  50. width: 100%;
  51. height: 100rpx;
  52. line-height: 100rpx;
  53. text-align: center;
  54. padding-top: 20rpx;
  55. }
  56. .box-money{
  57. width: 100%;
  58. height: 80rpx;
  59. line-height: 80rpx;
  60. text-align: center;
  61. display: flex;
  62. justify-content: center;
  63. align-items: center;
  64. }
  65. .box-money-icon{
  66. font-size: 45rpx;
  67. font-weight: 550;
  68. }
  69. .box-money-num{
  70. font-size: 75rpx;
  71. font-weight: 550;
  72. }
  73. .box-sm{
  74. font-size: 22rpx;
  75. width: 100%;
  76. height: 50rpx;
  77. line-height: 50rpx;
  78. text-align: center;
  79. color: #999999;
  80. margin-top: 20rpx;
  81. }
  82. .head-box{
  83. width: 100%;
  84. }
  85. .head-icon{
  86. width: 90rpx;
  87. height: 90rpx;
  88. text-align: center;
  89. background-color: #F14D42;
  90. line-height: 90rpx;
  91. border-radius: 90rpx;
  92. margin: 150rpx auto 10rpx;
  93. }
  94. .backButton{
  95. width: 300rpx;
  96. height: 80rpx;
  97. background-color: #F2F2F2;
  98. line-height: 80rpx;
  99. text-align: center;
  100. margin: 150rpx auto;
  101. font-size: 28rpx;
  102. font-weight: 650;
  103. border-radius: 10rpx;
  104. }
  105. </style>