134 lines
5.5 KiB
Vue
134 lines
5.5 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="考核类别">
|
|
<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="考核月份">
|
|
<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 label="考核人" prop="kh_user_name" show-overflow-tooltip />
|
|
<el-table-column label="被考核人" prop="bkh_user_name" show-overflow-tooltip />
|
|
<el-table-column label="考核类型" prop="examine_type_text" show-overflow-tooltip />
|
|
<el-table-column label="考核月份" prop="examine_month" show-overflow-tooltip />
|
|
<el-table-column label="考核总分" prop="total_score" show-overflow-tooltip />
|
|
<el-table-column label="最终得分" prop="final_score" show-overflow-tooltip />
|
|
<el-table-column label="自评得分" prop="total_self_score" show-overflow-tooltip />
|
|
<el-table-column label="上评得分" prop="total_superior_score" show-overflow-tooltip />
|
|
<el-table-column label="考核评语" prop="content" 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 type="primary" link @click="handleEdit(row)">
|
|
编辑
|
|
</el-button>
|
|
<el-button type="danger" link @click="handleDelete(row.id)">
|
|
删除
|
|
</el-button>
|
|
<el-button type="primary" link @click="handDetail(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" />
|
|
<detailPopup v-if="showDetail" ref="detailRef" @success="showDetail = false" @close="showDetail = false" />
|
|
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="manageProjectLists">
|
|
import { ref, reactive } from "vue"
|
|
import { usePaging } from '@/hooks/usePaging'
|
|
import { apiExpenseList, apiExpenseDelete, apiExpenseDetail } from '@/api/oa/oa_examine'
|
|
import { useDictData } from '@/hooks/useDictOptions'
|
|
import EditPopup from './edit.vue'
|
|
import detailPopup from './detail.vue'
|
|
|
|
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
|
// 是否显示编辑框
|
|
const showEdit = ref(false)
|
|
const detailRef = ref(null)
|
|
// 是否显示编辑框
|
|
const showDetail = ref(false)
|
|
const { dictData } = useDictData('jxgl_check_type')
|
|
|
|
// 查询条件
|
|
const queryParams = reactive({
|
|
examine_type: "",
|
|
examine_month: ""
|
|
})
|
|
|
|
|
|
// 分页相关
|
|
const { pager, getLists, resetParams, resetPage } = usePaging({
|
|
fetchFun: apiExpenseList,
|
|
params: queryParams
|
|
})
|
|
|
|
// 添加
|
|
const handleAdd = async () => {
|
|
showEdit.value = true
|
|
await nextTick()
|
|
editRef.value?.open('add')
|
|
}
|
|
|
|
// 编辑
|
|
const handleEdit = async (data: any) => {
|
|
let res = await apiExpenseDetail({ 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()
|
|
}
|
|
|
|
const handDetail = async (id: any) => {
|
|
let res = await apiExpenseDetail({ id })
|
|
showDetail.value = true
|
|
await nextTick()
|
|
detailRef.value?.open()
|
|
detailRef.value?.setFormData(res)
|
|
}
|
|
getLists()
|
|
</script> |