zhxy-jsd/src/pages/view/hr/teacherProfile/PublicClassAwards.vue

303 lines
7.6 KiB
Vue
Raw Normal View History

2025-04-22 10:22:33 +08:00
<template>
<BasicLayout>
<view class="p-15">
<view v-if="education.xl.length > 0">
<template v-for="(item, index) in education.xl" :key="index">
<view class="po-re mb-15">
<BasicForm
v-model="item.value"
2025-06-10 23:40:49 +08:00
:schema="getSchemaForIndex(index)"
:index="index"
:key="`form-${index}-${forceUpdateKey}`"
2025-04-22 10:22:33 +08:00
:formsProps="{ labelWidth: 100 }"
/>
<view
2025-06-10 23:40:49 +08:00
@click="deleteMemberFamily(index, item.value)"
2025-04-22 10:22:33 +08:00
class="delete-icon"
>
<BasicIcon type="clear" size="30" />
</view>
</view>
</template>
</view>
<view
class="flex-row items-center justify-center pb-10 pt-5"
style="border: 1px solid #e8e8e8"
@click="addEducation"
>
<uni-icons type="plus" size="16" color="#447ADE"></uni-icons>
<view class="ml-5 cor-447ADE">新增</view>
</view>
</view>
<template #bottom>
<view class="flex-row items-center pb-10 pt-5">
2025-05-13 15:39:44 +08:00
<u-button
2025-06-10 23:40:49 +08:00
text="上一步"
2025-05-13 15:39:44 +08:00
class="ml-15 mr-7"
:plain="true"
@click="navigateBack"
/>
<u-button
text="提交"
class="mr-15 mr-7"
type="primary"
@click="submit"
/>
</view>
2025-04-22 10:22:33 +08:00
</template>
</BasicLayout>
</template>
<script lang="ts" setup>
2025-06-10 23:40:49 +08:00
import { fractionRuleApi1 } from "@/api/base/server";
2025-05-13 15:39:44 +08:00
import { dicApi } from "@/api/system/dic";
2025-04-22 10:22:33 +08:00
import Template from "@/components/BasicQrcode/_template/template.vue";
2025-05-13 15:39:44 +08:00
import { useDataStore } from "@/store/modules/data";
2025-06-10 23:40:49 +08:00
import { navigateBack, navigateTo, showToast } from "@/utils/uniapp";
2025-05-13 15:39:44 +08:00
import { cloneDeep, map } from "lodash";
2025-04-22 10:22:33 +08:00
2025-06-10 23:40:49 +08:00
// 主数据
const education = reactive<any>({
xl: [{ value: {} }],
});
// 荣誉类别数据缓存
const honorCategories = ref<any[]>([]);
// 每个表单项对应的获奖级别数据
const awardLevelsMap = reactive<Record<number, any>>({});
// 强制重新渲染的键
const forceUpdateKey = ref(0);
// 基础表单配置
const baseSchema = [
{
field: "rymc",
label: "荣誉名称",
component: "BasicInput",
componentProps: {},
},
{
field: "hilb_id",
label: "荣誉类别",
component: "BasicPicker",
componentProps: {
api: fractionRuleApi1,
rangeKey: "inspectStandard",
savaKey: "id",
ok: (selectedIndex: number, form: any, list: any, attrs: any) => {
const selectedCategory = list[selectedIndex];
const formIndex = attrs.index;
// 更新当前表单项的获奖级别选项
updateAwardLevels(formIndex, selectedCategory);
// 清空已选择的获奖级别(如果之前有选择的话)
if (education.xl[formIndex].value.xm) {
education.xl[formIndex].value.xm = "";
}
// 强制重新渲染
forceUpdateKey.value++;
},
},
},
2025-04-22 10:22:33 +08:00
{
field: "xm",
label: "获奖级别",
2025-05-13 15:39:44 +08:00
component: "BasicPicker",
componentProps: {
2025-06-10 23:40:49 +08:00
range: [],
rangeKey: "name",
savaKey: "id",
open: (value: any, attrs: any, model: any) => {
const formIndex = attrs.index;
// 检查是否已选择荣誉类别
if (!model?.hilb_id) {
showToast({
title: "请先选择荣誉类别",
icon: "none",
});
return false;
}
// 检查是否有对应的获奖级别数据
const awardLevels = awardLevelsMap[formIndex] || [];
if (awardLevels.length === 0) {
showToast({
title: "该荣誉类别暂无获奖级别数据",
icon: "none",
});
return false;
}
return true;
},
2025-05-13 15:39:44 +08:00
},
2025-04-22 10:22:33 +08:00
},
{
2025-05-13 15:39:44 +08:00
field: "bjdw",
2025-04-22 10:22:33 +08:00
label: "颁奖单位",
component: "BasicInput",
componentProps: {},
},
{
2025-05-13 15:39:44 +08:00
field: "hjtime",
2025-04-22 10:22:33 +08:00
label: "获奖时间",
component: "BasicDateTimes",
componentProps: {},
},
2025-06-10 23:40:49 +08:00
{
field: "jf",
label: "积分",
component: "BasicInput",
componentProps: {},
},
2025-04-22 10:22:33 +08:00
{
2025-05-13 15:39:44 +08:00
field: "hjfjId",
2025-04-22 10:22:33 +08:00
label: "上传证书",
component: "BasicUpload",
required: true,
itemProps: {
labelPosition: "top",
},
componentProps: {},
},
2025-06-10 23:40:49 +08:00
];
2025-04-22 10:22:33 +08:00
2025-06-10 23:40:49 +08:00
// 为每个表单项生成动态的schema
const getSchemaForIndex = (index: number) => {
const schema = cloneDeep(baseSchema);
// 更新获奖级别的选项数据
const hjjbField = schema.find((item) => item.field === "xm");
if (hjjbField) {
hjjbField.componentProps.range = awardLevelsMap[index] || [];
}
return schema;
};
2025-04-22 10:22:33 +08:00
2025-06-10 23:40:49 +08:00
// 更新指定表单项的获奖级别选项
const updateAwardLevels = (formIndex: number, category: any) => {
if (category?.ruleItemList && category.ruleItemList.length > 0) {
awardLevelsMap[formIndex] = category.ruleItemList;
} else {
awardLevelsMap[formIndex] = [];
}
};
2025-04-22 10:22:33 +08:00
2025-06-10 23:40:49 +08:00
// 初始化荣誉类别数据
const initHonorCategories = async () => {
try {
const result = await fractionRuleApi1();
honorCategories.value = result.result || result || [];
} catch (error) {
console.error("获取荣誉类别数据失败:", error);
}
};
// 初始化回显数据
const initEchoData = async () => {
await initHonorCategories();
// 为每个已有数据的表单项初始化获奖级别选项
education.xl.forEach((formItem: any, index: number) => {
if (formItem.value?.hilb_id) {
const category = honorCategories.value.find(
(cat: any) => cat.id === formItem.value.hilb_id
);
if (category) {
// 更新获奖级别选项
updateAwardLevels(index, category);
} else {
console.log(`未找到荣誉类别 ID: ${formItem.value.hilb_id}`);
}
}
2025-05-13 15:39:44 +08:00
});
2025-06-10 23:40:49 +08:00
// 强制重新渲染以确保获奖级别能正确显示
forceUpdateKey.value++;
};
// 添加新的教育项
function addEducation() {
const newIndex = education.xl.length;
education.xl.push({ value: {} });
// 为新项初始化空的获奖级别选项
awardLevelsMap[newIndex] = [];
2025-05-13 15:39:44 +08:00
}
2025-06-10 23:40:49 +08:00
// 删除教育项
2025-04-22 10:22:33 +08:00
function deleteMemberFamily(index: number, item: any) {
2025-06-10 23:40:49 +08:00
// 删除对应的获奖级别数据
delete awardLevelsMap[index];
// 重新整理awardLevelsMap的键值
const newAwardLevelsMap: Record<number, any[]> = {};
education.xl.forEach((_: any, i: number) => {
if (i < index) {
newAwardLevelsMap[i] = awardLevelsMap[i] || [];
} else if (i > index) {
newAwardLevelsMap[i - 1] = awardLevelsMap[i] || [];
}
});
// 删除表单项
education.xl.splice(index, 1);
// 更新awardLevelsMap
Object.keys(awardLevelsMap).forEach(
(key: string) => delete awardLevelsMap[Number(key)]
);
Object.assign(awardLevelsMap, newAwardLevelsMap);
2025-04-22 10:22:33 +08:00
}
2025-06-10 23:40:49 +08:00
// 提交数据
2025-04-22 10:22:33 +08:00
function submit() {
2025-05-13 15:39:44 +08:00
setFile({
...getFile,
gkkRyList: map(education.xl, (item) => {
return { ...item.value, hjlxId: "GKKHJQK" };
}),
});
2025-04-22 10:22:33 +08:00
navigateTo("/pages/view/hr/teacherProfile/RecordMaterials");
}
2025-06-10 23:40:49 +08:00
// 初始化数据
const { getFile, setFile } = useDataStore();
// 处理回显数据
if (getFile.gkkRyList && getFile.gkkRyList.length > 0) {
education.xl = map(getFile.gkkRyList, (item) => {
return { value: item };
});
}
// 页面加载时初始化
onMounted(() => {
if (getFile.gkkRyList && getFile.gkkRyList.length > 0) {
// 有回显数据时,延迟初始化确保数据正确加载
nextTick(() => {
initEchoData();
});
} else {
// 无回显数据时,只需要初始化荣誉类别
initHonorCategories();
}
});
2025-04-22 10:22:33 +08:00
</script>
<style>
.delete-icon {
position: absolute;
2025-05-13 15:39:44 +08:00
right: -13px;
top: -14px;
2025-04-22 10:22:33 +08:00
z-index: 1;
}
</style>