wechatQr.vue 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view class="content">
  3. <image class="bg-img" src="/static/img/img09.png" mode="scaleToFill"></image>
  4. <view class="logo-img-box">
  5. <image class="logo-img" src="/static/img/img12.png" mode="aspectFit"></image>
  6. <button class="userInfo" type="warn">
  7. <text class="iconfont iconweixin"></text>
  8. <text>
  9. 长按识别关注公众号
  10. </text>
  11. </button>
  12. </view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. };
  20. },
  21. onLoad() {
  22. // let obj = this;
  23. // 加载二维码
  24. // uni.downloadFile({
  25. // url: 'https://ptj.liuniu946.com/index/img/img09.png',
  26. // success(res) {
  27. // console.log(res);
  28. // if (res.errMsg == 'downloadFile:ok') {
  29. // obj.src1 = res.tempFilePath;
  30. // }
  31. // },
  32. // fail(e) {
  33. // console.log(e);
  34. // }
  35. // });
  36. // 加载小图
  37. // uni.downloadFile({
  38. // url: 'https://ptj.liuniu946.com/index/img/img12.png',
  39. // success(res) {
  40. // console.log(res);
  41. // if (res.errMsg == 'downloadFile:ok') {
  42. // obj.src2 = res.tempFilePath;
  43. // }
  44. // },
  45. // fail(e) {
  46. // console.log(e);
  47. // }
  48. // });
  49. }
  50. };
  51. </script>
  52. <style lang="scss">
  53. page,
  54. .content {
  55. height: 100%;
  56. }
  57. .bg-img,
  58. .logo-img-box {
  59. position: absolute;
  60. top: 0;
  61. left: 0;
  62. width: 100%;
  63. height: 100%;
  64. }
  65. .logo-img {
  66. margin-top: 20vh;
  67. margin-left: 176rpx;
  68. width: 385rpx;
  69. height: 394rpx;
  70. }
  71. .userInfo {
  72. margin: 0 100rpx;
  73. margin-top: 50rpx;
  74. color: #FFFFFF;
  75. border-radius: 99rpx;
  76. background-color: $base-color;
  77. }
  78. </style>