download.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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://cdn.colorhub.me/Ae_89hq_0VPSGk4AD9LB1FcUv1_5dxMK45Ed19bFDHo/auto/280/0/ce/0/bG9jYWw6Ly8vY2Ev/ZDEvZTRlNzU0Yzdl/MTljMDA3YjQ3NmRj/ZDk4ZjIwOTExNWE2/NDViY2FkMS5qcGVn.jpg"
  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. },
  29. methods: {
  30. save() {
  31. uni.saveImageToPhotosAlbum({
  32. filePath: "./img/download.png",
  33. success: function() {
  34. console.log('save success');
  35. }
  36. });
  37. uni.showToast({
  38. icon:"none",
  39. title:"保存成功!"
  40. })
  41. }
  42. }
  43. }
  44. </script>
  45. <style lang="scss">
  46. page {
  47. background-color: #009FE8;
  48. box-sizing: border-box;
  49. padding: 50rpx 25rpx 0;
  50. }
  51. .card {
  52. width: 700rpx;
  53. background: #FFFFFF;
  54. box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  55. border-radius: 10px;
  56. .card_title {
  57. text-align: center;
  58. font-size: 19px;
  59. font-family: PingFangSC-Medium, PingFang SC;
  60. font-weight: 500;
  61. color: #333333;
  62. line-height: 60px;
  63. border-bottom: 2px solid #f0f0f0;
  64. }
  65. .card_img {
  66. box-sizing: border-box;
  67. padding: 25px 20rpx;
  68. image {
  69. width: 660rpx;
  70. height: 300px;
  71. }
  72. }
  73. .card_tips {
  74. text-align: center;
  75. font-size: 12px;
  76. font-family: PingFangSC-Medium, PingFang SC;
  77. font-weight: 500;
  78. color: #6C6F74;
  79. line-height: 40px;
  80. border-top: 2px solid #f0f0f0;
  81. }
  82. }
  83. .download_btn {
  84. margin-top: 40px;
  85. width: 700rpx;
  86. height: 40px;
  87. background: #FFFFFF;
  88. border-radius: 5px;
  89. display: flex;
  90. align-items: center;
  91. justify-content: center;
  92. .btn_icon {
  93. }
  94. .btn_name {
  95. margin-left: 8px;
  96. font-size: 14px;
  97. font-family: PingFangSC-Medium, PingFang SC;
  98. font-weight: 500;
  99. color: #232627;
  100. }
  101. }
  102. </style>