修改cid无效、登录缓存问题,正在对接支付功能
This commit is contained in:
@@ -37,7 +37,7 @@
|
||||
<view class="line">
|
||||
<view class="row">
|
||||
<text class="label">车位状态</text>
|
||||
<text class="value">{{ item.parkingStatus }}</text>
|
||||
<text class="value">{{ getParkingStatus(item.parkingStatus) }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="line">
|
||||
@@ -94,6 +94,18 @@
|
||||
|
||||
const pageNum = ref(1)
|
||||
const pageSize = ref(10)
|
||||
|
||||
// 车位状态映射
|
||||
const getParkingStatus =(status) =>{
|
||||
const statusMap = {
|
||||
'0':'闲置',
|
||||
'1':'自用',
|
||||
'2':'租赁',
|
||||
'3':'借出',
|
||||
'4':'其他'
|
||||
}
|
||||
return statusMap[status]
|
||||
}
|
||||
// ==================== 获取列表数据 ====================
|
||||
const getList = async () => {
|
||||
// 防重复请求
|
||||
|
||||
Reference in New Issue
Block a user