ZaiZai 1 年間 前
コミット
1a37c02070

+ 4 - 2
src/api/modules/system/dict.js

@@ -54,11 +54,13 @@ export default {
             params: {},
         }, false)
     },
-    async getDictionary(params) {
+    async getDictionary(code) {
         return HcApi({
             url: '/api/blade-system/dict/dictionary',
             method: 'get',
-            params,
+            params: {
+                code,
+            },
         }, false)
     },
 }

+ 4 - 2
src/api/modules/system/dictbiz.js

@@ -54,11 +54,13 @@ export default {
             params: {},
         }, false)
     },
-    async getDictionary(params) {
+    async getDictionary(code) {
         return HcApi({
             url: '/api/blade-system/dict-biz/dictionary',
             method: 'get',
-            params,
+            params: {
+                code,
+            },
         }, false)
     },
 }

+ 46 - 0
src/api/modules/system/post.js

@@ -0,0 +1,46 @@
+import { HcApi } from '../../request/index'
+
+export default {
+    async page(form) {
+        return HcApi({
+            url: '/api/blade-system/post/list',
+            method: 'get',
+            params: form,
+        }, false)
+    },
+    //菜单详情
+    async detail(id) {
+        return HcApi({
+            url: '/api/blade-system/post/detail',
+            method: 'get',
+            params: {
+                id,
+            },
+        }, false)
+    },
+    async submit(form) {
+        return HcApi({
+            url: '/api/blade-system/post/submit',
+            method: 'post',
+            data: form,
+        }, false)
+    },
+    async del(ids) {
+        return HcApi({
+            url: '/api/blade-system/post/remove',
+            method: 'post',
+            params: {
+                ids,
+            },
+        }, false)
+    },
+    async getPostList(tenantId) {
+        return HcApi({
+            url: '/api/blade-system/post/select',
+            method: 'get',
+            params: {
+                tenantId,
+            },
+        }, false)
+    },
+}

+ 89 - 0
src/api/modules/system/tenant.js

@@ -0,0 +1,89 @@
+import { HcApi } from '../../request/index'
+
+export default {
+    async page(form) {
+        return HcApi({
+            url: '/api/blade-system/tenant/list',
+            method: 'get',
+            params: form,
+        }, false)
+    },
+    //菜单详情
+    async detail(id) {
+        return HcApi({
+            url: '/api/blade-system/tenant/detail',
+            method: 'get',
+            params: {
+                id,
+            },
+        }, false)
+    },
+    async submit(form) {
+        return HcApi({
+            url: '/api/blade-system/tenant/submit',
+            method: 'post',
+            data: form,
+        }, false)
+    },
+    async del(ids) {
+        return HcApi({
+            url: '/api/blade-system/tenant/remove',
+            method: 'post',
+            params: {
+                ids,
+            },
+        }, false)
+    },
+    async setting(form) {
+        return HcApi({
+            url: '/api/blade-system/tenant/setting',
+            method: 'post',
+            params: form,
+        }, false)
+    },
+    async datasource(tenantId, datasourceId) {
+        return HcApi({
+            url: '/api/blade-system/tenant/datasource',
+            method: 'post',
+            params: {
+                tenantId,
+                datasourceId,
+            },
+        }, false)
+    },
+    async info(domain) {
+        return HcApi({
+            url: '/api/blade-system/tenant/info',
+            method: 'get',
+            params: {
+                domain,
+            },
+        }, false)
+    },
+    async packageInfo(tenantId) {
+        return HcApi({
+            url: '/api/blade-system/tenant/package-detail',
+            method: 'get',
+            params: {
+                tenantId,
+            },
+        }, false)
+    },
+    async packageSetting(tenantId, packageId) {
+        return HcApi({
+            url: '/api/blade-system/tenant/package-setting',
+            method: 'post',
+            params: {
+                tenantId,
+                packageId,
+            },
+        }, false)
+    },
+    async getSelect() {
+        return HcApi({
+            url: '/api/blade-system/tenant/select',
+            method: 'get',
+            params: {},
+        }, false)
+    },
+}

+ 6 - 0
src/router/modules/base.js

@@ -70,6 +70,12 @@ export default [
                 meta: { title: '用户管理' },
                 component: () => import('~src/views/system/user.vue'),
             },
+            {
+                path: '/system/post',
+                name: 'post',
+                meta: { title: '岗位管理' },
+                component: () => import('~src/views/system/post.vue'),
+            },
             {
                 path: '/system/dict',
                 name: 'dict',

+ 291 - 0
src/views/system/post.vue

@@ -0,0 +1,291 @@
+<template>
+    <hc-new-card>
+        <template #header>
+            <div class="w-32">
+                <el-select v-model="searchForm.category" placeholder="选择岗位类型" filterable clearable block>
+                    <el-option v-for="item in categoryType" :key="item.value" :label="item.label" :value="item.value" />
+                </el-select>
+            </div>
+            <div class="ml-2 w-32">
+                <el-select v-model="searchType" placeholder="选择搜索类型" filterable block>
+                    <el-option label="岗位编号" value="postCode" />
+                    <el-option label="岗位名称" value="postName" />
+                </el-select>
+            </div>
+            <div class="ml-2 w-60">
+                <hc-search-input v-model="searchName" placeholder="请输入关键词" @search="searchClick" />
+            </div>
+        </template>
+        <template #extra>
+            <el-button hc-btn type="primary" @click="addClick">新增</el-button>
+            <el-button hc-btn type="danger" @click="delClick">删除</el-button>
+        </template>
+        <hc-table
+            ref="tableRef" :column="tableColumn" :datas="tableData" :loading="tableLoading"
+            is-new is-check :check-style="{ width: 29 }" :index-style="{ width: 60 }"
+            @selection-change="tableCheckChange"
+        >
+            <template #tenantId="{ row }">
+                {{ getTenantNmae(row.tenantId) }}
+            </template>
+            <template #category="{ row }">
+                {{ getCategoryType(row.category) }}
+            </template>
+            <template #action="{ row }">
+                <el-link type="warning" @click="editRowClick(row)">修改</el-link>
+                <el-link type="danger" @click="delRowClick(row)">删除</el-link>
+            </template>
+        </hc-table>
+        <template #action>
+            <hc-pages :pages="searchForm" @change="pageChange" />
+        </template>
+
+        <!-- 新增/修改 -->
+        <hc-new-dialog v-model="isDialogShow" widths="600px" is-footer-center :title="dialogTitle" @close="dialogClose">
+            <el-form ref="formRef" :model="formModel" :rules="formRules" label-position="top" label-width="auto">
+                <el-row :gutter="20">
+                    <el-col :span="12">
+                        <el-form-item label="岗位类型:" prop="category">
+                            <el-select v-model="formModel.category" placeholder="选择岗位类型" filterable clearable block>
+                                <el-option v-for="item in categoryType" :key="item.value" :label="item.label" :value="item.value" />
+                            </el-select>
+                        </el-form-item>
+                    </el-col>
+                    <el-col :span="12">
+                        <el-form-item label="岗位编号:" prop="postCode">
+                            <el-input v-model="formModel.postCode" clearable placeholder="请输入岗位编号" />
+                        </el-form-item>
+                    </el-col>
+                    <el-col :span="12">
+                        <el-form-item label="岗位名称:" prop="postName">
+                            <el-input v-model="formModel.postName" clearable placeholder="请输入岗位名称" />
+                        </el-form-item>
+                    </el-col>
+                    <el-col :span="12">
+                        <el-form-item label="岗位排序:" prop="sort">
+                            <el-input-number v-model="formModel.sort" :min="1" block controls-position="right" />
+                        </el-form-item>
+                    </el-col>
+                    <el-col :span="24">
+                        <el-form-item label="岗位描述:">
+                            <el-input v-model="formModel.remark" :autosize="{ minRows: 4, maxRows: 8 }" type="textarea" placeholder="请输入岗位描述" />
+                        </el-form-item>
+                    </el-col>
+                </el-row>
+            </el-form>
+            <template #footer>
+                <el-button hc-btn @click="dialogClose">取消</el-button>
+                <el-button hc-btn type="primary" :loading="submitLoading" @click="dialogSubmit">提交</el-button>
+            </template>
+        </hc-new-dialog>
+    </hc-new-card>
+</template>
+
+<script setup>
+import { nextTick, onActivated, ref } from 'vue'
+import { arrToId, formValidate, getArrValue } from 'js-fast-way'
+import { delMessage, getDictionaryData } from '~uti/tools'
+import tenantApi from '~api/system/tenant'
+import mainApi from '~api/system/post'
+
+//激活
+onActivated(() => {
+    searchForm.value.current = 1
+    getDataApi()
+})
+
+const getDataApi = async () => {
+    await getPostCategory()
+    await getTenantList()
+    getTableData().then()
+}
+
+//搜索表单
+const searchType = ref('code')
+const searchName = ref('')
+const searchForm = ref({ current: 1, size: 30, total: 0 })
+
+//获取岗位类型
+const categoryType = ref([])
+const getPostCategory = async () => {
+    categoryType.value = await getDictionaryData('post_category')
+}
+const getCategoryType = (id) => {
+    const item = categoryType.value.find((item) => item.value === id)
+    return item ? item.label : id
+}
+
+//获取租户列表
+const tenantList = ref([])
+const getTenantList = async () => {
+    const { data } = await tenantApi.getSelect()
+    tenantList.value = getArrValue(data)
+}
+const getTenantNmae = (id) => {
+    const item = tenantList.value.find((item) => item.tenantId === id)
+    return item ? item.tenantName : id
+}
+
+//搜索
+const searchClick = () => {
+    searchForm.value.current = 1
+    getTableData()
+}
+
+//分页
+const pageChange = ({ current, size }) => {
+    searchForm.value.current = current
+    searchForm.value.size = size
+    getTableData()
+}
+
+//表格数据
+const tableRef = ref(null)
+const tableColumn = ref([
+    { key: 'tenantId', name: '所属租户' },
+    { key: 'category', name: '岗位类型' },
+    { key: 'postCode', name: '岗位编号' },
+    { key: 'postName', name: '岗位名称' },
+    { key: 'sort', name: '岗位排序' },
+    { key: 'action', name: '操作', width: 100, align: 'center' },
+])
+
+//获取表格数据
+const tableLoading = ref(false)
+const tableData = ref([{}])
+const getTableData = async () => {
+    tableData.value = []
+    tableLoading.value = true
+    const form = {
+        ...searchForm.value,
+        total: null,
+    }
+    if (searchName.value) {
+        form[searchType.value] = searchName.value
+    }
+    const { error, code, data } = await mainApi.page(form)
+    tableLoading.value = false
+    if (!error && code === 200) {
+        tableData.value = getArrValue(data['records'])
+        searchForm.value.total = data['total']
+    } else {
+        tableData.value = []
+        searchForm.value.total = 0
+    }
+}
+
+//表格被选择
+const tableCheckKeys = ref([])
+const tableCheckChange = (rows) => {
+    tableCheckKeys.value = rows
+}
+
+//新增/修改 弹窗
+const isDialogShow = ref(false)
+const dialogTitle = ref('')
+
+//菜单表单
+const formRef = ref(null)
+const formModel = ref({})
+const formRules = {
+    category: {
+        required: true,
+        trigger: 'blur',
+        message: '请选择岗位类型',
+    },
+    postCode: {
+        required: true,
+        trigger: 'blur',
+        message: '请输入岗位编号',
+    },
+    postName: {
+        required: true,
+        trigger: 'blur',
+        message: '请输入岗位名称',
+    },
+    sort: {
+        required: true,
+        trigger: 'blur',
+        message: '请输入字典排序',
+    },
+}
+
+//新增
+const addClick = () => {
+    dialogTitle.value = '新增岗位'
+    formModel.value = { sort: 1 }
+    //显示表单弹窗
+    nextTick(() => {
+        isDialogShow.value = true
+    })
+}
+
+//修改菜单
+const editRowClick = (row) => {
+    formModel.value = {}
+    dialogTitle.value = '修改岗位'
+    formModel.value = { ...row }
+    //显示表单弹窗
+    nextTick(() => {
+        isDialogShow.value = true
+    })
+}
+
+//删除菜单
+const delRowClick = (row) => {
+    delMessage(async () => {
+        const { code, msg } = await mainApi.del(row.id)
+        if (code === 200) {
+            window.$message.success('删除成功')
+            getTableData().then()
+        } else {
+            window.$message.error(msg ?? '删除失败')
+        }
+    })
+}
+
+//批量删除菜单
+const delClick = () => {
+    const rows = tableCheckKeys.value
+    if (rows.length <= 0) {
+        window.$message.warning('请选择要删除的菜单')
+        return false
+    }
+    //确认删除菜单
+    delMessage(async () => {
+        const ids = arrToId(rows)
+        const { code, msg } = await mainApi.del(ids)
+        if (code === 200) {
+            window.$message.success('删除成功')
+            getTableData().then()
+        } else {
+            window.$message.error(msg ?? '删除失败')
+        }
+    })
+}
+
+//提交表单
+const submitLoading = ref(false)
+const dialogSubmit = async () => {
+    const formRes = await formValidate(formRef.value)
+    if (!formRes) return false
+    submitLoading.value = true
+    //发起请求
+    const { error, code, msg } = await mainApi.submit(formModel.value)
+    if (!error && code === 200) {
+        submitLoading.value = false
+        dialogClose()
+        window?.$message?.success('操作成功')
+        getTableData().then()
+    } else {
+        window?.$message?.error(msg ?? '操作失败')
+    }
+}
+
+//关闭弹窗
+const dialogClose = () => {
+    isDialogShow.value = false
+    submitLoading.value = false
+    formModel.value = {}
+}
+</script>