199 lines
6.1 KiB
Vue
199 lines
6.1 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="pointName">
|
|
<el-input
|
|
v-model="state.queryForm.pointName"
|
|
placeholder="请输入指标名称"
|
|
clearable
|
|
style="width: 200px" />
|
|
</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="categoryName" label="考核项" show-overflow-tooltip align="center" min-width="150">
|
|
<template #header>
|
|
<el-icon><Document /></el-icon>
|
|
<span style="margin-left: 4px">考核项</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="pointName" label="指标名称" show-overflow-tooltip align="center" min-width="200">
|
|
<template #header>
|
|
<el-icon><Trophy /></el-icon>
|
|
<span style="margin-left: 4px">指标名称</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="standard" label="评分标准" show-overflow-tooltip align="center" min-width="200">
|
|
<template #header>
|
|
<el-icon><Reading /></el-icon>
|
|
<span style="margin-left: 4px">评分标准</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="score" label="默认扣分值" show-overflow-tooltip align="center" width="120">
|
|
<template #header>
|
|
<el-icon><Minus /></el-icon>
|
|
<span style="margin-left: 4px">默认扣分值</span>
|
|
</template>
|
|
<template #default="scope">
|
|
<el-tag v-if="scope.row.score !== undefined && scope.row.score !== null" size="small" type="danger" effect="plain">
|
|
{{ scope.row.score }}
|
|
</el-tag>
|
|
<span v-else>-</span>
|
|
</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="AssessmentPoint">
|
|
import { reactive, ref, onMounted } from 'vue'
|
|
import { BasicTableProps, useTable } from "/@/hooks/table";
|
|
import { fetchList, delObj } from "/@/api/stuwork/assessmentpoint";
|
|
import { useMessage, useMessageBox } from "/@/hooks/message";
|
|
import FormDialog from './form.vue'
|
|
import { List, Document, Trophy, Reading, Minus, EditPen, Setting } from '@element-plus/icons-vue'
|
|
|
|
// 定义变量内容
|
|
const formDialogRef = ref()
|
|
const searchFormRef = ref()
|
|
const showSearch = ref(true)
|
|
|
|
// 表格样式
|
|
const tableStyle = {
|
|
cellStyle: { padding: '8px 0' },
|
|
headerCellStyle: { background: '#f5f7fa', color: '#606266', fontWeight: 'bold' }
|
|
}
|
|
|
|
// 配置 useTable
|
|
const state: BasicTableProps = reactive<BasicTableProps>({
|
|
queryForm: {
|
|
pointName: ''
|
|
},
|
|
pageList: fetchList,
|
|
props: {
|
|
item: 'records',
|
|
totalCount: 'total'
|
|
},
|
|
createdIsNeed: true // 页面加载时自动获取数据
|
|
})
|
|
|
|
// table hook
|
|
const {
|
|
getDataList,
|
|
currentChangeHandle,
|
|
sizeChangeHandle,
|
|
tableStyle: _tableStyle
|
|
} = useTable(state)
|
|
|
|
// 重置
|
|
const handleReset = () => {
|
|
searchFormRef.value?.resetFields()
|
|
state.queryForm.pointName = ''
|
|
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 || '删除失败')
|
|
}
|
|
}
|
|
}
|
|
|
|
// 初始化
|
|
onMounted(() => {
|
|
// 初始化完成
|
|
})
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
</style>
|
|
|