mallCode.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <view class="app-container">
  3. <view class="card-container">
  4. <view class="top">
  5. <view class="title">请扫描进入商城</view>
  6. <view class="main">
  7. <image src="/static/bg_logo.png" class="mall"></image>
  8. <image :src="qrCode" class="code"></image>
  9. <view class="btn" @tap="save()">保存二维码</view>
  10. </view>
  11. <view class="info">
  12. <view class="name">{{configInfo.minAppName}}</view>
  13. <view class="text">小程序二维码</view>
  14. </view>
  15. </view>
  16. <view class="bottom">
  17. <image :src="configInfo.minLogo2" mode="heightFix"></image>
  18. </view>
  19. </view>
  20. <view class="tips">扫一扫二维码,进入商城小程序</view>
  21. </view>
  22. </template>
  23. <script>
  24. import {mapState} from 'vuex';
  25. export default {
  26. data() {
  27. return {
  28. configInfo: uni.getStorageSync('configInfo'),
  29. qrCode: '',
  30. }
  31. },
  32. computed:{
  33. ...mapState(['userInfo', 'isLogin', 'userId']),
  34. },
  35. onLoad() {
  36. this.getDetail();
  37. },
  38. methods: {
  39. // 获取个人信息
  40. getDetail() {
  41. this.$axios({
  42. url: '/user/qrcode/bind',
  43. method: 'get',
  44. params: {
  45. userId: this.userId
  46. }
  47. }).then(res => {
  48. this.qrCode = res.data;
  49. })
  50. },
  51. // 保存图片
  52. save() {
  53. uni.downloadFile({
  54. url: this.qrCode,
  55. success: (res) => {
  56. uni.saveImageToPhotosAlbum({
  57. filePath: res.tempFilePath,
  58. success: () => {
  59. this.$successToast('保存成功');
  60. }
  61. });
  62. }
  63. })
  64. }
  65. }
  66. }
  67. </script>
  68. <style lang="scss">
  69. .app-container {
  70. background: #F4F2F2;
  71. padding: 40rpx 40rpx 0;
  72. box-sizing: border-box;
  73. }
  74. .tips {
  75. font-size: 28rpx;
  76. line-height: 28rpx;
  77. color: #999999;
  78. text-align: center;
  79. margin: 60rpx 0 20rpx;
  80. }
  81. .card-container {
  82. width: 670rpx;
  83. border-radius: 20rpx;
  84. background: #FFFFFF;
  85. box-shadow: -20px 0px 40px 20px rgba(155,155,155,0.30);
  86. overflow: hidden;
  87. .top {
  88. background: #F65759;
  89. display: flex;
  90. flex-direction: column;
  91. align-items: center;
  92. height: 800rpx;
  93. .title {
  94. font-family: 'PingFang SC';
  95. font-size: 50rpx;
  96. color: #FFFFFF;
  97. line-height: 160rpx;
  98. }
  99. .main {
  100. position: relative;
  101. display: flex;
  102. margin-top: 20rpx;
  103. .mall {
  104. width: 600rpx;
  105. height: 600rpx;
  106. display: block;
  107. }
  108. .code {
  109. width: 360rpx;
  110. height: 360rpx;
  111. display: block;
  112. position: absolute;
  113. top: 0;
  114. left: 120rpx;
  115. border-radius: 5rpx;
  116. }
  117. .btn {
  118. width: 160rpx;
  119. height: 48rpx;
  120. display: block;
  121. position: absolute;
  122. top: 400rpx;
  123. left: 220rpx;
  124. border-radius: 5rpx;
  125. border: 1px solid #ffffff;
  126. line-height: 48rpx;
  127. text-align: center;
  128. font-size: 24rpx;
  129. color: #FFFFFF;
  130. opacity: .8;
  131. }
  132. }
  133. .info {
  134. width: 600rpx;
  135. text-align: right;
  136. margin-top: -100rpx;
  137. .name {
  138. font-size: 36rpx;
  139. color: #FFFFFF;
  140. height: 36rpx;
  141. line-height: 36rpx;
  142. }
  143. .text {
  144. font-size: 28rpx;
  145. color: #FFFFFF;
  146. height: 28rpx;
  147. line-height: 28rpx;
  148. margin-top: 20rpx;
  149. }
  150. }
  151. }
  152. .bottom {
  153. height: 140rpx;
  154. display: flex;
  155. justify-content: center;
  156. align-items: center;
  157. image {
  158. height: 60rpx;
  159. display: block;
  160. }
  161. }
  162. }
  163. </style>