浏览代码

人才地图:新增酒店管理、职位管理

Xiao_123 3 天之前
父节点
当前提交
fa3bdb8ada

+ 37 - 0
src/api/menduner/system/talentMap/hotel.ts

@@ -0,0 +1,37 @@
+import request from '@/config/axios'
+
+export const talentHotelApi = {
+	// 标签列表
+	getTalentTagList: async () => {
+		return await request.get({ 
+			url: `/api/parse/get-talent-tag-list`, 
+			baseURL: import.meta.env.VITE_BASE_URL 
+		})
+	},
+
+	// 创建人才标签
+	createTalentTag: async (data: any) => {
+		return await request.post({ 
+			url: `/api/parse/create-talent-tag`, 
+			data, 
+			baseURL: import.meta.env.VITE_BASE_URL
+		})
+	},
+
+	// 更新人才标签
+	updateTalentTag: async (tag_id: number, data: any) => {
+		return await request.put({ 
+			url: `/api/parse/update-talent-tag/${tag_id}`, 
+			data, 
+			baseURL: import.meta.env.VITE_BASE_URL 
+		})
+	},
+
+	// 删除人才标签
+	deleteTalentTag: async (tag_id: number) => {
+		return await request.delete({ 
+			url: `/api/parse/delete-talent-tag/${tag_id}`, 
+			baseURL: import.meta.env.VITE_BASE_URL 
+		})
+	}
+}

+ 37 - 0
src/api/menduner/system/talentMap/position.ts

@@ -0,0 +1,37 @@
+import request from '@/config/axios'
+
+export const talentPositionApi = {
+	// 标签列表
+	getTalentTagList: async () => {
+		return await request.get({ 
+			url: `/api/parse/get-talent-tag-list`, 
+			baseURL: import.meta.env.VITE_BASE_URL 
+		})
+	},
+
+	// 创建人才标签
+	createTalentTag: async (data: any) => {
+		return await request.post({ 
+			url: `/api/parse/create-talent-tag`, 
+			data, 
+			baseURL: import.meta.env.VITE_BASE_URL
+		})
+	},
+
+	// 更新人才标签
+	updateTalentTag: async (tag_id: number, data: any) => {
+		return await request.put({ 
+			url: `/api/parse/update-talent-tag/${tag_id}`, 
+			data, 
+			baseURL: import.meta.env.VITE_BASE_URL 
+		})
+	},
+
+	// 删除人才标签
+	deleteTalentTag: async (tag_id: number) => {
+		return await request.delete({ 
+			url: `/api/parse/delete-talent-tag/${tag_id}`, 
+			baseURL: import.meta.env.VITE_BASE_URL 
+		})
+	}
+}

+ 141 - 0
src/views/menduner/system/talentMap/hotel/HotelForm.vue

@@ -0,0 +1,141 @@
+<template>
+  <Dialog :title="dialogTitle" v-model="dialogVisible">
+    <el-form
+      ref="formRef"
+      :model="formData"
+      :rules="formRules"
+      label-width="100px"
+      v-loading="formLoading"
+    >
+      <el-form-item label="集团名称" prop="name">
+        <el-input v-model="formData.name" placeholder="请输入集团名称" />
+      </el-form-item>
+      <el-form-item label="集团英文名称" prop="category">
+        <el-input v-model="formData.category" placeholder="请输入集团英文名称" />
+      </el-form-item>
+      <el-form-item label="品牌名称" prop="name">
+        <el-input v-model="formData.name" placeholder="请输入品牌名称" />
+      </el-form-item>
+      <el-form-item label="品牌英文名称" prop="category">
+        <el-input v-model="formData.category" placeholder="请输入品牌英文名称" />
+      </el-form-item>
+      <el-form-item label="定位级别(中)" prop="category">
+        <el-input v-model="formData.category" placeholder="请输入定位级别(中)" />
+      </el-form-item>
+      <el-form-item label="定位级别(英)" prop="category">
+        <el-input v-model="formData.category" placeholder="请输入定位级别(英)" />
+      </el-form-item>
+      <!-- <el-form-item label="标签状态" prop="status">
+        <el-radio-group v-model="formData.status">
+          <el-radio
+            v-for="dict in statusOptions"
+            :key="dict.value"
+            :value="dict.value"
+          >
+            {{ dict.label }}
+          </el-radio>
+        </el-radio-group>
+      </el-form-item> -->
+    </el-form>
+    <template #footer>
+      <el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
+      <el-button @click="dialogVisible = false">取 消</el-button>
+    </template>
+  </Dialog>
+</template>
+
+<script setup>
+import { talentHotelApi } from '@/api/menduner/system/talentMap/hotel'
+import _ from 'lodash-es'
+
+const { t } = useI18n() // 国际化
+const message = useMessage() // 消息弹窗
+
+const statusOptions = [
+	{ label: '启用', value: 'active' },
+	{ label: '禁用', value: 'inactive' },
+]
+
+const dialogVisible = ref(false) // 弹窗的是否展示
+const dialogTitle = ref('') // 弹窗的标题
+const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
+const formType = ref('') // 表单的类型:create - 新增;update - 修改
+const formRef = ref() // 表单 Ref
+const formData = ref({
+  name: undefined,
+  description: undefined,
+  category: '人才',
+  status: 'active'
+})
+const formRules = reactive({
+  status: [{ required: true, message: '标签状态不能为空', trigger: 'blur' }],
+  name: [{ required: true, message: '标签中文名称不能为空', trigger: 'blur' }]
+})
+
+/** 打开弹窗 */
+const valueKeys = ['name', 'category', 'status', 'description']
+const editItemData = ref({})
+const open = async (type, data) => {
+  editItemData.value = {}
+  dialogVisible.value = true
+  dialogTitle.value = t('action.' + type)
+  formType.value = type
+  resetForm()
+
+  // 修改时,设置数据
+  if (data && Object.keys(data).length) {
+    formData.value = data
+    valueKeys.forEach(key => editItemData.value[key] = data[key])
+    if (data.status === 'disable') formData.value.status = 'inactive'
+  }
+}
+defineExpose({ open }) // 提供 open 方法,用于打开弹窗
+
+/** 提交表单 */
+const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
+const submitForm = async () => {
+  // 校验表单
+  // if (!formRef) return
+  // await formRef.value.validate()
+
+  // const params = {
+  //   status: formData.value.status,
+  //   category: formData.value.category,
+  //   description: formData.value.description,
+  //   name: formData.value.name
+  // }
+  // // 更新标签时,至少需要提供一个要更新的项
+  // if (formType.value === 'update') {
+  //   const isEqual = _.isEqual(params, editItemData.value)
+  //   if (isEqual) return message.warning('请修改任意项后再提交!')
+  // }
+
+  // // 提交请求
+  // formLoading.value = true
+  // try {
+  //   if (formType.value === 'create') {
+  //     await talentHotelApi.createTalentTag(params)
+  //     message.success(t('common.createSuccess'))
+  //   } else {
+  //     await talentHotelApi.updateTalentTag(formData.value.id, params)
+  //     message.success(t('common.updateSuccess'))
+  //   }
+  //   dialogVisible.value = false
+  //   // 发送操作成功的事件
+  //   emit('success')
+  // } finally {
+  //   formLoading.value = false
+  // }
+}
+
+/** 重置表单 */
+const resetForm = () => {
+  formData.value = {
+    name: undefined,
+    description: undefined,
+    category: '人才',
+    status: 'active'
+  }
+  formRef.value?.resetFields()
+}
+</script>

+ 166 - 0
src/views/menduner/system/talentMap/hotel/index.vue

@@ -0,0 +1,166 @@
+<template>
+  <!-- 搜索工作栏 -->
+  <ContentWrap>
+    <el-form
+      class="-mb-15px"
+      :model="queryParams"
+      ref="queryFormRef"
+      :inline="true"
+      label-width="68px"
+    >
+      <el-form-item label="集团名称" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入集团中文名称"
+          clearable
+          @keyup.enter="handleQuery"
+          class="!w-240px"
+        />
+      </el-form-item>
+      <el-form-item label="品牌名称" prop="category">
+        <el-input
+          v-model="queryParams.category"
+          placeholder="请输入品牌中文名称"
+          clearable
+          @keyup.enter="handleQuery"
+          class="!w-240px"
+        />
+      </el-form-item>
+      <el-form-item label="定位级别" prop="category">
+        <el-input
+          v-model="queryParams.category"
+          placeholder="请输入定位级别中文名称"
+          clearable
+          @keyup.enter="handleQuery"
+          class="!w-240px"
+        />
+      </el-form-item>
+      <!-- <el-form-item label="标签状态" prop="status">
+        <el-select
+          v-model="queryParams.status"
+          class="!w-240px"
+          clearable
+          placeholder="请选择状态"
+        >
+          <el-option
+            v-for="dict in statusOptions"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item> -->
+      <el-form-item>
+        <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
+        <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
+        <el-button
+          type="primary"
+          plain
+          @click="openForm('create')"
+        >
+          <Icon icon="ep:plus" class="mr-5px" /> 新增
+        </el-button>
+      </el-form-item>
+    </el-form>
+  </ContentWrap>
+
+  <!-- 列表 -->
+  <ContentWrap>
+    <el-table v-loading="loading" :data="list" :stripe="true" row-key="id">
+      <el-table-column label="集团名称" align="center" prop="name" />
+      <el-table-column label="集团英文名称" align="center" prop="en_name" :show-overflow-tooltip="true" />
+      <el-table-column label="品牌名称" align="center" prop="category" />
+      <el-table-column label="品牌英文名称" align="center" prop="description" :show-overflow-tooltip="true" />
+      <el-table-column label="定位级别(中)" align="center" prop="category" />
+      <el-table-column label="定位级别(英)" align="center" prop="description" :show-overflow-tooltip="true" />
+      <!-- <el-table-column label="标签状态" align="center" prop="status">
+        <template #default="scope">
+          <el-tag :type="scope.row.status === 'active' ? 'success' : 'danger'">
+            {{ scope.row.status === 'active' ? '已启用' : '已禁用' }}
+          </el-tag>
+        </template>
+      </el-table-column>
+      <el-table-column label="更新时间" align="center" prop="time" width="180" /> -->
+      <el-table-column label="操作" align="center">
+        <template #default="scope">
+          <el-button link type="primary" @click="openForm('update', scope.row)">编辑</el-button>
+          <el-button link type="danger" @click="handleDelete(scope.row.id)">删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+  </ContentWrap>
+
+  <!-- 表单弹窗:添加/修改 -->
+  <HotelForm ref="formRef" @success="getList" />
+</template>
+
+<script setup>
+import { talentHotelApi } from '@/api/menduner/system/talentMap/hotel'
+import HotelForm from './HotelForm.vue'
+
+const loading = ref(false)
+const list = ref([])
+const queryParams = reactive({
+  name: undefined,
+  category: undefined,
+  status: undefined
+})
+const queryFormRef = ref() // 搜索的表单
+const statusOptions = [
+	{ label: '启用', value: 'active' },
+	{ label: '禁用', value: 'inactive' },
+]
+
+const message = useMessage() // 消息弹窗
+const { t } = useI18n() // 国际化
+
+/** 查询列表 */
+const getList = async () => {
+  loading.value = true
+  try {
+    const data = await talentHotelApi.getTalentTagList()
+    list.value = data
+  } finally {
+    loading.value = false
+  }
+}
+
+/** 添加/修改操作 */
+const formRef = ref()
+const openForm = (type, data) => {
+  formRef.value.open(type, data)
+}
+
+/** 搜索按钮操作 */
+const handleQuery = () => {
+  // getList()
+  message.warning('建设中...')
+}
+
+/** 重置按钮操作 */
+const resetQuery = () => {
+  // queryFormRef.value.resetFields()
+  // handleQuery()
+  message.warning('建设中...')
+}
+
+/** 删除按钮操作 */
+const handleDelete = async (id) => {
+  // try {
+  //   // 删除的二次确认
+  //   await message.delConfirm()
+  //   // 发起删除
+  //   await talentHotelApi.deleteTalentTag(id)
+  //   message.success(t('common.delSuccess'))
+  //   // 刷新列表
+  //   setTimeout(async () => {
+  //     await getList()
+  //   }, 0)
+  // } catch {}
+}
+
+/** 初始化 **/
+onMounted(() => {
+  getList()
+})
+</script>

+ 144 - 0
src/views/menduner/system/talentMap/position/PositionForm.vue

@@ -0,0 +1,144 @@
+<template>
+  <Dialog :title="dialogTitle" v-model="dialogVisible">
+    <el-form
+      ref="formRef"
+      :model="formData"
+      :rules="formRules"
+      label-width="130px"
+      v-loading="formLoading"
+    >
+      <el-form-item label="部门名称" prop="name">
+        <el-input v-model="formData.name" placeholder="请输入部门名称" />
+      </el-form-item>
+      <el-form-item label="部门英文名称" prop="category">
+        <el-input v-model="formData.category" placeholder="请输入部门英文名称" />
+      </el-form-item>
+      <el-form-item label="职位名称" prop="name">
+        <el-input v-model="formData.name" placeholder="请输入职位名称" />
+      </el-form-item>
+      <el-form-item label="职位英文名称" prop="category">
+        <el-input v-model="formData.category" placeholder="请输入职位英文名称" />
+      </el-form-item>
+      <el-form-item label="职位英文名称缩写" prop="category">
+        <el-input v-model="formData.category" placeholder="请输入职位英文名称缩写" />
+      </el-form-item>
+      <el-form-item label="职级(中)" prop="category">
+        <el-input v-model="formData.category" placeholder="请输入职级名称(中)" />
+      </el-form-item>
+      <el-form-item label="职级(英)" prop="category">
+        <el-input v-model="formData.category" placeholder="请输入职级名称(英)" />
+      </el-form-item>
+      <!-- <el-form-item label="标签状态" prop="status">
+        <el-radio-group v-model="formData.status">
+          <el-radio
+            v-for="dict in statusOptions"
+            :key="dict.value"
+            :value="dict.value"
+          >
+            {{ dict.label }}
+          </el-radio>
+        </el-radio-group>
+      </el-form-item> -->
+    </el-form>
+    <template #footer>
+      <el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
+      <el-button @click="dialogVisible = false">取 消</el-button>
+    </template>
+  </Dialog>
+</template>
+
+<script setup>
+import { talentPositionApi } from '@/api/menduner/system/talentMap/position'
+import _ from 'lodash-es'
+
+const { t } = useI18n() // 国际化
+const message = useMessage() // 消息弹窗
+
+const statusOptions = [
+	{ label: '启用', value: 'active' },
+	{ label: '禁用', value: 'inactive' },
+]
+
+const dialogVisible = ref(false) // 弹窗的是否展示
+const dialogTitle = ref('') // 弹窗的标题
+const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
+const formType = ref('') // 表单的类型:create - 新增;update - 修改
+const formRef = ref() // 表单 Ref
+const formData = ref({
+  name: undefined,
+  description: undefined,
+  category: '人才',
+  status: 'active'
+})
+const formRules = reactive({
+  status: [{ required: true, message: '标签状态不能为空', trigger: 'blur' }],
+  name: [{ required: true, message: '标签中文名称不能为空', trigger: 'blur' }]
+})
+
+/** 打开弹窗 */
+const valueKeys = ['name', 'category', 'status', 'description']
+const editItemData = ref({})
+const open = async (type, data) => {
+  editItemData.value = {}
+  dialogVisible.value = true
+  dialogTitle.value = t('action.' + type)
+  formType.value = type
+  resetForm()
+
+  // 修改时,设置数据
+  if (data && Object.keys(data).length) {
+    formData.value = data
+    valueKeys.forEach(key => editItemData.value[key] = data[key])
+    if (data.status === 'disable') formData.value.status = 'inactive'
+  }
+}
+defineExpose({ open }) // 提供 open 方法,用于打开弹窗
+
+/** 提交表单 */
+const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
+const submitForm = async () => {
+  // 校验表单
+  // if (!formRef) return
+  // await formRef.value.validate()
+
+  // const params = {
+  //   status: formData.value.status,
+  //   category: formData.value.category,
+  //   description: formData.value.description,
+  //   name: formData.value.name
+  // }
+  // // 更新标签时,至少需要提供一个要更新的项
+  // if (formType.value === 'update') {
+  //   const isEqual = _.isEqual(params, editItemData.value)
+  //   if (isEqual) return message.warning('请修改任意项后再提交!')
+  // }
+
+  // // 提交请求
+  // formLoading.value = true
+  // try {
+  //   if (formType.value === 'create') {
+  //     await talentPositionApi.createTalentTag(params)
+  //     message.success(t('common.createSuccess'))
+  //   } else {
+  //     await talentPositionApi.updateTalentTag(formData.value.id, params)
+  //     message.success(t('common.updateSuccess'))
+  //   }
+  //   dialogVisible.value = false
+  //   // 发送操作成功的事件
+  //   emit('success')
+  // } finally {
+  //   formLoading.value = false
+  // }
+}
+
+/** 重置表单 */
+const resetForm = () => {
+  formData.value = {
+    name: undefined,
+    description: undefined,
+    category: '人才',
+    status: 'active'
+  }
+  formRef.value?.resetFields()
+}
+</script>

+ 167 - 0
src/views/menduner/system/talentMap/position/index.vue

@@ -0,0 +1,167 @@
+<template>
+  <!-- 搜索工作栏 -->
+  <ContentWrap>
+    <el-form
+      class="-mb-15px"
+      :model="queryParams"
+      ref="queryFormRef"
+      :inline="true"
+      label-width="68px"
+    >
+      <el-form-item label="部门名称" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入部门中文名称"
+          clearable
+          @keyup.enter="handleQuery"
+          class="!w-240px"
+        />
+      </el-form-item>
+      <el-form-item label="职位名称" prop="category">
+        <el-input
+          v-model="queryParams.category"
+          placeholder="请输入职位中文名称"
+          clearable
+          @keyup.enter="handleQuery"
+          class="!w-240px"
+        />
+      </el-form-item>
+      <el-form-item label="职级" prop="category">
+        <el-input
+          v-model="queryParams.category"
+          placeholder="请输入职级中文名称"
+          clearable
+          @keyup.enter="handleQuery"
+          class="!w-240px"
+        />
+      </el-form-item>
+      <!-- <el-form-item label="标签状态" prop="status">
+        <el-select
+          v-model="queryParams.status"
+          class="!w-240px"
+          clearable
+          placeholder="请选择状态"
+        >
+          <el-option
+            v-for="dict in statusOptions"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item> -->
+      <el-form-item>
+        <el-button @click="handleQuery"><Icon icon="ep:search" class="mr-5px" /> 搜索</el-button>
+        <el-button @click="resetQuery"><Icon icon="ep:refresh" class="mr-5px" /> 重置</el-button>
+        <el-button
+          type="primary"
+          plain
+          @click="openForm('create')"
+        >
+          <Icon icon="ep:plus" class="mr-5px" /> 新增
+        </el-button>
+      </el-form-item>
+    </el-form>
+  </ContentWrap>
+
+  <!-- 列表 -->
+  <ContentWrap>
+    <el-table v-loading="loading" :data="list" :stripe="true" row-key="id">
+      <el-table-column label="部门名称" align="center" prop="name" />
+      <el-table-column label="部门英文名称" align="center" prop="en_name" :show-overflow-tooltip="true" />
+      <el-table-column label="职位名称" align="center" prop="name" />
+      <el-table-column label="职位英文名称" align="center" prop="en_name" :show-overflow-tooltip="true" />
+      <el-table-column label="职位英文名称缩写" align="center" prop="en_name" :show-overflow-tooltip="true" />
+      <el-table-column label="职级(中)" align="center" prop="name" />
+      <el-table-column label="职级(英)" align="center" prop="en_name" :show-overflow-tooltip="true" />
+      <!-- <el-table-column label="标签状态" align="center" prop="status">
+        <template #default="scope">
+          <el-tag :type="scope.row.status === 'active' ? 'success' : 'danger'">
+            {{ scope.row.status === 'active' ? '已启用' : '已禁用' }}
+          </el-tag>
+        </template>
+      </el-table-column>
+      <el-table-column label="更新时间" align="center" prop="time" width="180" /> -->
+      <el-table-column label="操作" align="center">
+        <template #default="scope">
+          <el-button link type="primary" @click="openForm('update', scope.row)">编辑</el-button>
+          <el-button link type="danger" @click="handleDelete(scope.row.id)">删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+  </ContentWrap>
+
+  <!-- 表单弹窗:添加/修改 -->
+  <PositionForm ref="formRef" @success="getList" />
+</template>
+
+<script setup>
+import { talentPositionApi } from '@/api/menduner/system/talentMap/position'
+import PositionForm from './PositionForm.vue'
+
+const loading = ref(false)
+const list = ref([])
+const queryParams = reactive({
+  name: undefined,
+  category: undefined,
+  status: undefined
+})
+const queryFormRef = ref() // 搜索的表单
+const statusOptions = [
+	{ label: '启用', value: 'active' },
+	{ label: '禁用', value: 'inactive' },
+]
+
+const message = useMessage() // 消息弹窗
+const { t } = useI18n() // 国际化
+
+/** 查询列表 */
+const getList = async () => {
+  loading.value = true
+  try {
+    const data = await talentPositionApi.getTalentTagList()
+    list.value = data
+  } finally {
+    loading.value = false
+  }
+}
+
+/** 添加/修改操作 */
+const formRef = ref()
+const openForm = (type, data) => {
+  formRef.value.open(type, data)
+}
+
+/** 搜索按钮操作 */
+const handleQuery = () => {
+  // getList()
+  message.warning('建设中...')
+}
+
+/** 重置按钮操作 */
+const resetQuery = () => {
+  // queryFormRef.value.resetFields()
+  // handleQuery()
+  message.warning('建设中...')
+}
+
+/** 删除按钮操作 */
+const handleDelete = async (id) => {
+  // try {
+  //   // 删除的二次确认
+  //   await message.delConfirm()
+  //   // 发起删除
+  //   await talentPositionApi.deleteTalentTag(id)
+  //   message.success(t('common.delSuccess'))
+  //   // 刷新列表
+  //   setTimeout(async () => {
+  //     await getList()
+  //   }, 0)
+  // } catch {}
+}
+
+/** 初始化 **/
+onMounted(() => {
+  getList()
+})
+</script>