download.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <view>
  3. <view class="card">
  4. <view class="card_title">
  5. App下载二维码
  6. </view>
  7. <view class="card_img">
  8. <image v-if="mine_code == 'zaoquan'"
  9. src="http://webdevelop.nxjiewei.com/assets/html/zhks-quankuang/zaoquan/download/download.png"
  10. mode=""></image>
  11. <image v-if="mine_code == 'ningdongyunying'"
  12. src="http://webdevelop.nxjiewei.com/assets/html/zhks-quankuang/ningdongyunying/download/download.png"
  13. mode=""></image>
  14. </view>
  15. <view class="card_tips">
  16. 扫一扫下载
  17. </view>
  18. </view>
  19. <view class="download_btn" @click="save()">
  20. <view class="btn_icon">
  21. <uni-icons type="download"></uni-icons>
  22. </view>
  23. <view class="btn_name">保存到手机</view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {
  31. // 当前煤矿编码
  32. mine_code: "",
  33. };
  34. },
  35. onLoad() {
  36. // 初始化当前煤矿编码
  37. this.mine_code = uni.getStorageSync('mine_code')
  38. },
  39. methods: {
  40. save() {
  41. uni.saveImageToPhotosAlbum({
  42. filePath: "./img/download.png",
  43. success: function() {
  44. console.log('save success');
  45. }
  46. });
  47. uni.showToast({
  48. icon: "none",
  49. title: "保存成功!"
  50. })
  51. }
  52. }
  53. }
  54. </script>
  55. <style lang="scss">
  56. page {
  57. background-color: #009FE8;
  58. box-sizing: border-box;
  59. padding: 50rpx 25rpx 0;
  60. }
  61. .card {
  62. width: 700rpx;
  63. background: #FFFFFF;
  64. box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  65. border-radius: 10px;
  66. .card_title {
  67. text-align: center;
  68. font-size: 19px;
  69. font-family: PingFangSC-Medium, PingFang SC;
  70. font-weight: 500;
  71. color: #333333;
  72. line-height: 60px;
  73. border-bottom: 2px solid #f0f0f0;
  74. }
  75. .card_img {
  76. box-sizing: border-box;
  77. padding: 25px 20rpx;
  78. image {
  79. width: 660rpx;
  80. height: 300px;
  81. }
  82. }
  83. .card_tips {
  84. text-align: center;
  85. font-size: 12px;
  86. font-family: PingFangSC-Medium, PingFang SC;
  87. font-weight: 500;
  88. color: #6C6F74;
  89. line-height: 40px;
  90. border-top: 2px solid #f0f0f0;
  91. }
  92. }
  93. .download_btn {
  94. margin-top: 40px;
  95. width: 700rpx;
  96. height: 40px;
  97. background: #FFFFFF;
  98. border-radius: 5px;
  99. display: flex;
  100. align-items: center;
  101. justify-content: center;
  102. .btn_icon {}
  103. .btn_name {
  104. margin-left: 8px;
  105. font-size: 14px;
  106. font-family: PingFangSC-Medium, PingFang SC;
  107. font-weight: 500;
  108. color: #232627;
  109. }
  110. }
  111. </style>