myQr.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <template>
  2. <view class="box">
  3. <view style="height: 15vh;"></view>
  4. <view class="cont1" v-if="type==1">
  5. <view class="contTOp">
  6. <view class="headImgBox">
  7. <image :src="userInfo.headImg" mode="" class="headImg" v-if="userInfo.headImg"></image>
  8. <image src="../../static/img/icon_me.png" mode="" class="headImg" v-else></image>
  9. </view>
  10. <view class="nickName">{{userInfo.nickName?userInfo.nickName:'微信昵称'}}</view>
  11. </view>
  12. <view class="wqmBox">
  13. <view class="ewmLeft">
  14. <image :src="img" mode="" class="ewmImg"></image>
  15. </view>
  16. <view class="ewmRight">
  17. <view class="ewmRight1">{{wxOpenData.unionName}}</view>
  18. </view>
  19. <view class="contMs1">扫码关注公众号,登记个人信息 即可享受新</view>
  20. </view>
  21. <view class="btnBox">我的专属二维码</view>
  22. </view>
  23. <view class="cont2" v-if="type==2">
  24. <view class="contTOp">
  25. <view class="headImgBox">
  26. <image :src="userInfo.headImg" mode="" class="headImg" v-if="userInfo.headImg"></image>
  27. <image src="../../static/img/icon_me.png" mode="" class="headImg" v-else></image>
  28. </view>
  29. <view class="nickName">{{userInfo.nickName?userInfo.nickName:'微信昵称'}}</view>
  30. </view>
  31. <view class="wqmBox">
  32. <view class="ewmLeft">
  33. <image :src="img" mode="" class="ewmImg"></image>
  34. </view>
  35. <view class="ewmRight">
  36. <view class="ewmRight1">{{wxOpenData.unionName}}</view>
  37. </view>
  38. </view>
  39. <view class="btnBox">我的专属二维码</view>
  40. </view>
  41. </view>
  42. </template>
  43. <script>
  44. export default {
  45. components: {
  46. },
  47. data() {
  48. return {
  49. headImg: '',
  50. themeColor:'',
  51. userInfo:'',
  52. type:'',
  53. wxOpenData:'',
  54. ext:'',
  55. img:'',
  56. }
  57. },
  58. onLoad(opt) {
  59. this.themeColor = uni.getStorageSync("themeColor");
  60. this.userInfo = uni.getStorageSync("userInfo");
  61. this.wxOpenData=uni.getStorageSync('wxOpenData');
  62. this.ext=this.$common.getExtStoreId();
  63. this.type=opt.type;
  64. //if(this.type==1){
  65. this.openShareQrCode()
  66. //}
  67. },
  68. onShow() {
  69. },
  70. methods: {
  71. openShareQrCode(){
  72. uni.showLoading({
  73. title: '加载中'
  74. })
  75. this.$request.httpBinary('openShareQrCode/create', {
  76. bizType:this.type,
  77. openId:this.wxOpenData.openid,
  78. unionId:this.ext.unionId,
  79. shopId:this.ext.shopId
  80. }, 'GET').then(res => {
  81. uni.hideLoading();
  82. this.img = 'data:image/png;base64,'+uni.arrayBufferToBase64(res);
  83. //this.img= uni.arrayBufferToBase64(res)
  84. //console.log('list+=', this.queryShopList);
  85. })
  86. }
  87. }
  88. }
  89. </script>
  90. <style scoped lang="less">
  91. .box {
  92. width: 100vw;
  93. min-height: 100vh;
  94. background: url('http://dmsphoto.66km.com.cn/thFiles/344AA01C-5DEB-471E-BF8A-5CB185F71684.png') no-repeat;
  95. background-size:100% 100% ;
  96. }
  97. .cont{
  98. width: 650rpx;
  99. height: 690rpx;
  100. background: #FFFFFF;
  101. border-radius: 20rpx;
  102. border: 10rpx solid #FFCE11;
  103. margin-left: 50rpx;
  104. }
  105. .cont1{
  106. width: 620rpx;
  107. height: 858rpx;
  108. background: url('http://dmsphoto.66km.com.cn/thFiles/02A79FCC-DB9C-41F2-B092-7EFAC54AD631.png') no-repeat;
  109. background-size:100% 100% ;
  110. margin-left: 65rpx;
  111. position: relative;
  112. }
  113. .contMs1{
  114. font-size: 24rpx;
  115. font-family: PingFangSC-Regular, PingFang SC;
  116. font-weight: 400;
  117. color: #999999;
  118. line-height: 40rpx;
  119. text-align: center;
  120. width: 336rpx;
  121. margin: 0 auto;
  122. padding-top: 30rpx;
  123. }
  124. .cont2{
  125. width: 620rpx;
  126. height: 762rpx;
  127. background: url('http://dmsphoto.66km.com.cn/thFiles/EF6764C2-E253-40D8-9027-6F1E86B22666.png') no-repeat;
  128. background-size:100% 100% ;
  129. margin-left: 65rpx;
  130. position: relative;
  131. }
  132. .btnBox{
  133. width: 329rpx;height: 91rpx;
  134. text-align: center;
  135. line-height: 91rpx;
  136. font-size: 28rpx;
  137. font-family: PingFangSC-Medium, PingFang SC;
  138. font-weight: 500;
  139. color: #DC490A;
  140. position: absolute;
  141. bottom: -45rpx;
  142. left: 146rpx;
  143. background: url('http://dmsphoto.66km.com.cn/thFiles/587A56A8-BD06-4396-8EDD-221C4CAC3F5E.png') no-repeat;
  144. background-size:100% 100% ;
  145. }
  146. .contTOp{
  147. display: flex;
  148. }
  149. .headImg{
  150. width: 103rpx;height: 103rpx;border-radius: 50%;
  151. }
  152. .headImgBox{
  153. text-align: center;padding-top: 24rpx;padding-left: 38rpx;
  154. }
  155. .contTopTitle{
  156. font-size: 36rpx;
  157. font-family: PingFangSC-Medium, PingFang SC;
  158. font-weight: 500;
  159. color: #FFAF18;
  160. line-height: 50rpx;
  161. }
  162. .contTop{
  163. display: flex;
  164. justify-content: space-around;
  165. padding-top: 60rpx;
  166. }
  167. .nickName{
  168. color: #333333;font-size: 26rpx;text-align: center;line-height: 146rpx;padding-left: 24rpx;
  169. font-weight: 500;
  170. }
  171. .ms{
  172. color: #FFAF18;font-size: 30rpx;padding-top: 16rpx;text-align: center;
  173. }
  174. .wqmBox{
  175. border-top:1px solid #EEEEEE;
  176. text-align: center;
  177. padding: 23rpx 0 0 0;
  178. margin-left: 18rpx;
  179. margin-right: 18rpx;
  180. }
  181. .ewmImg{
  182. width: 404rpx;
  183. height: 404rpx;
  184. }
  185. .ewmRight1{
  186. color: #666666;font-size: 28rpx;padding-top: 40rpx;
  187. }
  188. .ewmRight2{
  189. color: #999999;font-size: 24rpx;padding-top: 16rpx;padding-left: 24rpx;
  190. }
  191. </style>