viewE-invoice.vue 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view>
  3. <u-navbar title="查看电子发票" title-color="#101010" ></u-navbar>
  4. <view class="img-box">
  5. <image class="img" src="@/assets/img/e-invoice.png" mode=""></image>
  6. </view>
  7. <view class="btn-box">
  8. <button class="picture">下载图片</button>
  9. <button class="pdf">下载PDF</button>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. }
  21. }
  22. </script>
  23. <style lang="scss" scoped>
  24. .img-box{
  25. width: 100%;
  26. height: 576rpx;
  27. .img{
  28. width: 100%;
  29. height: 100%;
  30. }
  31. }
  32. .btn-box{
  33. display: flex;
  34. margin-top: 24rpx;
  35. .picture{
  36. width: 332rpx;
  37. line-height: 88rpx;
  38. border-radius: 8px;
  39. background-color: rgba(255,255,255,1);
  40. color: rgba(119,119,119,1);
  41. font-size: 32rpx;
  42. border: 1px solid rgba(205,205,205,1);
  43. }
  44. .pdf{
  45. width: 330rpx;
  46. line-height: 88rpx;
  47. border-radius: 8px;
  48. background-color: rgba(22,119,255,1);
  49. color: rgba(255,255,255,1);
  50. font-size: 32rpx;
  51. }
  52. }
  53. </style>