1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="record" v-for="(item,index) in state.msg.myTrajectoryStatisticsVos">
- <view class="current">
- <text>{{item.accountDate}}月通行</text>
- </view>
- <view class="detail">本月九州ETC通行了{{item.frequency}}次高速通行查看历史月度统计要消费{{item.amount/100}}元要通行</view>
- </view>
- </template>
-
- <script setup>
- import { onLoad} from "@dcloudio/uni-app";
- onLoad((option) => {
- console.log("1",JSON.parse(decodeURIComponent(option.data)))
- })
- </script>
-
- <style scoped>
- .record{
- width: 90%;
- min-height: 220rpx;
- box-shadow: 0px 0px 8px 2px rgb(218, 247, 247) inset;
- margin: 20rpx auto;
- padding: 30rpx;
- box-sizing: border-box;
- font-size: 30rpx;
- }
- .current{
- border-bottom: 1rpx solid #ccc;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-bottom: 20rpx;
- }
- .more>image{
- transform: rotate(180deg);
- width: 30rpx;
- height: 30rpx;
- vertical-align: middle;
- }
- .detail{
- margin-top: 20rpx;
- line-height: 40rpx;
- }
- </style>
|