chuangte_bike_newxcx/page_user/guzhang/guzhanglv.vue

164 lines
4.0 KiB
Vue
Raw Normal View History

2025-04-01 21:35:30 +08:00
<template>
<view class="page">
<u-navbar title="故障上报记录" :border-bottom="false" :background="bgc" back-icon-color="#262B37" title-color='#262B37'
title-size='36' height='36' id="navbar">
</u-navbar>
<scroll-view class="list" @scrolltolower="handleScrollToLower" scroll-y>
<view class="list_item" v-for="(item,index) in list" :key="index">
<view class="top">
<view class="name">
车牌号{{item.vehicleNum == null ? '--' : item.vehicleNum}}
</view>
<view class="zt" v-if="item.appealStatus == 0">
2025-04-12 18:01:40 +08:00
已驳回 <!-- <u-icon name="arrow-right" color="#808080" size="28"></u-icon> -->
2025-04-01 21:35:30 +08:00
</view>
<view class="zt" v-if="item.appealStatus == 1">
2025-04-12 18:01:40 +08:00
待处理 <!-- <u-icon name="arrow-right" color="#808080" size="28"></u-icon> -->
2025-04-01 21:35:30 +08:00
</view>
<view class="zt" v-if="item.appealStatus == 2">
2025-04-12 18:01:40 +08:00
维修中 <!-- <u-icon name="arrow-right" color="#808080" size="28"></u-icon> -->
2025-04-01 21:35:30 +08:00
</view>
<view class="zt" v-if="item.appealStatus == 3">
2025-04-12 18:01:40 +08:00
已完成 <!-- <u-icon name="arrow-right" color="#808080" size="28"></u-icon> -->
2025-04-01 21:35:30 +08:00
</view>
</view>
<view class="wz">
车辆编号{{item.vehicleCode == null ? '--' : item.vehicleCode}}
</view>
<view class="wz">
故障原因{{item.faultDetail == null ? '--' : item.faultDetail}}
</view>
<view class="wz">
反馈时间{{item.createTime == null ? '--' : item.createTime}}
</view>
</view>
<view class="dibutishi">
仅支持查看最近一年的记录
</view>
</scroll-view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
list:[],
pageNum:1,
2025-04-12 18:01:40 +08:00
total:'',
userid:''
2025-04-01 21:35:30 +08:00
}
},
onLoad() {
},
onShow() {
2025-04-12 18:01:40 +08:00
this.pageNum = 1
this.list = []
2025-04-01 21:35:30 +08:00
this.getuser()
},
methods: {
getuser(){
this.$u.get("/getInfo").then((res) => {
if (res.code == 200) {
2025-04-12 18:01:40 +08:00
this.userid = res.user.userId
2025-04-01 21:35:30 +08:00
let that = this
2025-04-12 18:01:40 +08:00
that.$u.get(`/app/fault?userId=${that.userid}&pageNum=${that.pageNum}&pageSize=10`).then((resp) => {
2025-04-01 21:35:30 +08:00
if (resp.code == 200) {
that.total = resp.total
2025-04-12 18:01:40 +08:00
if(that.pageNum == 1){
2025-04-01 21:35:30 +08:00
that.list = resp.rows
}else{
that.list = that.list.concat(resp.rows)
}
2025-04-12 18:01:40 +08:00
that.pageNum++
2025-04-01 21:35:30 +08:00
}
})
}else if(res.code == 401){
uni.showModal({
title: '提示',
content: '您当前未登录,是否前去登录?',
showCancel: true,
success: function (res) {
if (res.confirm) {
uni.reLaunch({
url:'/pages/login/login'
})
} else if (res.cancel) {
}
}
})
}
})
},
// 滚动到底部分页请求
handleScrollToLower() {
if(this.total > this.list.length){
let that = this
2025-04-12 18:01:40 +08:00
that.$u.get(`/app/fault?userId=${that.userid}&pageNum=${that.pageNum}&pageSize=10`).then((resp) => {
2025-04-01 21:35:30 +08:00
if (resp.code == 200) {
that.total = resp.total
2025-04-12 18:01:40 +08:00
if(that.pageNum == 1){
2025-04-01 21:35:30 +08:00
that.list = resp.rows
}else{
that.list = that.list.concat(resp.rows)
}
}
})
}
},
}
}
</script>
<style lang="scss">
page {
background: #fff;
}
.list{
height: 91vh;
overflow: scroll;
padding-bottom: 30rpx;
box-sizing: border-box;
.dibutishi{
width: 100%;
text-align: center;
font-size: 28rpx;
color: #808080;
margin-top: 52rpx;
}
.list_item{
width: 680rpx;
max-height: 572rpx;
background: #FFFFFF;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
border-radius: 20rpx 20rpx 20rpx 20rpx;
margin: auto;
margin-top: 30rpx;
padding: 22rpx 28rpx;
box-sizing: border-box;
.top{
display: flex;
justify-content: space-between;
.name{
font-weight: 600;
font-size: 32rpx;
color: #3D3D3D;
}
}
.wz{
font-size: 24rpx;
color: #808080;
margin-top: 12rpx;
}
}
}
</style>