wechatQr.vue 1.5 KB

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