invoiceHistory.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <view class="curpage">
  3. <view class="list">
  4. <view class="flex">
  5. <view class="">
  6. 公司名称xxx
  7. </view>
  8. <view class="" style="color: #1E9F6A;">
  9. 已开票
  10. </view>
  11. </view>
  12. <view class="content">
  13. <view class="">
  14. <text style="color: #666666 ;">电子发票 | 发票金额 :</text>
  15. ¥2345
  16. </view>
  17. <view class="" style="margin: 20rpx 0;">
  18. <text style="color: #666666 ;">申请时间:</text>
  19. 2022-01-05
  20. </view>
  21. </view>
  22. <view class="btn">
  23. 发送至邮箱
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. </script>
  30. <style lang="less">
  31. page{
  32. background-color: #f4f4f4;
  33. font-size: 30rpx;
  34. }
  35. .list{
  36. margin: 30rpx;
  37. padding-bottom: 20rpx;
  38. background: #FFFFFF;
  39. box-shadow: 0px 2rpx 4rpx 0px rgba(0, 0, 0, 0.02);
  40. border-radius: 8rpx 32rpx 8rpx 32rpx;
  41. }
  42. .flex{
  43. display: flex;
  44. justify-content: space-between;
  45. padding: 30rpx;
  46. border-bottom: 1rpx solid #E3E3E3;
  47. }
  48. .content{
  49. margin: 30rpx;
  50. border-bottom: 1rpx solid #E3E3E3;
  51. }
  52. .btn{
  53. width: 198rpx;
  54. height: 64rpx;
  55. line-height: 64rpx;
  56. text-align: center;
  57. margin: 30rpx auto 20rpx;
  58. color: #1E9F6A;
  59. background: rgba(30, 159, 106, 0.1);
  60. border-radius: 32rpx;
  61. border: 1px solid #1E9F6A;
  62. }
  63. </style>