error.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <view class="intro-page common">
  3. <view class="top-class"></view>
  4. <view class="title">
  5. 超吉炫
  6. </view>
  7. <view class="head">
  8. <u-row class="row-class">
  9. <u-col span="4">
  10. <image class="logo-img" src="https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/logo.png" mode="aspectFit" />
  11. </u-col>
  12. <u-col span="4">
  13. <image class="commodity-img" src="https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/commodity.png" mode="aspectFit" />
  14. </u-col>
  15. <u-col span="4">
  16. <image class="logo-rules" @click="openDetail" src="https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/rules.png" />
  17. </u-col>
  18. </u-row>
  19. </view>
  20. <view class="topImg">
  21. <image class="img_1" src="https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/topImg.png" mode="heightFix" />
  22. </view>
  23. <view class="topImg">
  24. <image class="img_2" src="https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/topImg_2.png" mode="heightFix" />
  25. </view>
  26. <view class="content">
  27. <view class="title-1">
  28. </view>
  29. <view class="detail">
  30. <view class="text-detail">
  31. 您所查询的是超吉炫新型低纤槟榔胶果,是正牌产品,感谢您的购买!
  32. </view>
  33. <view class="text-one">
  34. </view>
  35. <view class="text-one">
  36. {{msg}}
  37. </view>
  38. </view>
  39. </view>
  40. <CustomTabbar />
  41. </view>
  42. </template>
  43. <script>
  44. export default {
  45. data() {
  46. return {
  47. msg: "未知错误"
  48. }
  49. },
  50. onLoad: function(options) {
  51. if (options.msg){
  52. this.msg = options.msg;
  53. }
  54. },
  55. methods: {
  56. }
  57. }
  58. </script>
  59. <style lang="scss" scoped>
  60. @import url('../../static/scss/common_cjx.css');
  61. .row-class {
  62. height: 80rpx;
  63. }
  64. .theme-text {
  65. height: 10vh;
  66. text-align: center;
  67. line-height: 11vh;
  68. .textImage {
  69. height: 80rpx;
  70. width: 400rpx;
  71. }
  72. }
  73. .title-1{
  74. text-align: center;
  75. color: #A7001C;
  76. font-size: 18px;
  77. letter-spacing: 4px;
  78. font-weight: 600;
  79. }
  80. .winning-picture{
  81. height: 460rpx;
  82. background-image: url(https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/guzhenganzi/bgiZj.png);
  83. background-size: contain;
  84. background-position: center;
  85. background-repeat: no-repeat;
  86. display: flex;
  87. justify-content: center; /* 水平居中 */
  88. // align-items: center; /* 垂直居中 */
  89. }
  90. .detail{
  91. margin: 20rpx 40rpx;
  92. border-radius: 10rpx;
  93. padding: 10rpx;
  94. margin-top: 30vh;
  95. background-image:
  96. url("https://hyscancode.oss-cn-hangzhou.aliyuncs.com/xiaochengxu/cjx/cardBgi.png");
  97. background-size: cover;
  98. background-position: center;
  99. background-repeat: no-repeat;
  100. }
  101. .text-detail{
  102. font-weight: 500;
  103. font-size: 28rpx;
  104. color: #F6F6F9;
  105. margin-bottom: 10rpx;
  106. padding: 20rpx;
  107. }
  108. .text-one{
  109. font-weight: 400;
  110. font-size: 26rpx;
  111. color: #FF31C2 ;
  112. margin-bottom: 10rpx;
  113. padding: 20rpx;
  114. }
  115. .detail-btn{
  116. text-align: center;
  117. color: #F9D395;
  118. height: 60rpx;
  119. line-height: 60rpx;
  120. margin-right: 20rpx;
  121. font-size: 13px;
  122. background-color: #901710;
  123. padding: 3px;
  124. border-radius: 5px;
  125. }
  126. .center-image {
  127. height: 280rpx;
  128. object-fit: contain; /* 保持图片的宽高比,确保不会被拉伸或裁切 */
  129. }
  130. ::v-deep .detail-btn span {
  131. background-color: #8E1813;
  132. padding: 4rpx;
  133. border-radius: 8rpx;
  134. font-weight: 400;
  135. font-size: 26rpx;
  136. }
  137. </style>