ソースを参照

feat: 添加警告列表

wanggaokun 10 ヶ月 前
コミット
0a680897ea
2 ファイル変更276 行追加0 行削除
  1. 70 0
      src/api/modules/manage/warning.ts
  2. 206 0
      src/views/manage/warning/index.vue

+ 70 - 0
src/api/modules/manage/warning.ts

@@ -0,0 +1,70 @@
+import http from '@/api'
+
+/**
+ * @name 查询警告信息列表
+ * @param query 参数
+ * @returns 返回列表
+ */
+export const listWarningApi = (query: any) => {
+  return http.get<any>('/manage/warning/list', query, { loading: true })
+}
+
+/**
+ * @name 查询警告信息详细
+ * @param id id
+ * @returns returns
+ */
+export const getWarningApi = (id: any) => {
+  return http.get<any>(`/manage/warning/${id}`)
+}
+
+/**
+ * @name 新增警告信息
+ * @param data data
+ * @returns returns
+ */
+export const addWarningApi = (data: any) => {
+  return http.post<any>('/manage/warning', data, { loading: false })
+}
+
+/**
+ * @name 修改警告信息
+ * @param data data
+ * @returns returns
+ */
+export const updateWarningApi = (data: any) => {
+  return http.put<any>('/manage/warning', data, { loading: false })
+}
+
+/**
+ * @name 删除警告信息
+ * @param id id
+ * @returns returns
+ */
+export const delWarningApi = (id: any) => {
+  return http.delete<any>(`/manage/warning/${id}`)
+}
+
+/**
+ * @name 下载模板
+ * @returns returns
+ */
+export const importTemplateApi = () => {
+  return http.downloadPost('/manage/warning/importTemplate', {})
+}
+
+/**
+ * @name 导入数据
+ * @returns returns
+ */
+export const importWarningDataApi = (data: any) => {
+  return http.post('/manage/warning/importData', data)
+}
+
+/**
+ * @name 导出数据
+ * @returns returns
+ */
+export const exportWarningApi = (data: any) => {
+  return http.downloadPost('/manage/warning/export', data)
+}

+ 206 - 0
src/views/manage/warning/index.vue

@@ -0,0 +1,206 @@
+<template>
+  <div class="table-box">
+    <ProTable ref="proTable" :columns="columns" row-key="id" :request-api="listWarningApi">
+      <!-- 表格 header 按钮 -->
+      <template #tableHeader="scope">
+        <el-button type="primary" v-auth="['manage:warning:add']" :icon="CirclePlus" @click="openDialog(1, '警告信息新增')"> 新增 </el-button>
+        <el-button type="primary" v-auth="['manage:warning:import']" :icon="Upload" plain @click="batchAdd"> 导入 </el-button>
+        <el-button type="primary" v-auth="['manage:warning:export']" :icon="Download" plain @click="downloadFile"> 导出 </el-button>
+        <el-button
+          type="danger"
+          v-auth="['manage:warning:remove']"
+          :icon="Delete"
+          plain
+          :disabled="!scope.isSelected"
+          @click="batchDelete(scope.selectedListIds)"
+        >
+          批量删除
+        </el-button>
+      </template>
+      <!-- 表格操作 -->
+      <template #operation="scope">
+        <el-button type="primary" link :icon="View" v-auth="['manage:warning:query']" @click="openDialog(3, '警告信息查看', scope.row)">
+          查看
+        </el-button>
+        <el-button type="primary" link :icon="EditPen" v-auth="['manage:warning:edit']" @click="openDialog(2, '警告信息编辑', scope.row)">
+          编辑
+        </el-button>
+        <el-button type="primary" link :icon="Delete" v-auth="['manage:warning:remove']" @click="deleteWarning(scope.row)"> 删除 </el-button>
+      </template>
+    </ProTable>
+    <FormDialog ref="formDialogRef" />
+    <ImportExcel ref="dialogRef" />
+  </div>
+</template>
+
+<script setup lang="tsx" name="Warning">
+import { ref, reactive } from 'vue'
+import { useHandleData } from '@/hooks/useHandleData'
+import { useDownload } from '@/hooks/useDownload'
+import { ElMessageBox } from 'element-plus'
+import ProTable from '@/components/ProTable/index.vue'
+import ImportExcel from '@/components/ImportExcel/index.vue'
+import FormDialog from '@/components/FormDialog/index.vue'
+import { ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
+import { Delete, EditPen, Download, Upload, View, CirclePlus } from '@element-plus/icons-vue'
+import {
+  listWarningApi,
+  delWarningApi,
+  addWarningApi,
+  updateWarningApi,
+  importTemplateApi,
+  importWarningDataApi,
+  exportWarningApi,
+  getWarningApi
+} from '@/api/modules/manage/warning'
+// import { getDictsApi } from '@/api/modules/system/dictData'
+
+// ProTable 实例
+const proTable = ref<ProTableInstance>()
+
+// 删除警告信息信息
+const deleteWarning = async (params: any) => {
+  await useHandleData(delWarningApi, params.id, `删除【params.id】警告信息`)
+  proTable.value?.getTableList()
+}
+
+// 批量删除警告信息信息
+const batchDelete = async (ids: string[]) => {
+  await useHandleData(delWarningApi, ids, '删除所选警告信息信息')
+  proTable.value?.clearSelection()
+  proTable.value?.getTableList()
+}
+
+// 导出警告信息列表
+const downloadFile = async () => {
+  ElMessageBox.confirm('确认导出警告信息数据?', '温馨提示', { type: 'warning' }).then(() =>
+    useDownload(exportWarningApi, '警告信息列表', proTable.value?.searchParam)
+  )
+}
+
+// 批量添加警告信息
+const dialogRef = ref<InstanceType<typeof ImportExcel> | null>(null)
+const batchAdd = () => {
+  const params = {
+    title: '警告信息',
+    tempApi: importTemplateApi,
+    importApi: importWarningDataApi,
+    getTableList: proTable.value?.getTableList
+  }
+  dialogRef.value?.acceptParams(params)
+}
+
+const formDialogRef = ref<InstanceType<typeof FormDialog> | null>(null)
+// 打开弹框的功能
+const openDialog = async (type: number, title: string, row?: any) => {
+  let res = { data: {} }
+  if (row?.id) {
+    res = await getWarningApi(row?.id || null)
+  }
+  // 重置表单
+  setItemsOptions()
+  const params = {
+    title,
+    width: 580,
+    isEdit: type !== 3,
+    itemsOptions: itemsOptions,
+    model: type == 1 ? {} : res.data,
+    api: type == 1 ? addWarningApi : updateWarningApi,
+    getTableList: proTable.value?.getTableList
+  }
+  formDialogRef.value?.openDialog(params)
+}
+
+// 表格配置项
+const columns = reactive<ColumnProps<any>[]>([
+  { type: 'selection', fixed: 'left', width: 70 },
+  {
+    prop: 'sortieNo',
+    label: '架次号',
+    search: {
+      el: 'input'
+    }
+  },
+  {
+    prop: 'aircraftId',
+    label: '机号',
+    search: {
+      el: 'input'
+    }
+  },
+  {
+    prop: 'code',
+    label: '警告代码',
+    search: {
+      el: 'input'
+    }
+  },
+  {
+    prop: 'name',
+    label: '警告名称',
+    search: {
+      el: 'input'
+    }
+  },
+  {
+    prop: 'describe',
+    label: '警告描述',
+    search: {
+      el: 'input'
+    }
+  },
+  { prop: 'operation', label: '操作', width: 230, fixed: 'right' }
+])
+// 表单配置项
+let itemsOptions: ProForm.ItemsOptions[] = []
+const setItemsOptions = () => {
+  itemsOptions = [
+    {
+      label: '架次号',
+      prop: 'sortieNo',
+      compOptions: {
+        placeholder: '请输入架次号'
+      }
+    },
+    {
+      label: '机号',
+      prop: 'aircraftId',
+      compOptions: {
+        placeholder: '请输入机号'
+      }
+    },
+    {
+      label: '警告代码',
+      prop: 'code',
+      compOptions: {
+        placeholder: '请输入警告代码'
+      }
+    },
+    {
+      label: '警告名称',
+      prop: 'name',
+      compOptions: {
+        placeholder: '请输入警告名称'
+      }
+    },
+    {
+      label: '警告描述',
+      prop: 'describe',
+      compOptions: {
+        placeholder: '请输入警告描述'
+      }
+    }
+    // {
+    //   label: '是否虚警',
+    //   prop: 'status',
+    //   compOptions: {
+    //     elTagName: 'select',
+    //     labelKey: 'dictLabel',
+    //     valueKey: 'dictValue',
+    //     enum: () => getDictsApi('sys_normal_disable'),
+    //     placeholder: '请选择是否虚警'
+    //   }
+    // },
+  ]
+}
+</script>