228 lines
6.7 KiB
Vue
228 lines
6.7 KiB
Vue
<template>
|
|
<div class="layout-padding">
|
|
<div class="layout-padding-auto layout-padding-view">
|
|
<!-- 搜索表单 -->
|
|
<el-row v-show="showSearch">
|
|
<el-form :model="state.queryForm" ref="searchFormRef" :inline="true" @keyup.enter="getDataList">
|
|
<el-form-item label="奖项类型" prop="ruleType">
|
|
<el-select
|
|
v-model="state.queryForm.ruleType"
|
|
placeholder="请选择奖项类型"
|
|
clearable
|
|
style="width: 200px">
|
|
<el-option
|
|
v-for="item in ruleTypeList"
|
|
:key="item.value"
|
|
:label="item.label"
|
|
:value="item.value">
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" plain icon="Search" @click="getDataList">查询</el-button>
|
|
<el-button icon="Refresh" @click="handleReset">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-row>
|
|
|
|
<!-- 操作按钮 -->
|
|
<el-row>
|
|
<div class="mb8" style="width: 100%">
|
|
<el-button
|
|
icon="Plus"
|
|
type="primary"
|
|
@click="formDialogRef.openDialog()">
|
|
新增
|
|
</el-button>
|
|
<right-toolbar
|
|
v-model:showSearch="showSearch"
|
|
class="ml10 mr20"
|
|
style="float: right;"
|
|
@queryTable="getDataList">
|
|
</right-toolbar>
|
|
</div>
|
|
</el-row>
|
|
|
|
<!-- 表格 -->
|
|
<el-table
|
|
:data="state.dataList"
|
|
v-loading="state.loading"
|
|
border
|
|
:cell-style="tableStyle.cellStyle"
|
|
:header-cell-style="tableStyle.headerCellStyle">
|
|
<el-table-column type="index" label="序号" width="60" align="center">
|
|
<template #header>
|
|
<el-icon><List /></el-icon>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="ruleName" label="奖项名称" show-overflow-tooltip align="center" min-width="200">
|
|
<template #header>
|
|
<el-icon><Trophy /></el-icon>
|
|
<span style="margin-left: 4px">奖项名称</span>
|
|
</template>
|
|
<template #default="scope">
|
|
<el-tag v-if="scope.row.ruleName" size="small" type="warning" effect="light">
|
|
{{ scope.row.ruleName }}
|
|
</el-tag>
|
|
<span v-else>-</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="ruleType" label="奖项类型" show-overflow-tooltip align="center">
|
|
<template #header>
|
|
<el-icon><Collection /></el-icon>
|
|
<span style="margin-left: 4px">奖项类型</span>
|
|
</template>
|
|
<template #default="scope">
|
|
<el-tag size="small" type="info" effect="plain">
|
|
{{ formatRuleType(scope.row.ruleType) }}
|
|
</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="remarks" label="备注" show-overflow-tooltip align="center" min-width="200">
|
|
<template #header>
|
|
<el-icon><EditPen /></el-icon>
|
|
<span style="margin-left: 4px">备注</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="操作" width="150" align="center" fixed="right">
|
|
<template #header>
|
|
<el-icon><Setting /></el-icon>
|
|
<span style="margin-left: 4px">操作</span>
|
|
</template>
|
|
<template #default="scope">
|
|
<el-button
|
|
icon="Edit"
|
|
text
|
|
type="primary"
|
|
@click="handleEdit(scope.row)">
|
|
编辑
|
|
</el-button>
|
|
<el-button
|
|
icon="Delete"
|
|
text
|
|
type="danger"
|
|
@click="handleDelete(scope.row)">
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<!-- 分页 -->
|
|
<pagination
|
|
@size-change="sizeChangeHandle"
|
|
@current-change="currentChangeHandle"
|
|
v-bind="state.pagination" />
|
|
</div>
|
|
|
|
<!-- 新增/编辑表单弹窗 -->
|
|
<form-dialog ref="formDialogRef" @refresh="getDataList" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts" name="RewardRule">
|
|
import { reactive, ref, onMounted } from 'vue'
|
|
import { BasicTableProps, useTable } from "/@/hooks/table";
|
|
import { fetchList, delObj } from "/@/api/stuwork/rewardrule";
|
|
import { getDicts } from "/@/api/admin/dict";
|
|
import { useMessage, useMessageBox } from "/@/hooks/message";
|
|
import FormDialog from './form.vue'
|
|
import { List, Trophy, Collection, EditPen, Setting } from '@element-plus/icons-vue'
|
|
|
|
// 定义变量内容
|
|
const formDialogRef = ref()
|
|
const searchFormRef = ref()
|
|
const showSearch = ref(true)
|
|
const ruleTypeList = ref<any[]>([])
|
|
|
|
// 表格样式
|
|
const tableStyle = {
|
|
cellStyle: { padding: '8px 0' },
|
|
headerCellStyle: { background: '#f5f7fa', color: '#606266', fontWeight: 'bold' }
|
|
}
|
|
|
|
// 配置 useTable
|
|
const state: BasicTableProps = reactive<BasicTableProps>({
|
|
queryForm: {
|
|
ruleType: ''
|
|
},
|
|
pageList: fetchList,
|
|
props: {
|
|
item: 'records',
|
|
totalCount: 'total'
|
|
},
|
|
createdIsNeed: true // 页面加载时自动获取数据
|
|
})
|
|
|
|
// table hook
|
|
const {
|
|
getDataList,
|
|
currentChangeHandle,
|
|
sizeChangeHandle,
|
|
tableStyle: _tableStyle
|
|
} = useTable(state)
|
|
|
|
// 格式化奖项类型
|
|
const formatRuleType = (value: string | number) => {
|
|
if (value === null || value === undefined || value === '') {
|
|
return '-'
|
|
}
|
|
const dictItem = ruleTypeList.value.find(item => item.value == value)
|
|
return dictItem ? dictItem.label : value
|
|
}
|
|
|
|
// 重置
|
|
const handleReset = () => {
|
|
searchFormRef.value?.resetFields()
|
|
state.queryForm.ruleType = ''
|
|
getDataList()
|
|
}
|
|
|
|
// 编辑
|
|
const handleEdit = (row: any) => {
|
|
formDialogRef.value?.openDialog('edit', row)
|
|
}
|
|
|
|
// 删除
|
|
const handleDelete = async (row: any) => {
|
|
const { confirm } = useMessageBox()
|
|
try {
|
|
await confirm('确定要删除该评优评先奖项吗?')
|
|
await delObj([row.id])
|
|
useMessage().success('删除成功')
|
|
getDataList()
|
|
} catch (err: any) {
|
|
if (err !== 'cancel') {
|
|
useMessage().error(err.msg || '删除失败')
|
|
}
|
|
}
|
|
}
|
|
|
|
// 获取奖项类型字典
|
|
const getRuleTypeDict = async () => {
|
|
try {
|
|
const res = await getDicts('rule_type')
|
|
if (res.data && Array.isArray(res.data)) {
|
|
ruleTypeList.value = res.data.map((item: any) => ({
|
|
label: item.label || item.dictLabel || item.name,
|
|
value: item.value || item.dictValue || item.code
|
|
}))
|
|
} else {
|
|
ruleTypeList.value = []
|
|
}
|
|
} catch (err) {
|
|
console.error('获取奖项类型字典失败', err)
|
|
ruleTypeList.value = []
|
|
}
|
|
}
|
|
|
|
// 初始化
|
|
onMounted(() => {
|
|
getRuleTypeDict()
|
|
})
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
</style>
|
|
|