download.vue 581 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view>
  3. <!-- #ifdef H5 -->
  4. <view class="down" @click="onDown">App下载</view>
  5. <!-- #endif -->
  6. </view>
  7. </template>
  8. <script>
  9. export default{
  10. methods:{
  11. onDown(){
  12. uni.showToast({
  13. title:"开发中",
  14. icon:"none"
  15. })
  16. }
  17. }
  18. }
  19. </script>
  20. <style>
  21. .down{
  22. position: fixed;
  23. left: 50%;
  24. bottom: 15%;
  25. width: 200rpx;
  26. height: 80rpx;
  27. line-height: 80rpx;
  28. border-radius: 40rpx;
  29. text-align: center;
  30. z-index: 666;
  31. background-color: #000000;
  32. color: #fff;
  33. transform: translate(-50%,-15%);
  34. font-size: 34rpx;
  35. }
  36. </style>