scoreApproval.vue 5.11 KB
<template>
	<view>
		<uni-segmented-control class="whitebg" :current="current" :values="navs" @clickItem="onClickItem"
			styleType="text" activeColor="#AD181F"></uni-segmented-control>

		<view class="appList">
			<view class="appItem" v-for="item in infoList" :key="item.examId">
				<view @click="goDetail(item)">
					<view class="status">
						<text :class="{
							'text-primary-bg': item.scoreStatus=='1',
							'text-success-bg': item.scoreStatus=='2',
							'text-danger-bg': item.scoreStatus=='3',
							'text-warning-bg': item.scoreStatus=='4'
						}">{{ item.scoreStatusStr }}</text>
					</view>

					<view class="date" v-if="item.status!='0'&&item.submitTime">
						提交时间:{{ item.submitTime }}
					</view>
					<view class="text-primary">{{ item.examCode }}</view>
					<view class="name mt10">{{ item.name }}</view>
					<view class="flexbox">
						<view>
							申请日期
							<view>{{ item.applyTime ? item.applyTime.substring(0, 10) : '--' }}</view>
						</view>
						<view>
							考段考生数
							<view>{{ item.totalNum }}</view>
						</view>
						<view>
							总金额
							<view><text class="text-danger">¥{{ (Number(item.totalAmount) || 0).toFixed(2) }}</text></view>
						</view>
					</view>
					<view class="pp esp">考段日期:{{ item.startTime ? item.startTime.substring(0, 16) : '--' }}{{ item.endTime ? item.endTime.substring(0, 16) : '--' }}</view>
				</view>
				<view class="func" v-if="item.scoreStatus=='1'">
					<button @click="goApproval(item)">审核</button>
				</view>
			</view>
		</view>

		<!-- 加载提示 -->
		<view class="load-tip" v-if="infoList.length > 0">
			<text v-if="loading">加载中...</text>
			<text v-else-if="noMore">没有更多数据了</text>
		</view>

		<!-- 空数据 -->
		<view class="nodata" v-if="infoList.length == 0 && !loading">
			<image mode="aspectFit" :src="config.baseUrl_api + '/fs/static/nodata.png'"></image>
			<text>暂无数据</text>
		</view>
	</view>
</template>

<script setup>
	import * as api from '@/common/api.js'
	import config from '@/config.js'
	import { ref } from 'vue'
	import { onLoad, onShow, onReachBottom } from '@dcloudio/uni-app'

	const app = getApp()

	const statusValues = ['', '1', '2', '3']
	const navs = ref(['全部', '审核中', '审核通过', '审核拒绝'])
	const current = ref(0)
	const statusArr = ['审批中', '审批通过', '审批拒绝', '审批撤回']

	// 分页参数
	const queryParams = ref({
		scoreStatus: '',
		pageNum: 1,
		pageSize: 10
	})

	const infoList = ref([])
	const total = ref(0)
	const totalCost = ref(0)
	const totalNum = ref(0)
	const loading = ref(false)
	const noMore = ref(false)

	onLoad((options) => {
		queryParams.value.type = options.type
		queryParams.value.auditSelectType = options.type
		if (options.type == '3') {
			uni.setNavigationBarTitle({ title: '段位成绩审核' })
		} else if (options.type == '5') {
			uni.setNavigationBarTitle({ title: '越段成绩审核' })
		}
	})

	onShow(() => {
		if (app.globalData.isLogin) {
			refreshList()
		} else {
			app.firstLoadCallback = () => { refreshList() }
		}
	})

	// 切换标签
	function onClickItem(e) {
		current.value = e.currentIndex
		queryParams.value.scoreStatus = statusValues[e.currentIndex]
		refreshList()
	}

	// 刷新列表(重置第一页)
	function refreshList() {
		queryParams.value.pageNum = 1
		noMore.value = false
		infoList.value = []
		getList()
	}

	// 上滑加载下一页
	onReachBottom(() => {
		if (loading.value || noMore.value) return
		queryParams.value.pageNum++
		getList()
	})

	// 获取数据
	function getList() {
		if (loading.value || noMore.value) return
		loading.value = true

		// 第一页显示loading
		if (queryParams.value.pageNum === 1) {
			uni.showLoading({ title: '加载中', mask: true })
		}

		api.examauditList(queryParams.value).then(res => {
			loading.value = false
			uni.hideLoading()

			const list = res.rows || []
			total.value = res.total || 0

			// 分页追加数据
			if (queryParams.value.pageNum === 1) {
				infoList.value = list
			} else {
				infoList.value = [...infoList.value, ...list]
			}

			// 判断是否还有更多
			if (list.length < queryParams.value.pageSize) {
				noMore.value = true
			}

			// 统计合计
			totalCost.value = 0
			totalNum.value = 0
			infoList.value.forEach(item => {
				item.statusStr = statusArr[item.auditStatus] || '审批中'
				totalCost.value += Number(item.totalAmount) || 0
				totalNum.value += Number(item.totalNum) || 0
			})
		}).catch(() => {
			loading.value = false
			uni.hideLoading()
		})
	}

	// 审核
	function goApproval(item) {
		uni.navigateTo({
			url: `/pages/rank/scoreAudit?ids=${item.examId}&pageType=2`
		})
	}

	// 详情
	function goDetail(item) {
		uni.navigateTo({
			url: `/pages/rank/scoreDetail?examId=${item.examId}&type=${queryParams.value.type}`
		})
	}
</script>

<style lang="scss" scoped>
	.stat-row {
		display: flex;
		gap: 40rpx;
		padding: 20rpx 30rpx;
		background: #fff;
		font-size: 26rpx;
		color: #666;

		.red {
			color: #C4121F;
			font-weight: 600;
		}
	}

	/* 加载提示 */
	.load-tip {
		text-align: center;
		padding: 20rpx 0;
		font-size: 26rpx;
		color: #999;
	}
</style>