questionCode.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <template>
  2. <view class="showModel" v-if="disjunctor">
  3. <view class="showModel__wrap">
  4. <view class="showModel__header">
  5. <!-- 我的二维码 -->
  6. <view>
  7. {{qrCode.title}}
  8. </view>
  9. </view>
  10. <view class="showModel__article">
  11. <view class="showModel__content">
  12. <image :src="qrCode.outQrcode" mode="widthFix" style="width: 100%;"></image>
  13. </view>
  14. </view>
  15. <view class="df-fl">
  16. 有效期:
  17. <view v-if="!timeState" class="df-fl">
  18. <uni-countdown @timeup="timeupChange" :second="refreshQRCodeTime" :showDay="false" :showHour="false" :showMinute="false"/>
  19. </view>
  20. <view v-else>已过期</view>
  21. </view>
  22. <view class="showModel__footer">
  23. <view class="showModel__know" @click="know" hover-class="seimin-btn-hover">关闭</view>
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import {
  30. get,
  31. post,
  32. webHandle
  33. } from "../../http/http.js";
  34. export default {
  35. data() {
  36. return {
  37. qrCode: '',
  38. disjunctor:false,
  39. refreshQRCodeTime:null,
  40. timeState:false
  41. };
  42. },
  43. props: {
  44. orderId:null
  45. },
  46. methods: {
  47. // 关闭
  48. know() {
  49. this.disjunctor = false
  50. this.$emit("know");
  51. },
  52. // 倒计时结束
  53. timeupChange(){
  54. this.timeState = true
  55. },
  56. // 获取我的二维码
  57. getQrCode(){
  58. uni.showLoading({
  59. title: "加载中",
  60. mask: true,
  61. });
  62. post("/questionnaire/qrCode/0", {
  63. gdId: this.orderId
  64. }).then((result) => {
  65. uni.hideLoading();
  66. if (result.status == 200) {
  67. this.qrCode = result.data;
  68. this.refreshQRCodeTime = result.refreshQRCodeTime
  69. this.disjunctor = true
  70. } else {
  71. uni.showToast({
  72. icon: "none",
  73. title: result.msg || "接口获取数据失败!",
  74. });
  75. }
  76. })
  77. }
  78. },
  79. mounted() {
  80. this.getQrCode();
  81. }
  82. };
  83. </script>
  84. <style lang="less" scoped>
  85. .showModel {
  86. position: fixed;
  87. left: 0;
  88. right: 0;
  89. top: 0;
  90. bottom: 0;
  91. background-color: rgba(0, 0, 0, 0.2);
  92. z-index: 999999;
  93. .showModel__wrap {
  94. width: 560rpx;
  95. position: absolute;
  96. left: 50%;
  97. top: 50%;
  98. transform: translate(-50%, -50%);
  99. background-color: #fff;
  100. border-radius: 12rpx;
  101. .showModel__header {
  102. font-size: 36rpx;
  103. color: #000;
  104. height: 84rpx;
  105. display: flex;
  106. justify-content: center;
  107. align-items: center;
  108. }
  109. .df-fl{
  110. display: flex;
  111. justify-content: center;
  112. margin-bottom: 20rpx;
  113. }
  114. .showModel__article {
  115. color: #000;
  116. margin: 0 auto 25rpx;
  117. width: 488rpx;
  118. background-color: rgb(249, 250, 251);
  119. border: 2rpx solid rgb(229, 233, 237);
  120. border-radius: 12rpx;
  121. box-sizing: border-box;
  122. display: flex;
  123. flex-direction: column;
  124. justify-content: center;
  125. align-items: center;
  126. &.p0 {
  127. padding: 0;
  128. }
  129. &.p1 {
  130. text-align: left;
  131. }
  132. .showModel__icon {
  133. font-size: 138rpx;
  134. margin-bottom: 32rpx;
  135. &.showModel__icon--success {
  136. color: rgb(52, 179, 73);
  137. }
  138. &.showModel__icon--warn {
  139. color: rgb(245, 165, 35);
  140. }
  141. &.showModel__icon--error {
  142. color: rgb(255, 58, 82);
  143. }
  144. }
  145. .showModel__content {
  146. font-size: 36rpx;
  147. word-break: break-all;
  148. width: 100%;
  149. }
  150. .showModel__info {
  151. font-size: 32rpx;
  152. color: rgb(102, 102, 102);
  153. }
  154. .specialCloseFlag {
  155. width: 90%;
  156. height: 100%;
  157. padding: 16rpx;
  158. }
  159. .radio-wrap {
  160. .radio-item {
  161. margin-top: 16rpx;
  162. /deep/ .uni-radio-input-checked {
  163. background-color: #49b856 !important;
  164. border-color: #49b856 !important;
  165. }
  166. }
  167. }
  168. }
  169. .showModel__footer {
  170. box-sizing: border-box;
  171. height: 100rpx;
  172. border-top: 2rpx solid rgb(229, 233, 237);
  173. display: flex;
  174. align-items: center;
  175. view {
  176. height: 100%;
  177. display: flex;
  178. align-items: center;
  179. justify-content: center;
  180. font-size: 36rpx;
  181. color: rgb(102, 102, 102);
  182. position: relative;
  183. &:nth-of-type(2)::before {
  184. content: "";
  185. position: absolute;
  186. left: 0;
  187. bottom: 0;
  188. width: 2rpx;
  189. height: 87rpx;
  190. background-color: rgb(229, 233, 237);
  191. }
  192. }
  193. .showModel__ok {
  194. flex: 1;
  195. color: rgb(73, 184, 86);
  196. }
  197. .showModel__cancel {
  198. flex: 1;
  199. }
  200. .showModel__know {
  201. flex: 1;
  202. color: rgb(73, 184, 86);
  203. }
  204. }
  205. }
  206. }
  207. </style>