Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

invoice-step2.vue 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <template>
  2. <view class="box">
  3. <view class="card">
  4. <view class="item">
  5. <view>发票抬头</view>
  6. <text>贵州某某科技有限公司</text>
  7. </view>
  8. <view class="item">
  9. <view>发票类型</view>
  10. <text>ETC服务发票</text>
  11. </view>
  12. <view class="item">
  13. <view>开票金额</view>
  14. <text>90.00元</text>
  15. </view>
  16. <view class="item">
  17. <view>开票时间</view>
  18. <text>2023-01-21 10:10:23</text>
  19. </view>
  20. <view class="item" style="border-bottom: 0;">
  21. <view>备注</view>
  22. <text>贵A123123</text>
  23. </view>
  24. </view>
  25. <button class="download" @click="toPage">下载电子发票</button>
  26. </view>
  27. </template>
  28. <script setup lang="ts">
  29. import {
  30. reactive
  31. } from "vue";
  32. import {
  33. msg,
  34. navTo
  35. } from '@/utils/utils';
  36. const toPage = () => {
  37. navTo('/subpackage/orders/invoice-download')
  38. }
  39. </script>
  40. <style>
  41. page {
  42. width: 100%;
  43. height: 100%;
  44. background: #EEF7F7;
  45. }
  46. </style>
  47. <style lang="scss" scoped>
  48. .box {
  49. height: 100%;
  50. width: 100%;
  51. border-top: 1rpx solid #EEF7F7;
  52. background: #EEF7F7;
  53. padding: 30rpx 0;
  54. .card {
  55. padding: 0 30rpx;
  56. // height: 615rpx;
  57. background: #FFFFFF;
  58. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  59. margin-bottom: 30rpx;
  60. .item {
  61. display: flex;
  62. justify-content: space-between;
  63. padding: 30rpx 0;
  64. border-bottom: 1rpx solid #DCDCDC;
  65. view {
  66. font-size: 28rpx;
  67. font-family: Noto Sans S Chinese;
  68. font-weight: 400;
  69. color: #777777;
  70. }
  71. text {
  72. font-size: 28rpx;
  73. font-family: Noto Sans S Chinese;
  74. font-weight: 400;
  75. color: #333333;
  76. }
  77. }
  78. }
  79. .download {
  80. width: 670rpx;
  81. height: 80rpx;
  82. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  83. border-radius: 40rpx;
  84. font-size: 32rpx;
  85. font-family: Noto Sans S Chinese;
  86. font-weight: 400;
  87. color: #FFFFFF;
  88. line-height: 80rpx;
  89. position: fixed;
  90. left: 50%;
  91. transform: translate(-50%);
  92. bottom: 100rpx;
  93. }
  94. }
  95. </style>