w-load.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <template>
  2. <view class="wxload">
  3. <u-popup v-model="wxHide" :mask-close-able="false" mode="center" border-radius="20">
  4. <view class="wx">
  5. <view class="layer1">
  6. <view class="upimg" @tap="up()">
  7. <image src="../../static/img/up.png" class="label2" ></image>
  8. </view>
  9. <view class="wrap1">
  10. <text lines="1" decode="true" class="info4">微信公众号:{{isFlow?config.flow_service_qrcode_name:config.wxp_name}}&nbsp;&nbsp;</text>
  11. <view class="wrap2" @tap="copyNumHandle()">复制</view>
  12. </view>
  13. <image class="img1" :src="config.wxp_qrcode" mode="" v-if="!isFlow"></image>
  14. <image class="img1" :src="config.flow_service_qrcode" mode="" v-else></image>
  15. <!-- <view class="mobiles" v-if="config.system_service_mobile_show">
  16. 客服电话:{{config.service_mobile}}
  17. </view> -->
  18. <text lines="1" class="txt2">点击上方二维码关注公众号,一键查询订单</text>
  19. </view>
  20. </view>
  21. </u-popup>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. props:["wx","isFlow"],
  27. data() {
  28. return {
  29. config:'',
  30. wxHide:false,
  31. }
  32. },
  33. watch: {
  34. wx(val) {
  35. console.log(val)
  36. this.wxHide = val;
  37. this.commonConfig()
  38. }
  39. },
  40. onLoad() {
  41. },
  42. methods: {
  43. configMet(){
  44. console.log(1)
  45. let _this=this;
  46. uni.getStorage({
  47. //key值为custom
  48. key: `config`,
  49. success: function(res) {
  50. _this.config = JSON.parse(res.data)
  51. },
  52. fail:function(err){
  53. _this.commonConfig()
  54. },
  55. })
  56. },
  57. // 系统配置
  58. commonConfig(){
  59. this.$http.commonConfig()
  60. .then(res=>{
  61. if(res.data.code==1){
  62. this.config=res.data.data
  63. uni.setStorage({
  64. key: 'config',
  65. data: JSON.stringify(res.data.data)
  66. })
  67. }
  68. })
  69. },
  70. up(){
  71. this.wxHide=false
  72. this.$emit('childByValue', this.wxHide)
  73. },
  74. copyNumHandle(){
  75. uni.setClipboardData({
  76. data:this.isFlow?this.config.flow_service_qrcode_name:this.config.wxp_name, // data的值为你要复制的内容
  77. success: res => {
  78. }
  79. });
  80. },
  81. }
  82. }
  83. </script>
  84. <style lang="scss">
  85. .wxload{
  86. // 联系客服弹框公共样式
  87. .wx{
  88. padding: 30rpx;
  89. border: 1rpx solid #484848;
  90. border-radius: 10rpx;
  91. .mobiles{
  92. text-align: center;
  93. margin-top:20rpx;
  94. font-size: 34rpx;
  95. font-family: PingFangSC-Regular;
  96. }
  97. .txt2 {
  98. display: inline-block;
  99. margin-top: 20rpx;
  100. margin-bottom: 20rpx;
  101. text-align: center;
  102. color: rgba(126,126,126,1);
  103. font-size: 32rpx;
  104. font-family: PingFangSC-Regular;
  105. }
  106. .layer1 {
  107. position: relative;
  108. box-sizing: border-box;
  109. width: 650rpx;
  110. height: 650rpx;
  111. text-align: center;
  112. padding-top: 40rpx;
  113. .upimg{
  114. position: absolute;
  115. right: 0rpx;
  116. top: 0rpx;
  117. width: 100rpx;
  118. text-align: center;
  119. height: 80rpx;
  120. }
  121. }
  122. .label2 {
  123. width: 21rpx;
  124. height: 21rpx;
  125. }
  126. .wrap1 {
  127. text-align: center;
  128. }
  129. .info4 {
  130. width: 448rpx;
  131. height: 29rpx;
  132. overflow-wrap: break-word;
  133. color: rgba(22, 22, 22, 1);
  134. font-size: 30rpx;
  135. font-family: PingFangSC-Regular;
  136. text-align: left;
  137. white-space: nowrap;
  138. line-height: 30rpx;
  139. }
  140. .wrap2 {
  141. margin-left: 20rpx;
  142. background-color: rgba(213,46,76,1);
  143. border-radius: 24rpx;
  144. width: 122rpx;
  145. height: 50rpx;
  146. text-align: center;
  147. color: #fff;
  148. line-height: 50rpx;
  149. display: inline-block;
  150. }
  151. .img1 {
  152. width: 401rpx;
  153. height: 401rpx;
  154. margin-top: 40rpx;
  155. }
  156. }
  157. }
  158. </style>