123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- <template>
- <view class="content">
- <view class="des">请查收您的通行记忆,让每段行程都有意义。</view>
- <view class="choice-content">
- <view class="choice-car">
- <picker @change="bindPickerChange" :value="state.index" :range="state.array">
- <view class="uni-input">{{state.array[state.index]}}</view>
- </picker>
- </view>
- <view class="content-det">
- <view class="left">
- <view class="left-item">
- <image src="../../static/image/home-on.png" ></image>
- <view>
- <view class="data">0km</view>
- <view>高速通行总里程</view>
- </view>
- </view>
- <view class="left-item">
- <image src="../../static/image/home-on.png" ></image>
- <view>
- <view class="data">0元</view>
- <view>高速通行总金额</view>
- </view>
- </view>
- <view class="left-item">
- <image src="../../static/image/home-on.png" ></image>
- <view>
- <view class="data">0次</view>
- <view>高速通行总消费次数</view>
- </view>
- </view>
- <view class="left-item">
- <image src="../../static/image/home-on.png" ></image>
- <view>
- <view class="data">5个</view>
- <view>高速通行曾抵达过的城市教</view>
- </view>
- </view>
- <view class="left-item" style="margin-bottom: 30rpx;">
- <image src="../../static/image/home-on.png"></image>
- <view>
- <view class="data">暂无</view>
- <view>您最喜爱的目的地,曾累计到访过0次</view>
- </view>
- </view>
- </view>
- <view class="right">
- <view>您超过了1%的九州ETC用户</view>
- <image src="../../../static/image/home-on.png" mode="" ></image>
- <view class="see" @click="see()">查看我的轨迹图</view>
- </view>
- </view>
- </view>
- <view class="record">
- <view class="current">
- <text>6月通行</text>
- <view class="more" @click="seeMonth()">查看历史月度统计 <image src="../../../static/image/icon-back.png"></image></view>
- </view>
- <view class="detail">木月九州EC比你通行了0次高速通行查看历史月度统计要消费0元要通行</view>
- </view>
- </view>
- </template>
-
- <script setup lang="ts">
- import { reactive } from "vue";
- import {request} from "@/utils/network/request.js";
- import {stringToJson} from "@/utils/network/encryption.js";
- import { onLoad} from "@dcloudio/uni-app";
- import {} from "@/utils/network/api.js";
- const state = reactive({
- array: ['贵Z11111', '贵Z22222'],
- index: 0,
- })
- onLoad((option : any) => {
- })
- const bindPickerChange=(e)=> {
- console.log('picker发送选择改变,携带值为', e.detail.value)
- state.index = e.detail.value
- }
- const see=()=>{
- uni.navigateTo({
- url:"/subpackage/service/trajectory-map"
- })
- }
- const seeMonth=()=>{
- uni.navigateTo({
- url:"./see-month"
- })
- }
- </script>
-
- <style scoped>
- .content{
- font-size: 32rpx;
- }
- .des{
- margin: 20rpx 0 20rpx 40rpx;
- }
- .choice-content{
- width:90%;
- margin: 0 auto;
- min-height:500rpx;
- box-shadow: 0px 0px 8px 2px rgb(218, 247, 247) inset;
- overflow: hidden;
- }
- .choice-car{
- width: 180rpx;
- background-color: rgb(158, 247, 247);
- margin-top: 30rpx;
- padding: 10rpx;
- }
- .left-item{
- display: flex;
- margin-bottom: 50rpx;
- }
- .left-item>image{
- width: 70rpx;
- height: 70rpx;
- display: inline-block;
- margin-right: 30rpx;
- flex-shrink: 0;
- }
- .data{
- font-weight: bold;
- }
- .content-det{
- padding: 30rpx;
- box-sizing: border-box;
- display: flex;
- }
- .right>image{
- width: 120rpx;
- height: 120rpx;
- display: inline-block;
- margin: 30rpx auto;
- margin-left: 40rpx;
- }
- .see{
- background-color: rgb(158, 247, 247);
- border-radius: 20rpx;
- text-align: center;
- height: 54rpx;
- line-height: 54rpx;
- font-size: 28rpx;
- }
- .left{
- flex: 2;
-
- }
- .right{
- flex: 1;
- }
- .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;
- }
- .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>
|