Files
zhxg_app_v1.0/pages/applyrelieve/relieve/list.vue
2025-07-16 15:34:34 +08:00

234 lines
5.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="stu-punishment">
<scroll-view scroll-y="true" @scrolltolower="scrolltolower">
<view class="list">
<view class="item" @tap="toDetail(item)" v-for="item in stuPunishmentList" :key="item.id">
<view class="top">
姓名:{{item.stuName}}
<DictType :types="rt_penalty_status" :type="item.penaltyStatus" />
</view>
<view class="content">
<view>学号{{item.stuNo}}</view>
<view>班级{{item.className}}</view>
<view class="level">处分等级
<DictStatus :status="rt_penalty_type" :value="item.penaltyType" />
</view>
</view>
</view>
</view>
<view class="empty" v-if="stuPunishmentList.length==0&&topLoading==false">
<image src="@/static/empty.png" mode="widthFix"></image>
暂时没有数据
</view>
<view class="loading-more-top" v-if="topLoading">
<uni-load-more style="padding-top: 90px;" status="loading" />
</view>
<view class="loading-more" v-if="loading">
<uni-load-more status="loading" />
</view>
<view class="no-more" v-if="!loading&&stuPunishmentList.length!=0">
到底啦~~
</view>
</scroll-view>
</view>
</template>
<script>
import DictType from "@/components/dict-type/dict-type.vue"
import DictStatus from "@/components/dict-status/dict-status.vue"
import {
relieveList,
} from '@/api/applyrelieve/applyrelieve.js';
import {
getDicts,
} from '@/api/system/dict/data.js';
export default {
components: {
DictType,
DictStatus
},
data() {
return {
stuPunishmentList: [],
loading: false,
topLoading: true,
rt_penalty_type: [],
rt_penalty_status: [],
queryParams: {
pageNum: 1,
pageSize: 10,
},
}
},
onShow() {
this.getList();
this.get_penalty_type();
this.get_penalty_status();
},
methods: {
scrolltolower() {
if (this.queryParams.pageNum < this.totalPages) {
this.queryParams.pageNum++;
this.loading = true;
setTimeout(() => {
this.getList()
}, 1000)
} else {
}
},
toDetail(item){
console.log(item);
uni.navigateTo({
url:`./detail?procInsId=${item.processInstanceId}&deployId=${item.deployId}`
})
},
navChange(index){
console.log(index);
this.queryParams={
pageNum: 1,
pageSize: 10,
penaltyStatus:index
};
this.getList();
},
async getList() {
let res = await relieveList(this.queryParams);
console.log(res);
if (res.code == 200) {
this.loading = false;
if (this.queryParams.pageNum == 1) {
this.stuPunishmentList = res.rows; // 如果是第一页,直接显示新数据
} else {
this.stuPunishmentList = this.stuPunishmentList.concat(res.rows); // 否则追加新数据到列表中
}
this.totalPages = Math.ceil(res.total / this.queryParams.pageSize);
this.topLoading = false;
}
},
async get_penalty_type() {
let res = await getDicts('rt_penalty_type');
console.log(res);
this.rt_penalty_type = res.data;
},
async get_penalty_status() {
let res = await getDicts('rt_penalty_status');
console.log(res);
this.rt_penalty_status = res.data;
},
}
}
</script>
<style scoped lang="scss">
.stu-punishment {
background-color: #F5F5F7;
scroll-view {
height: calc(100vh - 10px);
padding-top:30rpx;
.no-more {
text-align: center;
color: gray;
padding-bottom: 10px;
}
.empty{
display: flex;
flex-direction: column;
align-items: center;
margin-top: 200rpx;
color: #9E9E9E;
font-size: 36rpx;
image{
width: 250rpx;
margin-bottom: 50rpx;
}
}
}
.list {
padding: 0rpx 40rpx 15rpx 40rpx;
.item {
background-color: white;
margin-bottom: 20rpx;
padding: 40rpx;
border-radius: 20rpx;
border-bottom-right-radius: 0;
position: relative;
.top {
display: flex;
justify-content: space-between;
border-bottom: 1px solid #F5F5F7;
padding-bottom: 20rpx;
.uni-icons {
opacity: 0.5;
}
}
.content {
padding-top: 20rpx;
.level {
display: flex;
}
&>view:not(:last-child) {
margin-bottom: 15rpx;
.progress {
color: #1890FF;
}
}
.status {
position: absolute;
bottom: 0;
right: 0;
color: white;
.status-text {
position: absolute;
bottom: 15px;
right: 8%;
font-size: 35rpx;
}
.triangle-right {
width: 0;
height: 0;
/* 上边框设置为透明 */
border-left: 120px solid transparent;
}
&.submit {
color: #202020;
.triangle-right {
/* 左边框设置为与文本相同的颜色 */
border-bottom: 100px solid #D7D7D7;
}
}
&.agree {
.triangle-right {
/* 左边框设置为与文本相同的颜色 */
border-bottom: 100px solid #2FB15B;
}
}
&.refuse {
.triangle-right {
/* 左边框设置为与文本相同的颜色 */
border-bottom: 100px solid #FF759F;
}
}
}
}
}
}
}
</style>