applicationDetails.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <template>
  2. <view >
  3. <u-navbar title="发票详情"></u-navbar>
  4. <view class="price">
  5. <view class="num">
  6. 15.00元
  7. </view>
  8. <view class="text" >
  9. 发票金额
  10. </view>
  11. </view>
  12. <u-cell-group>
  13. <u-cell-item title="开票状态" :arrow="false">
  14. <text class="success">开票成功</text>
  15. <!-- <text class="invoicing">开票中</text> -->
  16. </u-cell-item>
  17. <u-cell-item title="发票代码" :arrow="false" value="000011110000"></u-cell-item>
  18. <u-cell-item title="发票号码" :arrow="false" value="00000000"></u-cell-item>
  19. <u-cell-item title="发票类型":arrow="false" value="个人/非企业单位"></u-cell-item>
  20. <u-cell-item title="发票抬头" :arrow="false" value="李广宵"></u-cell-item>
  21. <u-cell-item title="发票税号" :arrow="false" value="--"></u-cell-item>
  22. <u-cell-item title="开票时间" :arrow="false" value="2022-06-08"></u-cell-item>
  23. </u-cell-group>
  24. <u-cell-item style="background-color: #fff;" title="发票预览":arrow="false">
  25. <text class="success">查看</text>
  26. </u-cell-item>
  27. </view>
  28. </template>
  29. <script>
  30. </script>
  31. <style lang="scss">
  32. page{
  33. padding-bottom: 50px;
  34. background-color: #F2F4F4;
  35. }
  36. .price{
  37. background-color: #fff;
  38. padding: 24px 0;
  39. text-align: center;
  40. .num{
  41. line-height: 36px;
  42. color: rgba(16, 16, 16, 100);
  43. font-size: 36px;
  44. }
  45. .text{
  46. color: rgba(102, 102, 102, 100);
  47. font-size: 16px;
  48. margin-top: 4px;
  49. }
  50. }
  51. .success{
  52. color: #00b962;
  53. font-size: 16px;
  54. margin-top: 4px;
  55. }
  56. .invoicing{
  57. color: #ff6100;
  58. }
  59. /deep/.u-cell-box{
  60. margin: 12px 0;
  61. }
  62. /deep/.u-cell__value,/deep/.u-cell_title{
  63. font-size: 18px
  64. }
  65. /deep/.u-cell_title{
  66. color: #666666;
  67. }
  68. /deep/.u-cell__value{
  69. color: #101010;
  70. }
  71. </style>