m-download.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <template>
  2. <view>
  3. <view class="card">
  4. <view class="card_title">
  5. App下载二维码
  6. </view>
  7. <view class="card_img">
  8. <image src="https://images.pexels.com/photos/934718/pexels-photo-934718.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"
  9. mode="aspectFill"></image>
  10. </view>
  11. <view class="card_tips">
  12. 扫一扫下载
  13. </view>
  14. </view>
  15. <view class="download_btn" @click="save('https://images.pexels.com/photos/934718/pexels-photo-934718.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500')">
  16. <view class="btn_icon"></view>
  17. <view class="btn_name">保存到手机</view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data() {
  24. return {
  25. };
  26. },
  27. methods: {
  28. save(filePath) {
  29. uni.saveImageToPhotosAlbum({
  30. filePath: filePath,
  31. success: function() {
  32. console.log('save success');
  33. }
  34. });
  35. uni.showToast({
  36. icon:"none",
  37. title:"保存成功!"
  38. })
  39. }
  40. }
  41. }
  42. </script>
  43. <style lang="scss">
  44. page {
  45. background-color: #009FE8;
  46. box-sizing: border-box;
  47. padding: 53rpx 28rpx 0;
  48. }
  49. .card {
  50. width: 696rpx;
  51. height: 894rpx;
  52. background: #FFFFFF;
  53. box-shadow: 0px 0px 5rpx 5rpx rgba(0, 0, 0, 0.1);
  54. border-radius: 10rpx;
  55. .card_title {
  56. text-align: center;
  57. height: 120rpx;
  58. font-size: 38rpx;
  59. font-family: PingFangSC-Medium, PingFang SC;
  60. font-weight: 500;
  61. color: #333333;
  62. line-height: 120rpx;
  63. border-bottom: 2rpx solid #f0f0f0;
  64. }
  65. .card_img {
  66. padding: 31rpx 36rpx 32rpx;
  67. image {
  68. width: 625rpx;
  69. height: 625rpx;
  70. }
  71. }
  72. .card_tips {
  73. text-align: center;
  74. height: 78rpx;
  75. font-size: 25rpx;
  76. font-family: PingFangSC-Medium, PingFang SC;
  77. font-weight: 500;
  78. color: #6C6F74;
  79. line-height: 78rpx;
  80. border-top: 2rpx solid #f0f0f0;
  81. }
  82. }
  83. .download_btn {
  84. margin-top: 180rpx;
  85. height: 74rpx;
  86. background: #FFFFFF;
  87. border-radius: 5rpx;
  88. display: flex;
  89. justify-content: center;
  90. .btn_icon {
  91. margin-top: 19rpx;
  92. width: 38rpx;
  93. height: 38rpx;
  94. background-image: url(icon/down.png);
  95. background-size: cover;
  96. background-repeat: no-repeat;
  97. }
  98. .btn_name {
  99. margin-left: 15rpx;
  100. font-size: 29rpx;
  101. font-family: PingFangSC-Medium, PingFang SC;
  102. font-weight: 500;
  103. color: #232627;
  104. line-height: 74rpx;
  105. }
  106. }
  107. </style>