wxCode.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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/mine/wx.png" class="wx"></image>
  8. <image :src="detail.workQrcode2 ? detail.workQrcode2 : detail.workQrcode" class="code"></image>
  9. <!-- <image :src="detail.avatar" class="avatar"></image> -->
  10. <view class="btn" @tap="save()">保存二维码</view>
  11. </view>
  12. <view class="info">
  13. <view class="name">{{detail.workName}}</view>
  14. <view class="text">{{configInfo.companyName}}</view>
  15. </view>
  16. </view>
  17. <view class="bottom">
  18. <image :src="configInfo.minLogo2" mode="heightFix"></image>
  19. </view>
  20. </view>
  21. <view class="tips">扫一扫二维码,添加我的企业微信</view>
  22. </view>
  23. </template>
  24. <script>
  25. import {mapState} from 'vuex';
  26. export default {
  27. data() {
  28. return {
  29. configInfo: uni.getStorageSync('configInfo'),
  30. detail: {},
  31. }
  32. },
  33. computed:{
  34. ...mapState(['userInfo', 'isLogin', 'userId']),
  35. },
  36. onLoad() {
  37. this.getDetail();
  38. },
  39. methods: {
  40. // 获取个人信息
  41. getDetail() {
  42. this.$axios({
  43. url: '/user/user/detail',
  44. method: 'get',
  45. params: {
  46. userId: this.userId
  47. }
  48. }).then(res => {
  49. this.detail = res.data;
  50. })
  51. },
  52. // 保存图片
  53. save() {
  54. uni.downloadFile({
  55. url: this.detail.workQrcode2 ? this.detail.workQrcode2 : this.detail.workQrcode,
  56. success: (res) => {
  57. uni.saveImageToPhotosAlbum({
  58. filePath: res.tempFilePath,
  59. success: () => {
  60. this.$successToast('保存成功');
  61. }
  62. });
  63. }
  64. })
  65. }
  66. }
  67. }
  68. </script>
  69. <style lang="scss">
  70. .app-container {
  71. background: #F4F2F2;
  72. padding: 40rpx 40rpx 0;
  73. box-sizing: border-box;
  74. }
  75. .tips {
  76. font-size: 28rpx;
  77. line-height: 28rpx;
  78. color: #999999;
  79. text-align: center;
  80. margin: 60rpx 0 20rpx;
  81. }
  82. .card-container {
  83. width: 670rpx;
  84. border-radius: 20rpx;
  85. background: #FFFFFF;
  86. box-shadow: -20px 0px 40px 20px rgba(155,155,155,0.30);
  87. overflow: hidden;
  88. .top {
  89. background: #006FE2;
  90. display: flex;
  91. flex-direction: column;
  92. align-items: center;
  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. padding-top: 44rpx;
  103. margin-top: 20rpx;
  104. .wx {
  105. width: 508rpx;
  106. height: 440rpx;
  107. display: block;
  108. }
  109. .code {
  110. width: 360rpx;
  111. height: 360rpx;
  112. display: block;
  113. position: absolute;
  114. top: 0;
  115. left: 74rpx;
  116. border-radius: 5rpx;
  117. }
  118. .btn {
  119. width: 160rpx;
  120. height: 48rpx;
  121. display: block;
  122. position: absolute;
  123. top: 380rpx;
  124. left: 170rpx;
  125. border-radius: 5rpx;
  126. border: 1px solid #ffffff;
  127. line-height: 48rpx;
  128. text-align: center;
  129. font-size: 24rpx;
  130. color: #FFFFFF;
  131. opacity: .8;
  132. }
  133. .avatar {
  134. width: 88rpx;
  135. height: 88rpx;
  136. display: block;
  137. position: absolute;
  138. top: 131rpx;
  139. left: 205rpx;
  140. border-radius: 5rpx;
  141. padding: 5rpx;
  142. background: #FFFFFF;
  143. }
  144. }
  145. .info {
  146. width: 360rpx;
  147. text-align: right;
  148. margin-bottom: 58rpx;
  149. .name {
  150. font-size: 36rpx;
  151. color: #FFFFFF;
  152. height: 36rpx;
  153. line-height: 36rpx;
  154. }
  155. .text {
  156. font-size: 28rpx;
  157. color: #FFFFFF;
  158. height: 28rpx;
  159. line-height: 28rpx;
  160. margin-top: 20rpx;
  161. }
  162. }
  163. }
  164. .bottom {
  165. height: 140rpx;
  166. display: flex;
  167. justify-content: center;
  168. align-items: center;
  169. image {
  170. height: 60rpx;
  171. display: block;
  172. }
  173. }
  174. }
  175. </style>