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

171 lines
3.8 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"
:schema="schema"
:formsProps="{ labelWidth: 100 }"
/>
<view
@click="deleteMemberFamily(index as number, item.value)"
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
text="返回"
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-05-13 15:39:44 +08:00
import {
findAllNjBjTreeApi,
xqgwFindAllApi,
xqxjFindAllApi,
} from "@/api/base/server";
2025-06-04 20:52:34 +08:00
import { dicApi } from "@/api/system/dic";
2025-04-22 10:22:33 +08:00
import { useForm } from "@/components/BasicForm/hooks/useForm";
2025-05-13 15:39:44 +08:00
import { useDataStore } from "@/store/modules/data";
import { navigateTo, navigateBack } from "@/utils/uniapp";
import { cloneDeep, map } from "lodash";
2025-04-22 10:22:33 +08:00
const schema = reactive<FormsSchema[]>([
2025-06-04 20:52:34 +08:00
{
field: "xj",
label: "薪级",
component: "BasicPicker",
componentProps: {
api: dicApi,
param: { pid: 434953981 },
rangeKey: "dictionaryValue",
savaKey: "dictionaryCode",
},
},
2025-04-22 10:22:33 +08:00
{
2025-05-13 15:39:44 +08:00
field: "gwjbId",
2025-04-22 10:22:33 +08:00
label: "岗位级别",
2025-05-13 15:39:44 +08:00
component: "BasicPicker",
componentProps: {
2025-06-04 20:52:34 +08:00
api: dicApi,
param: { pid: 260783972 },
rangeKey: "dictionaryValue",
savaKey: "dictionaryCode",
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: "gwrztime",
2025-04-22 10:22:33 +08:00
label: "岗位任职时间",
component: "BasicDateTimes",
componentProps: {},
},
{
2025-05-13 15:39:44 +08:00
field: "gwrznx",
2025-04-22 10:22:33 +08:00
label: "岗位任职年限",
component: "BasicInput",
componentProps: {},
},
2025-06-04 20:52:34 +08:00
// {
// field: "zrxk",
// label: "主任学科",
// component: "BasicInput",
// componentProps: {},
// },
// {
// field: "jrxk",
// label: "兼任学科",
// component: "BasicInput",
// componentProps: {},
// },
// {
// field: "bzrBjId",
// label: "班主任班级",
// component: "BasicDataPicker",
// componentProps: {
// api: findAllNjBjTreeApi,
// rangeKey: "title",
// savaKey: "key",
// },
// },
2025-04-22 10:22:33 +08:00
{
2025-06-04 20:52:34 +08:00
field: "dzzw",
label: "职务",
2025-05-13 15:39:44 +08:00
component: "BasicPicker",
componentProps: {
2025-06-04 20:52:34 +08:00
api: dicApi,
param: { pid: 1063530116 },
rangeKey: "dictionaryValue",
savaKey: "dictionaryCode",
2025-05-13 15:39:44 +08:00
},
},
2025-04-22 10:22:33 +08:00
]);
const education = reactive<any>({
xl: [{ value: {} }],
});
2025-05-13 15:39:44 +08:00
const { getFile, setFile } = useDataStore();
if (getFile.rgqkList && getFile.rgqkList.length > 0) {
education.xl = map(getFile.rgqkList, (item) => {
return { value: item };
});
}
2025-04-22 10:22:33 +08:00
function addEducation() {
education.xl.push({ value: {} });
}
function deleteMemberFamily(index: number, item: any) {
const list = cloneDeep(education.xl);
list.splice(index, 1);
education.xl = list;
}
function submit() {
2025-05-13 15:39:44 +08:00
setFile({
...getFile,
rgqkList: map(education.xl, (item) => {
return item.value;
}),
});
2025-06-04 20:52:34 +08:00
navigateTo("/pages/view/hr/teacherProfile/ExperienceInfo");
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>