invoiceDetail.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. </u-cell-item>
  16. <u-cell-item title="发票代码" :arrow="false" value="000011110000"></u-cell-item>
  17. <u-cell-item title="发票号码" :arrow="false" value="00000000"></u-cell-item>
  18. <u-cell-item title="发票类型":arrow="false" value="个人/非企业单位"></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="2022-06-08"></u-cell-item>
  22. </u-cell-group>
  23. <u-cell-item style="background-color: #fff;" title="发票预览":arrow="false">
  24. <text class="success">查看</text>
  25. </u-cell-item>
  26. </view>
  27. </template>
  28. <script>
  29. </script>
  30. <style lang="scss">
  31. .price{
  32. background-color: #fff;
  33. padding: 24px 0;
  34. text-align: center;
  35. .num{
  36. line-height: 36px;
  37. color: rgba(16, 16, 16, 100);
  38. font-size: 36px;
  39. }
  40. .text{
  41. color: rgba(102, 102, 102, 100);
  42. font-size: 16px;
  43. margin-top: 4px;
  44. }
  45. }
  46. /deep/.u-cell-box{
  47. margin: 12px 0;
  48. }
  49. /deep/.u-cell__value,/deep/.u-cell_title{
  50. font-size: 18px
  51. }
  52. .success{
  53. color: #00b962;
  54. }
  55. </style>