You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

invoice-download.vue 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <view class="box">
  3. <view class="content">
  4. <view class="">
  5. 如需下载请长按网址复制后使用游览器访问
  6. </view>
  7. <text>https://www.baidu.com</text>
  8. </view>
  9. <button class="download">复制</button>
  10. </view>
  11. </template>
  12. <script setup lang="ts">
  13. import {
  14. reactive
  15. } from "vue";
  16. import {
  17. msg,
  18. navTo
  19. } from '@/utils/utils';
  20. const toPage = () => {
  21. navTo('/subpackage/orders/invoiceApply/invoiceList')
  22. }
  23. </script>
  24. <style>
  25. page {
  26. width: 100%;
  27. height: 100%;
  28. background: #EEF7F7;
  29. }
  30. </style>
  31. <style lang="scss" scoped>
  32. .box {
  33. height: 100%;
  34. width: 100%;
  35. border-top: 1rpx solid #EEF7F7;
  36. background: #EEF7F7;
  37. .content {
  38. text-align: center;
  39. margin-top: 123rpx;
  40. view {
  41. font-size: 32rpx;
  42. font-family: Noto Sans S Chinese;
  43. font-weight: 400;
  44. color: #333333;
  45. margin-bottom: 60rpx;
  46. }
  47. text {
  48. font-size: 26rpx;
  49. font-family: Noto Sans S Chinese;
  50. font-weight: 400;
  51. color: #333333;
  52. }
  53. }
  54. .download {
  55. width: 670rpx;
  56. height: 80rpx;
  57. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  58. border-radius: 40rpx;
  59. font-size: 32rpx;
  60. font-family: Noto Sans S Chinese;
  61. font-weight: 400;
  62. color: #FFFFFF;
  63. line-height: 80rpx;
  64. position: fixed;
  65. left: 50%;
  66. transform: translate(-50%);
  67. bottom: 100rpx;
  68. }
  69. }
  70. </style>