126 lines
5.3 KiB
Vue
126 lines
5.3 KiB
Vue
<template>
|
|
<div>
|
|
<el-card class="!border-none mb-4" shadow="never">
|
|
<el-form class="mb-[-16px]" :model="queryParams" label-width="80px">
|
|
<el-row>
|
|
<el-col :span="6">
|
|
<el-form-item label="考核类别" prop="project_name">
|
|
<el-select class="flex-1" v-model="queryParams.examine_type" clearable placeholder="请选择考核类别">
|
|
<el-option v-for="(item, index) in dictData.jxgl_check_type" :key="index" :label="item.name"
|
|
:value="parseInt(item.value)" />
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<el-form-item label="考核月份" prop="project_code">
|
|
<el-date-picker v-model="queryParams.examine_month" type="month" value-format="YYYY-MM"
|
|
placeholder="请选择考核月份" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="6">
|
|
<el-form-item>
|
|
<el-button type="primary" @click="resetPage">查询</el-button>
|
|
<el-button @click="resetParams">重置</el-button>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
</el-form>
|
|
</el-card>
|
|
<el-card class="!border-none" v-loading="pager.loading" shadow="never">
|
|
<el-button type="primary" @click="handleAdd">
|
|
<template #icon>
|
|
<icon name="el-icon-Plus" />
|
|
</template>
|
|
新增
|
|
</el-button>
|
|
<div class="mt-4">
|
|
<el-table border :data="pager.lists">
|
|
<el-table-column type="selection" width="55" />
|
|
<el-table-column label="自评人" prop="user_name" show-overflow-tooltip />
|
|
<el-table-column label="考核类别" prop="examine_type_text" show-overflow-tooltip />
|
|
<el-table-column label="考核模版" prop="temp_name" show-overflow-tooltip />
|
|
<el-table-column label="考核月份" prop="examine_month" show-overflow-tooltip width="120" />
|
|
<el-table-column label="考核总分" prop="total_score" show-overflow-tooltip />
|
|
<el-table-column label="自评得分" prop="total_self_score" show-overflow-tooltip />
|
|
<!-- <el-table-column label="上评得分" prop="engineering_status_text" show-overflow-tooltip /> -->
|
|
<!-- <el-table-column label="最终得分" prop="engineering_status_text" show-overflow-tooltip /> -->
|
|
<!-- <el-table-column label="考核评语" prop="engineering_status_text" show-overflow-tooltip /> -->
|
|
<el-table-column label="自评时间" prop="create_time" show-overflow-tooltip />
|
|
<el-table-column label="操作" width="170" fixed="right">
|
|
<template #default="{ row }">
|
|
<el-button v-perms="['manage_basic.manage_project/edit']" type="primary" link
|
|
@click="handleEdit(row)">
|
|
编辑
|
|
</el-button>
|
|
<el-button v-perms="['manage_basic.manage_project/delete']" type="danger" link
|
|
@click="handleDelete(row.id)">
|
|
删除
|
|
</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
<div class="flex mt-4 justify-end">
|
|
<pagination v-model="pager" @change="getLists" />
|
|
</div>
|
|
</el-card>
|
|
<edit-popup v-if="showEdit" ref="editRef" :dict-data="dictData" @success="getLists" @close="showEdit = false" />
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="manageProjectLists">
|
|
import { usePaging } from '@/hooks/usePaging'
|
|
import { useDictData } from '@/hooks/useDictOptions'
|
|
import feedback from '@/utils/feedback'
|
|
import EditPopup from './edit.vue'
|
|
import { apiOaSelfExamineLists, apiOaSelfExamineDelete, apiOaSelfExamineDetail } from '@/api/oaSelfExamine'
|
|
|
|
|
|
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
|
// 是否显示编辑框
|
|
const showEdit = ref(false)
|
|
|
|
|
|
// 查询条件
|
|
const queryParams = reactive({
|
|
examine_type: "",
|
|
examine_month: ""
|
|
})
|
|
|
|
|
|
// 获取字典数据
|
|
const { dictData } = useDictData('jxgl_check_type')
|
|
|
|
// 分页相关
|
|
const { pager, getLists, resetParams, resetPage } = usePaging({
|
|
fetchFun: apiOaSelfExamineLists,
|
|
params: queryParams
|
|
})
|
|
|
|
// 添加
|
|
const handleAdd = async () => {
|
|
showEdit.value = true
|
|
await nextTick()
|
|
editRef.value?.open('add')
|
|
}
|
|
|
|
// 编辑
|
|
const handleEdit = async (data: any) => {
|
|
let res = await apiOaSelfExamineDetail({ id: data.id })
|
|
showEdit.value = true
|
|
await nextTick()
|
|
editRef.value?.open('edit')
|
|
editRef.value?.setFormData(res)
|
|
}
|
|
|
|
// 删除
|
|
const handleDelete = async (id: number | any[]) => {
|
|
await feedback.confirm('确定要删除?')
|
|
await apiOaSelfExamineDelete({ id })
|
|
getLists()
|
|
}
|
|
|
|
getLists()
|
|
</script>
|