This commit is contained in:
2025-07-07 10:29:09 +08:00
parent 23be579c8f
commit 1b19b0268d
3 changed files with 13 additions and 14 deletions

View File

@ -377,7 +377,16 @@ export const publicRoutes = [
title: "社会信息人员建设管理", title: "社会信息人员建设管理",
icon: "article" icon: "article"
} }
} },
{
path: "/JobAppraisal",
name: "JobAppraisal",
component: () => import("@/views/backOfficeSystem/HumanIntelligence/JobAppraisal/index"),
meta: {
title: "社会员工工作信息考核",
icon: "article"
}
},
] ]
}, },
{ {
@ -433,15 +442,7 @@ export const publicRoutes = [
icon: "article" icon: "article"
} }
}, },
{
path: "/JobAppraisal",
name: "JobAppraisal",
component: () => import("@/views/backOfficeSystem/ExcavationResearch/JobAppraisal/index"),
meta: {
title: "社会员工工作信息考核",
icon: "article"
}
},
] ]
}, },
{ {

View File

@ -125,7 +125,6 @@ const formData = ref([
{ label: "居住地地址", prop: "jzdDz", type: "textarea", width: "100%" }, { label: "居住地地址", prop: "jzdDz", type: "textarea", width: "100%" },
{ label: "考核分数", prop: "khfs", type: "input" }, { label: "考核分数", prop: "khfs", type: "input" },
{ label: "奖惩类型", prop: "jclx", type: "select", options: props.dic.D_GS_RLQB_JCQK}, { label: "奖惩类型", prop: "jclx", type: "select", options: props.dic.D_GS_RLQB_JCQK},
{ label: "奖励情况说明", prop: "jlqksm", type: "textarea", width: "100%" },
]); ]);
const listQuery = ref({}); // const listQuery = ref({}); //
const loading = ref(false); const loading = ref(false);
@ -149,7 +148,7 @@ const init = (type, row) => {
}; };
// id // id
const getDataById = (id) => { const getDataById = (id) => {
qcckGet({}, "/mosty-gsxt/tbJlqk/selectByid" + id).then((res) => { qcckGet({id}, "/mosty-gsxt/tbJlqk/selectByid").then((res) => {
listQuery.value = res; listQuery.value = res;
}); });
}; };

View File

@ -97,7 +97,6 @@ const pageData = reactive({
{ label: "所在单位", prop: "rySzdw"}, { label: "所在单位", prop: "rySzdw"},
{ label: "考核分数", prop: "khfs" }, { label: "考核分数", prop: "khfs" },
{ label: "奖惩类型", prop: "jclx",showSolt: true }, { label: "奖惩类型", prop: "jclx",showSolt: true },
{ label: "奖励情况说明", prop: "jlqksm" }
] ]
}); });
@ -140,7 +139,7 @@ const getList = () => {
// //
const deleteRow = (id) => { const deleteRow = (id) => {
proxy.$confirm("确定要删除", "警告", { type: "warning" }).then(() => { proxy.$confirm("确定要删除", "警告", { type: "warning" }).then(() => {
qcckPost({}, "/mosty-gsxt/tbJlqk/delete/" + id).then(() => { qcckPost({id}, "/mosty-gsxt/tbJlqk/delete").then(() => {
proxy.$message({ type: "success", message: "删除成功" }); proxy.$message({ type: "success", message: "删除成功" });
getList(); getList();
}); });