123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <!-- 我的汽车 -->
- <template>
- <view class="">
- <!-- 循环体 -->
- <scroll ref="pullScroll" :pullDown="pullDown" :pullUp="loadData">
- <view class="item" v-for="(item,index) in data" :key="index" @tap="seeDetail(item)">
- <view class="num">{{item.carNo}}</view>
- <view style="width: 400rpx;height: 180rpx;margin-left: 70rpx;">
- <image src="../../static/carBg.png" style="width:100%;height:100%;" ></image>
- </view>
- </view>
- </scroll>
- <!-- 绑定新的车辆 -->
- <view class="btn" @tap="addCar">
- 绑定新的车辆
- </view>
- </view>
- </template>
- <script>
-
- export default {
- data() {
- return {
- isShow: false,
- data: []
- }
- },
- onLoad() {
- this.refresh();
- },
- mounted() {
-
- },
- methods: {
- // 查看汽车通行记录
- seeDetail(item){
- uni.navigateTo({
- url:'./carList?id='+item.carNo
- })
- },
- // 刷新页面
- refresh() {
- this.$nextTick(() => {
- this.$refs.pullScroll.refresh();
- });
- },
- // 向下拉刷新
- pullDown(pullScroll) {
- setTimeout(() => {
- this.loadData(pullScroll);
- }, 200);
- },
- //获取加载数据
- loadData(pullScroll) {
-
- this.pageNum = pullScroll.page
- setTimeout(() => {
- this.http.httpRequest('/wxapplet/ownercar/list', 'get', {
- // cardNo: uni.getStorageSync('idNumber'),
- pageNum: pullScroll.page,
- pageSize: 3,
- cardId: uni.getStorageSync('idNumber'),
- }).then((res) => {
- console.log(res)
- if (res.code == 0) {
- //判断数据是否加载完
- if (this.data.length == res.data.total) {
- pullScroll.finish();
- } else {
- pullScroll.success();
- let data = res.data.rows
- this.data = this.data.concat(data);
- }
- } else {
- pullScroll.finish();
- uni.showToast({
- title: res.msg,
- "icon": 'none'
- })
- }
- }).catch(() => {
- pullScroll.finish();
- })
- }, 500);
- },
-
- // 查看或隐藏记录
- seeMore(index) {
- this.data[index].show = !this.data[index].show
- },
- // 绑定新的车辆
- addCar() {
- uni.navigateTo({
- url: "addCar"
- })
- }
- }
- }
- </script>
- <style>
- .btn {
- width: 702rpx;
- height: 90rpx;
- background: rgba(41, 138, 253, 1);
- opacity: 1;
- border-radius: 18rpx;
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: rgba(255, 255, 255, 1);
- text-align: center;
- line-height: 90rpx;
- position: fixed;
- bottom: 56rpx;
- left: 26rpx;
- z-index: 999;
- }
- .list {
- width: 100%;
- height: 36rpx;
- display: flex;
- justify-content: space-between;
- }
- .listText {
- height: 100%;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(51, 51, 51, 1);
- }
- .date {
- width: 240rpx;
- height: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(153, 153, 153, 1);
- text-align: right;
- }
- .right {
- width: 160rpx;
- height: 40rpx;
- display: flex;
- }
- .tong {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(153, 153, 153, 1);
- margin-right: 25rpx;
- }
- .left {
- width:100%;
- display: flex;
- justify-content: space-between;
- }
- .num {
- width: 160rpx;
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- line-height: 40rpx;
- color:rgba(51,51,51,1);
- margin-top: 70rpx;
- margin-left: 60rpx;
- }
- .item {
- width: 702rpx;
- margin: 0 auto;
- display: flex;
- height: 180rpx;
- margin-top: 35rpx;
- background:rgba(241,245,249,1);
- border-radius:20rpx;
- }
- .content {
- width: 620rpx;
- margin: 0 auto;
- padding-top: 26rpx;
- padding-bottom: 26rpx;
- display: flex;
- justify-content: space-between;
- }
- .more {
- width: 620rpx;
- margin: 0 auto;
- }
- </style>
|