From 370dc98e9bdd84d6a42d016a3ec113f2e762548e Mon Sep 17 00:00:00 2001 From: herenshan112 Date: Thu, 19 Sep 2024 15:40:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E4=B8=8B=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DesignForm/formControlPropertiNew.vue | 1 - .../hr/archives/downpage/xingGeFengXi.vue | 86 ++++++++ src/views/hr/archives/index.vue | 198 +++++++++++++++++- 3 files changed, 279 insertions(+), 6 deletions(-) create mode 100644 src/views/hr/archives/downpage/xingGeFengXi.vue diff --git a/src/components/DesignForm/formControlPropertiNew.vue b/src/components/DesignForm/formControlPropertiNew.vue index 244dbd8..a825390 100644 --- a/src/components/DesignForm/formControlPropertiNew.vue +++ b/src/components/DesignForm/formControlPropertiNew.vue @@ -4113,7 +4113,6 @@ const radioChangeSet = (val:any) => { - {{formConfig}} 基础配置 diff --git a/src/views/hr/archives/downpage/xingGeFengXi.vue b/src/views/hr/archives/downpage/xingGeFengXi.vue new file mode 100644 index 0000000..8d0ff47 --- /dev/null +++ b/src/views/hr/archives/downpage/xingGeFengXi.vue @@ -0,0 +1,86 @@ + + + + diff --git a/src/views/hr/archives/index.vue b/src/views/hr/archives/index.vue index e9af648..b47f55e 100644 --- a/src/views/hr/archives/index.vue +++ b/src/views/hr/archives/index.vue @@ -17,7 +17,7 @@ import { uploadUrl } from '@/api/DesignForm' * 引入页面 */ import ArchivesCont from '@/views/hr/archives/archivescont.vue' - +import XingGeFengXi from '@/views/hr/archives/downpage/xingGeFengXi.vue' import { ElScrollbar as ElScrollbarType } from 'element-plus'; @@ -41,6 +41,7 @@ const handleClick = () => { }) } +const direction = ref("rtl") // const uploadFFurl = import.meta.env.VITE_APP_BASE_API + "/hrapi/staff/uploadUserFiles" const uploadFFurl = import.meta.env.VITE_APP_BASE_API + "/hrapi/staff/uploadUserFilesRedis" @@ -497,7 +498,74 @@ const downLoadTeamTable = () => { console.log("下团队角色分析表",data) }) } - +const openSetup = ref(false) +/** +@ 作者: 秦东 +@ 时间: 2024-09-19 09:57:42 +@ 功能: 设置相关操作 +*/ +const setupClick = () => { + openSetup.value = true + temList() +} +/** +@ 作者: 秦东 +@ 时间: 2024-09-19 10:12:29 +@ 功能: 关闭设置 +*/ +const closeSetup = () => { + openSetup.value = false +} +const setupActiveName = ref("1") +watch(() =>setupActiveName.value, (val:any) => { + console.log("切换选项",val) +}) +/** +@ 作者: 秦东 +@ 时间: 2024-09-19 13:12:29 +@ 功能: 下载性格分析表 +*/ +const openTableType = ref(false) +const downTableType = ref("10000003") +const downClassType = ref(1) +const selectDownTiaojian = (val:string) => { + downTableType.value = val + openTableType.value = true + downClassType.value = 1 +} +/** +@ 作者: 秦东 +@ 时间: 2024-09-19 13:23:09 +@ 功能: 关闭下载页面 +*/ +const closeXigePage = () => { + openTableType.value = false +} +/** +@ 作者: 秦东 +@ 时间: 2024-09-19 13:55:09 +@ 功能: 性格类型 +*/ +const characterList = reactive([ + { + label:"性格色彩", + code:"10000001" + }, + { + label:"DISC性格特质", + code:"10000002" + }, + { + label:"九型人格特质", + code:"10000003" + } +]) +const downStatistics = (val:any) => { + console.log("下载数据嗖嗖嗖--->",val) + downTableType.value = val + openTableType.value = true + downClassType.value = 2 +}