showMyQrcode.vue 4.4 KB

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