Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

see-month.vue 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view class="record" v-for="(item,index) in state.msg.myTrajectoryStatisticsVos">
  3. <view class="current">
  4. <text>{{item.accountDate}}月通行</text>
  5. </view>
  6. <view class="detail">本月九州ETC通行了{{item.frequency}}次高速通行查看历史月度统计要消费{{item.amount/100}}元要通行</view>
  7. </view>
  8. </template>
  9. <script setup>
  10. import { onLoad} from "@dcloudio/uni-app";
  11. onLoad((option) => {
  12. console.log("1",JSON.parse(decodeURIComponent(option.data)))
  13. })
  14. </script>
  15. <style scoped>
  16. .record{
  17. width: 90%;
  18. min-height: 220rpx;
  19. box-shadow: 0px 0px 8px 2px rgb(218, 247, 247) inset;
  20. margin: 20rpx auto;
  21. padding: 30rpx;
  22. box-sizing: border-box;
  23. font-size: 30rpx;
  24. }
  25. .current{
  26. border-bottom: 1rpx solid #ccc;
  27. display: flex;
  28. justify-content: space-between;
  29. align-items: center;
  30. padding-bottom: 20rpx;
  31. }
  32. .more>image{
  33. transform: rotate(180deg);
  34. width: 30rpx;
  35. height: 30rpx;
  36. vertical-align: middle;
  37. }
  38. .detail{
  39. margin-top: 20rpx;
  40. line-height: 40rpx;
  41. }
  42. </style>