index.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <template>
  2. <view class="page-wrap">
  3. <view class="header-panel">
  4. <text class="item">可用额度\n0.00元</text>
  5. <text class="item">纸票张数\n0.00元</text>
  6. <text class="item">蓝票开具金额\n0.00元</text>
  7. <text class="item">发票总额度\n0.00元</text>
  8. <text class="item">已开发票\n0.00元</text>
  9. <text class="item">累计税额\n0.00元\n发票数量\n0.00元</text>
  10. </view>
  11. <view class="nav-panel">
  12. <view class="item">
  13. <view class="icon-wrap">
  14. <image class="icon icon-1" src="../../../static/svg/app_tax_1.svg"></image>
  15. </view>
  16. 我要开发票
  17. </view>
  18. <view class="item">
  19. <view class="icon-wrap">
  20. <image class="icon icon-2" src="../../../static/svg/app_tax_2.svg"></image>
  21. </view>
  22. 开票记录
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. data() {
  30. return {};
  31. },
  32. methods: {}
  33. };
  34. </script>
  35. <style lang="scss" scoped>
  36. .header-panel {
  37. background: linear-gradient(90deg, rgba(85, 141, 255, 1) 0%, rgba(85, 141, 255, 1) 0%, rgba(99, 95, 235, 1) 100%, rgba(99, 95, 235, 1) 100%);
  38. height: 467.03rpx;
  39. color: #fff;
  40. font-size: 32.97rpx;
  41. display: flex;
  42. flex-wrap: wrap;
  43. padding: 68.68rpx 0 0 34.34rpx;
  44. box-sizing: border-box;
  45. .item {
  46. flex: 0 0 33.33%;
  47. }
  48. }
  49. .nav-panel{
  50. display: flex;
  51. .item{
  52. flex: 0 0 50%;
  53. height: 329.67rpx;
  54. background: #fff;
  55. display: flex;
  56. flex-direction: column;
  57. align-items: center;
  58. justify-content: center;
  59. font-size: 32.97rpx;
  60. color: #666;
  61. &:nth-child(2n){
  62. border-left: 1rpx solid #ccc;
  63. }
  64. }
  65. .icon-wrap{
  66. width: 109.89rpx;
  67. height: 109.89rpx;
  68. display: flex;
  69. align-items: center;
  70. justify-content: center;
  71. margin-bottom: 13.74rpx;
  72. .icon{
  73. &-1{
  74. width: 96.15rpx;
  75. height: 83.79rpx;
  76. }
  77. &-2{
  78. width: 82.42rpx;
  79. height: 72.8rpx;
  80. }
  81. }
  82. }
  83. }
  84. </style>