推广小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
2.1 KiB

2 months ago
2 months ago
2 months ago
  1. <template>
  2. <view class='invoiceRecords'>
  3. <view class="head-box"></view>
  4. <Navbar title="开票记录" :autoBack="true" :bgColor="bgColor" leftIconSize="18px" height="100rpx" :leftIconColor="leftIconColor" :titleStyle="{color:fontColor}" />
  5. <view class="content contentPosition_">
  6. <view class="info cardStyle_">
  7. <view class="left">
  8. <image src="https://img0.baidu.com/it/u=4274003247,920124130&fm=253&fmt=auto&app=138&f=JPEG?w=800&h=1031" alt="">
  9. </view>
  10. <view class="right">
  11. <view class="detailed">
  12. <view class="title">夏日去撒野旅游计划</view>
  13. <view class="date">2024.10.28 10:00</view>
  14. <view class="address">成都市东丽湖露营地32号</view>
  15. </view>
  16. <view class="data">
  17. <text>标准票</text>
  18. <text>×3</text>
  19. <text class="btn">已开票</text>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. import Navbar from '@/pages/components/Navbar.vue'
  28. import { globalMixin } from '../pages/mixins/globalMixin';
  29. export default {
  30. mixins: [globalMixin],
  31. components:{
  32. Navbar
  33. },
  34. data() {
  35. return {
  36. };
  37. },
  38. components: {
  39. },
  40. computed: {
  41. },
  42. watch: {
  43. },
  44. created() {
  45. },
  46. mounted() {
  47. },
  48. methods: {
  49. }
  50. };
  51. </script>
  52. <style scoped lang="scss">
  53. .invoiceRecords {
  54. .info {
  55. margin: 10rpx 32rpx 0rpx;
  56. padding: 35rpx 0 35rpx 24rpx;
  57. border-radius: 26rpx;
  58. .right {
  59. .data {
  60. display: flex;
  61. justify-content: space-between;
  62. .btn {
  63. background: #381615;
  64. color: $uni-color-primary;
  65. padding: 10rpx 40rpx;
  66. border-radius: 30rpx 0px 0px 30rpx;
  67. }
  68. }
  69. }
  70. }
  71. }
  72. </style>