更新
This commit is contained in:
@ -377,7 +377,16 @@ export const publicRoutes = [
|
||||
title: "社会信息人员建设管理",
|
||||
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"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: "/JobAppraisal",
|
||||
name: "JobAppraisal",
|
||||
component: () => import("@/views/backOfficeSystem/ExcavationResearch/JobAppraisal/index"),
|
||||
meta: {
|
||||
title: "社会员工工作信息考核",
|
||||
icon: "article"
|
||||
}
|
||||
},
|
||||
|
||||
]
|
||||
},
|
||||
{
|
||||
|
@ -125,7 +125,6 @@ const formData = ref([
|
||||
{ label: "居住地地址", prop: "jzdDz", type: "textarea", width: "100%" },
|
||||
{ label: "考核分数", prop: "khfs", type: "input" },
|
||||
{ label: "奖惩类型", prop: "jclx", type: "select", options: props.dic.D_GS_RLQB_JCQK},
|
||||
{ label: "奖励情况说明", prop: "jlqksm", type: "textarea", width: "100%" },
|
||||
]);
|
||||
const listQuery = ref({}); //表单
|
||||
const loading = ref(false);
|
||||
@ -149,7 +148,7 @@ const init = (type, row) => {
|
||||
};
|
||||
// 根据id查询详情
|
||||
const getDataById = (id) => {
|
||||
qcckGet({}, "/mosty-gsxt/tbJlqk/selectByid" + id).then((res) => {
|
||||
qcckGet({id}, "/mosty-gsxt/tbJlqk/selectByid").then((res) => {
|
||||
listQuery.value = res;
|
||||
});
|
||||
};
|
@ -97,7 +97,6 @@ const pageData = reactive({
|
||||
{ label: "所在单位", prop: "rySzdw"},
|
||||
{ label: "考核分数", prop: "khfs" },
|
||||
{ label: "奖惩类型", prop: "jclx",showSolt: true },
|
||||
{ label: "奖励情况说明", prop: "jlqksm" }
|
||||
]
|
||||
});
|
||||
|
||||
@ -140,7 +139,7 @@ const getList = () => {
|
||||
// 删除
|
||||
const deleteRow = (id) => {
|
||||
proxy.$confirm("确定要删除", "警告", { type: "warning" }).then(() => {
|
||||
qcckPost({}, "/mosty-gsxt/tbJlqk/delete/" + id).then(() => {
|
||||
qcckPost({id}, "/mosty-gsxt/tbJlqk/delete").then(() => {
|
||||
proxy.$message({ type: "success", message: "删除成功" });
|
||||
getList();
|
||||
});
|
Reference in New Issue
Block a user