scanning_big_Result.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <template>
  2. <view class="Scanning_Result">
  3. <scroll-view class="Scanning_Result_inWrap" scroll-y>
  4. <view class="Scanning_top">
  5. <view class="Scanning_top_icon">
  6. <text class="cubeic-close icon_transport transport-shibai"></text>
  7. </view>
  8. <view class="Scanning_top_text" v-if="queryObj.bigScanSpecialMsg">
  9. <view class="text1"> 签到失败 </view>
  10. <view class="text1 f30" v-if="queryObj.qrcode !== undefined"> 扫描内容:{{queryObj.qrcode}} </view>
  11. </view>
  12. </view>
  13. <view class="Scanning_cont">
  14. <view class="Scanning_cont_center">
  15. {{ res.msg }}
  16. <view class="bigScanSpecialMsg" v-if="queryObj.bigScanSpecialMsg">
  17. <view class="bigScanSpecialMsgList" v-for="item in queryObj.bigScanSpecialMsg" :key="item.id">
  18. <view class="bigScanSpecialMsgListTitle">{{item.name}}</view>
  19. <view class="bigScanSpecialMsgListDesc">{{item.desc}}</view>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </scroll-view>
  25. <view class="foot_btn">
  26. <view class="btn3" @click="showAlert(dataId)"> 知道了 </view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. import {
  32. get,
  33. post,
  34. SM,
  35. webHandle
  36. } from "../../http/http.js";
  37. export default {
  38. data() {
  39. return {
  40. res: {},
  41. queryObj: {}, //路由传递过来的数据
  42. };
  43. },
  44. methods: {
  45. // 知道了
  46. showAlert(id) {
  47. uni.navigateTo({
  48. url: "../receiptpage/receiptpage"
  49. });
  50. },
  51. },
  52. onLoad(options) {
  53. console.log(options, "result");
  54. this.queryObj = options;
  55. if(this.queryObj.bigScanSpecialMsg){
  56. this.queryObj.bigScanSpecialMsg = JSON.parse( this.queryObj.bigScanSpecialMsg);
  57. }
  58. this.res["msg"] = options.msg;
  59. // #ifdef APP-PLUS
  60. webHandle("no", "app");
  61. // #endif
  62. // #ifdef H5
  63. webHandle("no", "wx");
  64. // #endif
  65. },
  66. };
  67. </script>
  68. <style lang="less">
  69. .Scanning_Result {
  70. padding: 0 20rpx;
  71. display: flex;
  72. flex-direction: column;
  73. height: 100vh;
  74. .Scanning_Result_inWrap{
  75. flex: 1;
  76. min-height: 0;
  77. }
  78. .bigScanSpecialMsg{
  79. text-align: left;
  80. padding: 0 87rpx;
  81. .bigScanSpecialMsgList{
  82. margin-top: 50rpx;
  83. font-size: 32rpx;
  84. .bigScanSpecialMsgListTitle{
  85. color: red;
  86. }
  87. .bigScanSpecialMsgListDesc{
  88. line-height: 48rpx;
  89. margin-top: 15rpx;
  90. }
  91. }
  92. }
  93. .Scanning_top {
  94. .Scanning_top_icon {
  95. width: 140rpx;
  96. height: 140rpx;
  97. margin: 0 auto;
  98. padding-top: 116rpx;
  99. border-radius: 50%;
  100. line-height: 140rpx;
  101. .speNum{
  102. text-align: center;
  103. font-size: 140rpx;
  104. }
  105. .cubeic-ok {
  106. font-size: 140rpx;
  107. color: #35b34a;
  108. }
  109. .cubeic-close {
  110. font-size: 140rpx;
  111. color: #ff3b53;
  112. }
  113. }
  114. .Scanning_top_text {
  115. .text1 {
  116. font-size: 48rpx;
  117. text-align: center;
  118. }
  119. .success_tips {
  120. color: red;
  121. font-size: 30rpx;
  122. }
  123. }
  124. }
  125. .Scanning_cont {
  126. font-size: 32rpx;
  127. text-align: center;
  128. view {
  129. margin-bottom: 16rpx;
  130. }
  131. .Scanning_cont_center {
  132. text-align: center;
  133. }
  134. .text {
  135. margin-top: 24rpx;
  136. color: #35b34a;
  137. }
  138. .text1 {
  139. margin-top: 24rpx;
  140. color: #ff3b53;
  141. }
  142. }
  143. .foot_btn {
  144. line-height: 88rpx;
  145. height: 100rpx;
  146. display: flex;
  147. justify-content: center;
  148. .btn1,
  149. .btn2,
  150. .btn3 {
  151. height: 88rpx;
  152. flex: 1;
  153. margin: 0 1%;
  154. background-image: linear-gradient(to right, #72c172, #3bb197);
  155. color: #fff;
  156. border-radius: 8rpx;
  157. font-size: 32rpx;
  158. margin-top: 16rpx;
  159. text-align: center;
  160. }
  161. }
  162. }
  163. </style>