Browse Source

资料分类

lipenghui 5 months ago
parent
commit
35cf0cb4c1

+ 46 - 0
src/api/pms/info/index.ts

@@ -0,0 +1,46 @@
+import request from '@/config/axios'
+
+// 设备分类 VO
+export interface IotInfoClassifyVO {
+  id: number // 主键id
+  parentId: number // 父分类id
+  name: string // 分类名称
+  sort: number // 分类排序
+  status: number // 开启状态
+}
+
+// 设备分类 API
+export const IotInfoClassifyApi = {
+  // 查询设备分类分页
+  getIotInfoClassifyPage: async (params: any) => {
+    return await request.get({ url: `/rq/iot-info-classify/list`, params })
+  },
+
+  // 查询设备分类详情
+  getIotInfoClassify: async (id: number) => {
+    return await request.get({ url: `/rq/iot-info-classify/get?id=` + id })
+  },
+
+  // 新增设备分类
+  createIotInfoClassify: async (data: IotInfoClassifyVO) => {
+    return await request.post({ url: `/rq/iot-info-classify/create`, data })
+  },
+
+  // 修改设备分类
+  updateIotInfoClassify: async (data: IotInfoClassifyVO) => {
+    return await request.put({ url: `/rq/iot-info-classify/update`, data })
+  },
+
+  // 删除设备分类
+  deleteIotInfoClassify: async (id: number) => {
+    return await request.delete({ url: `/rq/iot-info-classify/delete?id=` + id })
+  },
+
+  // 导出设备分类 Excel
+  exportIotInfoClassify: async (params) => {
+    return await request.download({ url: `/rq/iot-info-classify/export-excel`, params })
+  },
+  getSimpleProductClassifyList: async (): Promise<IotInfoClassifyVO[]> => {
+    return await request.get({ url: '/rq/iot-info-classify/simple-list' })
+  }
+}

+ 153 - 0
src/views/pms/info/InfoClassifyForm.vue

@@ -0,0 +1,153 @@
+<template>
+  <Dialog v-model="dialogVisible" :title="dialogTitle">
+    <el-form
+      ref="formRef"
+      v-loading="formLoading"
+      :model="formData"
+      :rules="formRules"
+      label-width="80px"
+    >
+      <el-form-item label="上级资料分类" prop="parentId">
+        <el-tree-select
+          v-model="formData.parentId"
+          :data="deptTree"
+          :props="defaultProps"
+          check-strictly
+          default-expand-all
+          placeholder="请选择上级资料分类"
+          value-key="deptId"
+        />
+      </el-form-item>
+      <el-form-item label="资料分类名称" prop="name">
+        <el-input v-model="formData.name" placeholder="请输入资料分类名称" />
+      </el-form-item>
+      <el-form-item label="显示排序" prop="sort">
+        <el-input-number v-model="formData.sort" :min="0" controls-position="right" />
+      </el-form-item>
+      <el-form-item label="状态" prop="status">
+        <el-select v-model="formData.status" clearable placeholder="请选择状态">
+          <el-option
+            v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item label="备注" prop="remark">
+        <el-input v-model="formData.remark" maxlength="11" placeholder="请输入备注" type="textarea" />
+      </el-form-item>
+    </el-form>
+    <template #footer>
+      <el-button type="primary" @click="submitForm">确 定</el-button>
+      <el-button @click="dialogVisible = false">取 消</el-button>
+    </template>
+  </Dialog>
+</template>
+<script lang="ts" setup>
+import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
+import { defaultProps, handleTree } from '@/utils/tree'
+import * as InfoClassifyApi from '@/api/pms/info'
+// import * as UserApi from '@/api/system/user'
+import { CommonStatusEnum } from '@/utils/constants'
+import { FormRules } from 'element-plus'
+
+defineOptions({ name: 'IotInfoClassifyForm' })
+
+const { t } = useI18n() // 国际化
+const message = useMessage() // 消息弹窗
+
+const dialogVisible = ref(false) // 弹窗的是否展示
+const dialogTitle = ref('') // 弹窗的标题
+const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
+const formType = ref('') // 表单的类型:create - 新增;update - 修改
+const formData = ref({
+  id: undefined,
+  parentId: undefined,
+  name: undefined,
+  sort: undefined,
+  status: CommonStatusEnum.ENABLE,
+  remark: undefined,
+})
+const formRules = reactive<FormRules>({
+  parentId: [{ required: true, message: '上级资料分类不能为空', trigger: 'blur' }],
+  name: [{ required: true, message: '资料分类名称不能为空', trigger: 'blur' }],
+  sort: [{ required: true, message: '显示排序不能为空', trigger: 'blur' }],
+  status: [{ required: true, message: '状态不能为空', trigger: 'blur' }]
+})
+const formRef = ref() // 表单 Ref
+const deptTree = ref() // 树形结构
+
+/** 打开弹窗 */
+const open = async (type: string, id?: number) => {
+  dialogVisible.value = true
+  dialogTitle.value = t('action.' + type)
+  formType.value = type
+  resetForm()
+  // 修改时,设置数据
+  if (id) {
+    formLoading.value = true
+    try {
+      formData.value = await InfoClassifyApi.IotInfoClassifyApi.getIotInfoClassify(id)
+    } finally {
+      formLoading.value = false
+    }
+  }
+  // 获得用户列表
+  //userList.value = await UserApi.getSimpleUserList()
+  // 获得资料分类树
+  await getTree()
+}
+defineExpose({ open }) // 提供 open 方法,用于打开弹窗
+
+/** 提交表单 */
+const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
+const submitForm = async () => {
+  // 校验表单
+  if (!formRef) return
+  const valid = await formRef.value.validate()
+  if (!valid) return
+  // 提交请求
+  formLoading.value = true
+  try {
+    const data = formData.value as unknown as InfoClassifyApi.IotInfoClassifyVO
+    if (formType.value === 'create') {
+      await InfoClassifyApi.IotInfoClassifyApi.createIotInfoClassify(data)
+      message.success(t('common.createSuccess'))
+    } else {
+      await InfoClassifyApi.IotInfoClassifyApi.updateIotInfoClassify(data)
+      message.success(t('common.updateSuccess'))
+    }
+    dialogVisible.value = false
+    // 发送操作成功的事件
+    emit('success')
+  } finally {
+    formLoading.value = false
+  }
+}
+
+/** 重置表单 */
+const resetForm = () => {
+  formData.value = {
+    id: undefined,
+    title: '',
+    parentId: undefined,
+    name: undefined,
+    sort: undefined,
+    leaderUserId: undefined,
+    phone: undefined,
+    email: undefined,
+    status: CommonStatusEnum.ENABLE
+  }
+  formRef.value?.resetFields()
+}
+
+/** 获得资料分类树 */
+const getTree = async () => {
+  deptTree.value = []
+  const data = await InfoClassifyApi.IotInfoClassifyApi.getSimpleInfoClassifyList()
+  let dept: Tree = { id: 0, name: '顶级资料分类', children: [] }
+  dept.children = handleTree(data)
+  deptTree.value.push(dept)
+}
+</script>

+ 185 - 0
src/views/pms/info/index.vue

@@ -0,0 +1,185 @@
+<template>
+  <!-- 搜索工作栏 -->
+  <ContentWrap>
+    <el-form
+      class="-mb-15px"
+      :model="queryParams"
+      ref="queryFormRef"
+      :inline="true"
+      label-width="68px"
+    >
+      <el-form-item label="资料分类名称" label-width="100px" prop="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入资料分类名称"
+          clearable
+          @keyup.enter="handleQuery"
+          class="!w-240px"
+        />
+      </el-form-item>
+      <el-form-item label="资料分类状态" label-width="100px" prop="status">
+        <el-select
+          v-model="queryParams.status"
+          placeholder="请选择资料分类状态"
+          clearable
+          class="!w-240px"
+        >
+          <el-option
+            v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
+            :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')"
+          v-hasPermi="['iot:product-classify:create']"
+        >
+          <Icon icon="ep:plus" class="mr-5px" /> 新增
+        </el-button>
+        <el-button type="danger" plain @click="toggleExpandAll">
+          <Icon icon="ep:sort" class="mr-5px" /> 展开/折叠
+        </el-button>
+      </el-form-item>
+    </el-form>
+  </ContentWrap>
+
+  <!-- 列表 -->
+  <ContentWrap>
+    <el-table
+      v-loading="loading"
+      :data="list"
+      row-key="id"
+      :default-expand-all="isExpandAll"
+      v-if="refreshTable"
+    >
+      <el-table-column prop="name" label="资料分类名称" />
+      <el-table-column prop="sort" label="排序" />
+      <el-table-column prop="status" label="状态">
+        <template #default="scope">
+          <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
+        </template>
+      </el-table-column>
+      <el-table-column prop="remark" label="备注" />
+      <el-table-column
+        label="创建时间"
+        align="center"
+        prop="createTime"
+        width="180"
+        :formatter="dateFormatter"
+      />
+      <el-table-column label="操作" align="center">
+        <template #default="scope">
+          <el-button
+            link
+            type="primary"
+            @click="openForm('update', scope.row.id)"
+            v-hasPermi="['iot:product-classify:update']"
+          >
+            修改
+          </el-button>
+          <el-button
+            link
+            type="danger"
+            @click="handleDelete(scope.row.id)"
+            v-hasPermi="['iot:product-classify:delete']"
+          >
+            删除
+          </el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+  </ContentWrap>
+
+  <!-- 表单弹窗:添加/修改 -->
+  <InfoClassifyForm ref="formRef" @success="getList" />
+</template>
+<script lang="ts" setup>
+import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
+import { dateFormatter } from '@/utils/formatTime'
+import { handleTree } from '@/utils/tree'
+import * as InfoClassifyApi from '@/api/pms/info'
+import InfoClassifyForm from './InfoClassifyForm.vue'
+
+defineOptions({ name: 'IotInfoClassify' })
+
+const message = useMessage() // 消息弹窗
+const { t } = useI18n() // 国际化
+
+const loading = ref(true) // 列表的加载中
+const list = ref() // 列表的数据
+const queryParams = reactive({
+  pageNo: 1,
+  pageSize: 100,
+  name: undefined,
+  status: undefined
+})
+const queryFormRef = ref() // 搜索的表单
+const isExpandAll = ref(true) // 是否展开,默认全部展开
+const refreshTable = ref(true) // 重新渲染表格状态
+// const userList = ref<UserApi.UserVO[]>([]) // 用户列表
+
+/** 查询资料分类列表 */
+const getList = async () => {
+  loading.value = true
+  try {
+    const data = await InfoClassifyApi.IotInfoClassifyApi.getIotInfoClassifyPage(queryParams)
+    list.value = handleTree(data)
+  } finally {
+    loading.value = false
+  }
+}
+
+/** 展开/折叠操作 */
+const toggleExpandAll = () => {
+  refreshTable.value = false
+  isExpandAll.value = !isExpandAll.value
+  nextTick(() => {
+    refreshTable.value = true
+  })
+}
+
+/** 搜索按钮操作 */
+const handleQuery = () => {
+  getList()
+}
+
+/** 重置按钮操作 */
+const resetQuery = () => {
+  queryParams.pageNo = 1
+  queryFormRef.value.resetFields()
+  handleQuery()
+}
+
+/** 添加/修改操作 */
+const formRef = ref()
+const openForm = (type: string, id?: number) => {
+  formRef.value.open(type, id)
+}
+
+/** 删除按钮操作 */
+const handleDelete = async (id: number) => {
+  try {
+    // 删除的二次确认
+    await message.delConfirm()
+    // 发起删除
+    await InfoClassifyApi.IotInfoClassifyApi.deleteIotInfoClassify(id)
+    message.success(t('common.delSuccess'))
+    // 刷新列表
+    await getList()
+  } catch {}
+}
+
+/** 初始化 **/
+onMounted(async () => {
+  await getList()
+  // 获取用户列表
+  //userList.value = await UserApi.getSimpleUserList()
+})
+</script>

+ 1 - 4
src/views/pms/productclassify/ProductClassifyForm.vue

@@ -66,13 +66,10 @@ const formLoading = ref(false) // 表单的加载中:1)修改时的数据加
 const formType = ref('') // 表单的类型:create - 新增;update - 修改
 const formData = ref({
   id: undefined,
-  title: '',
+  code: undefined,
   parentId: undefined,
   name: undefined,
   sort: undefined,
-  leaderUserId: undefined,
-  phone: undefined,
-  email: undefined,
   status: CommonStatusEnum.ENABLE
 })
 const formRules = reactive<FormRules>({