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-mannager.vue 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <view class="box">
  3. <view class="card" @click="toPage(1)">
  4. <view class="card-left">
  5. <view class="image-box">
  6. <image :src="`${$imgUrl}InvoiceMannager/icon2.png`" mode=""></image>
  7. </view>
  8. <text>ETC服务订单</text>
  9. </view>
  10. <u-icon name="arrow-right" color="#B2B2B2" size="30"></u-icon>
  11. </view>
  12. <view class="card" @click="toPage(2)">
  13. <view class="card-left">
  14. <view class="image-box">
  15. <image :src="`${$imgUrl}InvoiceMannager/icon1.png`" mode=""></image>
  16. </view>
  17. <text>通行流水服务费订单</text>
  18. </view>
  19. <u-icon name="arrow-right" color="#B2B2B2" size="30"></u-icon>
  20. </view>
  21. </view>
  22. </template>
  23. <script setup lang="ts">
  24. import {
  25. reactive
  26. } from "vue";
  27. import {
  28. msg,
  29. navTo
  30. } from '@/utils/utils';
  31. const toPage = (type) => {
  32. navTo(`/subpackage/orders/invoiceApply/invoice-content?type=${type}`)
  33. }
  34. </script>
  35. <style>
  36. page {
  37. width: 100%;
  38. height: 100%;
  39. }
  40. </style>
  41. <style lang="scss" scoped>
  42. .box {
  43. height: 100%;
  44. // width: 100%;
  45. padding: 30rpx;
  46. border-top: 1rpx solid #EEF7F7;
  47. background: #EEF7F7;
  48. .card {
  49. margin-bottom: 30rpx;
  50. height: 130rpx;
  51. background: #FFFFFF;
  52. box-shadow: 0rpx 2rpx 6rpx 0rpx rgba(223, 223, 223, 0.8);
  53. border-radius: 20rpx;
  54. display: flex;
  55. justify-content: space-between;
  56. align-items: center;
  57. padding: 30rpx;
  58. .card-left {
  59. display: flex;
  60. align-items: center;
  61. .image-box {
  62. width: 60rpx;
  63. height: 60rpx;
  64. background: #00B38B;
  65. border-radius: 50%;
  66. display: flex;
  67. justify-content: center;
  68. align-items: center;
  69. image {
  70. width: 40rpx;
  71. height: 40rpx;
  72. }
  73. }
  74. text {
  75. font-size: 32rpx;
  76. font-family: Noto Sans S Chinese;
  77. font-weight: 400;
  78. color: #333333;
  79. margin-left: 30rpx;
  80. }
  81. }
  82. }
  83. }
  84. </style>