download.vue 2.2 KB

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