222 lines
4.6 KiB
Vue
222 lines
4.6 KiB
Vue
|
<template>
|
|||
|
<view class="ins-container">
|
|||
|
<!-- tab栏 -->
|
|||
|
<view class="ins-tabs">
|
|||
|
<view v-for="(tab, idx) in tabs" :key="idx" :class="['ins-tab', {active: idx === activeTab}]"
|
|||
|
@click="changeTab(idx)">
|
|||
|
{{ tab }}
|
|||
|
<view v-if="idx === activeTab" class="tab-underline"></view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<!-- 列表区 -->
|
|||
|
<view class="ins-list">
|
|||
|
<view v-for="(item, idx) in list" :key="idx" class="ins-card" @click="goProcess(item)">
|
|||
|
<view class="ins-row">
|
|||
|
<view class="ins-no">保洁部日常巡检 {{ item.createTime.substring(0,11) }}</view>
|
|||
|
<view class="ins-status" :class="getStatusColor(item.status)">
|
|||
|
{{ getStatusLabel(item.status) }}
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<image class="ins-line-image" src="/static/ic_my_repair_03.png" />
|
|||
|
<view class="ins-info">巡检人:{{ item.createTime }}</view>
|
|||
|
<view class="ins-info">计划完成时间:{{ item.typeName }}</view>
|
|||
|
<view class="ins-info">实际完成时间:{{ item.location }}</view>
|
|||
|
<view class="ins-info">巡检进度:{{ item.location }}</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
export default {
|
|||
|
data() {
|
|||
|
return {
|
|||
|
tabs: ['待进行', '处理中', '已完成'],
|
|||
|
activeTab: 0,
|
|||
|
tabData: [
|
|||
|
[],
|
|||
|
[],
|
|||
|
[]
|
|||
|
], // 每个tab的数据
|
|||
|
tabLoaded: [false, false, false], // 每个tab是否已加载
|
|||
|
loading: false
|
|||
|
}
|
|||
|
},
|
|||
|
computed: {
|
|||
|
list() {
|
|||
|
return this.tabData[this.activeTab];
|
|||
|
}
|
|||
|
},
|
|||
|
created() {
|
|||
|
this.loadTabData(this.activeTab); // 初始化加载当前tab数据
|
|||
|
},
|
|||
|
methods: {
|
|||
|
goBack() {
|
|||
|
uni.navigateBack();
|
|||
|
},
|
|||
|
async changeTab(idx) {
|
|||
|
this.activeTab = idx;
|
|||
|
if (!this.tabLoaded[idx]) {
|
|||
|
await this.loadTabData(idx);
|
|||
|
}
|
|||
|
},
|
|||
|
async loadTabData(idx) {
|
|||
|
this.loading = true;
|
|||
|
// 模拟接口请求,不同tab返回不同mock数据
|
|||
|
let params = {}
|
|||
|
|
|||
|
|
|||
|
let data = [];
|
|||
|
|
|||
|
let res = await this.$u.api.getInspection(params);
|
|||
|
if (res.code == '200') {
|
|||
|
data = res.rows
|
|||
|
}
|
|||
|
|
|||
|
this.$set(this.tabData, idx, data);
|
|||
|
this.$set(this.tabLoaded, idx, true);
|
|||
|
this.loading = false;
|
|||
|
},
|
|||
|
goProcess(item) {
|
|||
|
const detailItemStr = encodeURIComponent(JSON.stringify(item));
|
|||
|
uni.navigateTo({
|
|||
|
url: `/pages/sys/workbench/inspection/inspectionProcess?detailItem=${item}`
|
|||
|
});
|
|||
|
},
|
|||
|
|
|||
|
getStatusLabel(status) {
|
|||
|
const statusMap = {
|
|||
|
0: '待确认',
|
|||
|
1: '已确认',
|
|||
|
2: '已取消',
|
|||
|
3: '已完成'
|
|||
|
};
|
|||
|
return statusMap[status] || '';
|
|||
|
},
|
|||
|
getStatusColor(status){
|
|||
|
const statusMap = {
|
|||
|
0: '待确认',
|
|||
|
1: 'orange',
|
|||
|
2: '已取消',
|
|||
|
3: '已完成'
|
|||
|
};
|
|||
|
return statusMap[status] || '';
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style scoped>
|
|||
|
.ins-container {
|
|||
|
height: 100vh;
|
|||
|
background: #f7f7f7;
|
|||
|
display: flex;
|
|||
|
flex-direction: column;
|
|||
|
}
|
|||
|
|
|||
|
.ins-tabs {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: space-around;
|
|||
|
background: #fff;
|
|||
|
height: 80rpx;
|
|||
|
border-bottom: 1px solid #f0f0f0;
|
|||
|
flex-shrink: 0;
|
|||
|
/* 防止被压缩 */
|
|||
|
}
|
|||
|
|
|||
|
.ins-tab {
|
|||
|
flex: 1;
|
|||
|
text-align: center;
|
|||
|
font-size: 30rpx;
|
|||
|
color: #888;
|
|||
|
position: relative;
|
|||
|
font-weight: 500;
|
|||
|
padding: 0 0 10rpx 0;
|
|||
|
/* tab点击事件 */
|
|||
|
cursor: pointer;
|
|||
|
}
|
|||
|
|
|||
|
.ins-tab.active {
|
|||
|
color: #2186FF;
|
|||
|
font-weight: bold;
|
|||
|
}
|
|||
|
|
|||
|
.tab-underline {
|
|||
|
width: 60rpx;
|
|||
|
height: 6rpx;
|
|||
|
background: #2186FF;
|
|||
|
border-radius: 3rpx;
|
|||
|
margin: 0 auto;
|
|||
|
margin-top: 8rpx;
|
|||
|
}
|
|||
|
|
|||
|
.ins-list {
|
|||
|
margin: 25rpx 0 0 0;
|
|||
|
padding: 0 35rpx;
|
|||
|
flex: 1;
|
|||
|
/* 占据所有剩余空间 */
|
|||
|
overflow-y: auto;
|
|||
|
/* 内容超出时,开启垂直滚动 */
|
|||
|
padding-bottom: 200rpx;
|
|||
|
/* 为底部按钮留出空间 */
|
|||
|
}
|
|||
|
|
|||
|
.ins-card {
|
|||
|
background: #fff;
|
|||
|
border-radius: 16rpx;
|
|||
|
margin-bottom: 24rpx;
|
|||
|
padding: 20rpx 40rpx 70rpx 12rpx;
|
|||
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
|
|||
|
}
|
|||
|
|
|||
|
.ins-row {
|
|||
|
display: flex;
|
|||
|
align-items: center;
|
|||
|
justify-content: space-between;
|
|||
|
margin-bottom: 12rpx;
|
|||
|
margin-top: 25rpx;
|
|||
|
margin-left: 19rpx;
|
|||
|
margin-right: 50rpx;
|
|||
|
}
|
|||
|
|
|||
|
.ins-no {
|
|||
|
font-size: 24rpx;
|
|||
|
color: #0B0B0B;
|
|||
|
font-weight: 500;
|
|||
|
}
|
|||
|
|
|||
|
.ins-status {
|
|||
|
font-size: 24rpx;
|
|||
|
font-weight: 500;
|
|||
|
}
|
|||
|
|
|||
|
.ins-line-image {
|
|||
|
margin: left 29rpx;
|
|||
|
margin-right: 39rpx;
|
|||
|
height: 2rpx;
|
|||
|
margin-bottom: 29rpx;
|
|||
|
}
|
|||
|
|
|||
|
.ins-status.orange {
|
|||
|
color: #F3AB44;
|
|||
|
}
|
|||
|
|
|||
|
.ins-status.doing {
|
|||
|
color: #00C9AA;
|
|||
|
}
|
|||
|
|
|||
|
.ins-status.done {
|
|||
|
color: #8A8A8A;
|
|||
|
}
|
|||
|
|
|||
|
.ins-info {
|
|||
|
font-size: 24rpx;
|
|||
|
color: #888;
|
|||
|
margin-bottom: 30rpx;
|
|||
|
margin-left: 47rpx;
|
|||
|
}
|
|||
|
|
|||
|
</style>
|