Bladeren bron

feat: 预处理页面

wanggaokun 11 maanden geleden
bovenliggende
commit
2bc055dc88
2 gewijzigde bestanden met toevoegingen van 308 en 84 verwijderingen
  1. 98 84
      src/views/als/preProcessing/index.vue
  2. 210 0
      src/views/als/preProcessingResult/index.vue

+ 98 - 84
src/views/als/preProcessing/index.vue

@@ -1,121 +1,125 @@
 <template>
-  <div class="table-box">
-    <ProTable ref="proTable" :columns="columns" row-key="id" :request-api="listPreProcessingApi">
-      <!-- 表格 header 按钮 -->
-      <template #tableHeader="scope">
-        <el-button type="primary" v-auth="['als:preProcessing:add']" icon="CirclePlus" @click="openDialog(1, '预处理新增')"> 新增 </el-button>
-        <el-button type="primary" v-auth="['als:preProcessing:export']" icon="Download" plain @click="downloadFile"> 导出 </el-button>
-        <el-button
-          type="danger"
-          v-auth="['als:preProcessing: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="['als:preProcessing:query']" @click="openDialog(3, '预处理查看', scope.row)">
-          查看
-        </el-button>
-        <el-button type="primary" link icon="EditPen" v-auth="['als:preProcessing:edit']" @click="openDialog(2, '预处理编辑', scope.row)">
-          编辑
-        </el-button>
-        <el-button type="primary" link icon="Delete" v-auth="['als:preProcessing:remove']" @click="deletePreProcessing(scope.row)"> 删除 </el-button>
-      </template>
-    </ProTable>
-    <FormDialog ref="formDialogRef" :items-options="itemsOptions" :model="model" />
-    <TaskDialog ref="taskDialogRef" />
+  <div class="main-box">
+    <TreeFilter title="机型机号" :is-all="false" :data="treeFilterData" :default-value="'0'" @change="changeTreeFilter" />
+    <div class="table-box">
+      <ProTable ref="proTable" :columns="columns" row-key="id" :request-api="listDataImportApi" :init-param="initParam">
+        <!-- 表格 header 按钮 -->
+        <template #tableHeader="scope">
+          <el-button
+            type="primary"
+            :disabled="!scope.radio"
+            v-auth="['als:preProcessing:add']"
+            icon="CirclePlus"
+            @click="openDialog(1, '预处理新增', scope)"
+          >
+            预处理
+          </el-button>
+        </template>
+        <!-- 表格操作 -->
+        <template #operation="scope">
+          <el-button type="primary" link icon="View" v-auth="['als:preProcessing:query']" @click="openDialog(3, '预处理查看', scope.row)">
+            查看
+          </el-button>
+        </template>
+      </ProTable>
+      <FormDialog ref="formDialogRef" :items-options="itemsOptions" :model="model" />
+    </div>
   </div>
 </template>
 
 <script setup lang="tsx" name="PreProcessing">
-import { useHandleData } from '@/hooks/useHandleData'
-import { ElMessageBox } from 'element-plus'
-import TaskDialog from '@/components/TaskDialog/index.vue'
 import FormDialog from '@/components/FormDialog/index.vue'
 import { ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
-import {
-  listPreProcessingApi,
-  delPreProcessingApi,
-  addPreProcessingApi,
-  updatePreProcessingApi,
-  exportPreProcessingApi,
-  getPreProcessingApi
-} from '@/api/modules/als/preProcessing'
+import { listDataImportApi, getDataImportApi } from '@/api/modules/als/dataImport'
+import { treeSelectApi } from '@/api/modules/als/aircraft'
 const { proxy } = getCurrentInstance() as ComponentInternalInstance
-const { sys_common_status } = toRefs<any>(proxy?.useDict('sys_common_status'))
-
+const { sys_common_status, common_type } = toRefs<any>(proxy?.useDict('sys_common_status', 'common_type'))
+onMounted(() => {
+  getTreeFilter()
+})
 // ProTable 实例
 const proTable = ref<ProTableInstance>()
 // 表单model
 const model = ref({})
-// 删除预处理信息
-const deletePreProcessing = async (params: any) => {
-  await useHandleData(delPreProcessingApi, params.id, '删除【' + params.id + '】预处理')
-  proTable.value?.getTableList()
-}
 
-// 批量删除预处理信息
-const batchDelete = async (ids: string[]) => {
-  await useHandleData(delPreProcessingApi, ids, '删除所选预处理信息')
-  proTable.value?.clearSelection()
-  proTable.value?.getTableList()
+let initParam = reactive({ aircraftId: '' })
+let treeFilterData = ref<any>([])
+let treeOptions = ref<any>([])
+const getTreeFilter = async () => {
+  const { data } = await treeSelectApi()
+  treeOptions.value = data
+  treeFilterData.value.push({
+    id: '0',
+    label: '所有机型',
+    parentId: '',
+    children: data
+  })
 }
 
-const taskDialogRef = ref<InstanceType<typeof TaskDialog> | null>(null)
-// 导出预处理列表
-const downloadFile = async () => {
-  ElMessageBox.confirm('确认导出预处理数据?', '温馨提示', { type: 'warning' }).then(async () => {
-    exportPreProcessingApi(proTable.value?.searchParam)
-    taskDialogRef.value?.openExportDialog()
-  })
+// 树形筛选切换
+const changeTreeFilter = (val: string) => {
+  proTable.value!.pageable.pageNum = 1
+  initParam.aircraftId = val === '0' ? '' : val
 }
 
 const formDialogRef = ref<InstanceType<typeof FormDialog> | null>(null)
 // 打开弹框的功能
 const openDialog = async (type: number, title: string, row?: any) => {
+  // 单选时的Id
+  // proTable.value?.radio
   let res = { data: {} }
   if (row?.id) {
-    res = await getPreProcessingApi(row?.id || null)
+    res = await getDataImportApi(row?.id || null)
   }
-  model.value = type == 1 ? {} : res.data
+  model.value = res.data
   // 重置表单
   setItemsOptions()
   const params = {
     title,
     width: 580,
-    isEdit: type !== 3,
-    api: type == 1 ? addPreProcessingApi : updatePreProcessingApi,
-    getTableList: proTable.value?.getTableList
+    isEdit: type !== 3
   }
   formDialogRef.value?.openDialog(params)
 }
 
 // 表格配置项
 const columns = reactive<ColumnProps<any>[]>([
-  { type: 'selection', fixed: 'left', width: 70 },
-  { prop: 'id', label: '编号' },
+  { type: 'radio', fixed: 'left', width: 70 },
+  {
+    prop: 'ossId',
+    label: '文件编号',
+    width: 120
+  },
+  {
+    prop: 'source',
+    label: '数据源',
+    tag: true,
+    enum: common_type,
+    search: {
+      el: 'select'
+    }
+  },
   {
     prop: 'sortieNo',
     label: '架次号',
     search: {
       el: 'input'
-    }
+    },
+    width: 120
   },
   {
     prop: 'aircraftNo',
     label: '机号',
-    search: {
-      el: 'input'
-    }
+    width: 120
   },
   {
-    prop: 'ossId',
-    label: '文件编号'
+    prop: 'flightDate',
+    label: '飞行日期',
+    search: {
+      el: 'date-picker',
+      props: { type: 'date', valueFormat: 'YYYY-MM-DD' }
+    },
+    width: 120
   },
   {
     prop: 'status',
@@ -153,28 +157,38 @@ let itemsOptions = reactive<ProForm.ItemsOptions[]>([])
 const setItemsOptions = () => {
   itemsOptions = [
     {
-      label: '架次号',
-      prop: 'sortieNo',
-      rules: [{ required: true, message: '架次号不能为空', trigger: 'blur' }],
+      label: '数据源',
+      prop: 'source',
+      rules: [{ required: true, message: '数据源不能为空', trigger: 'change' }],
       compOptions: {
-        placeholder: '请输入架次号'
+        elTagName: 'select',
+        enum: common_type.value,
+        placeholder: '请选择数据源'
       }
     },
     {
       label: '机号',
-      prop: 'aircraftNo',
-      rules: [{ required: true, message: '机号不能为空', trigger: 'blur' }],
+      prop: 'aircraftId',
+      rules: [{ required: true, message: '机号不能为空', trigger: 'change' }],
       compOptions: {
-        placeholder: '请输入机号'
+        elTagName: 'tree-select',
+        enum: treeOptions.value,
+        valueKey: 'id',
+        placeholder: '请选择机号'
       }
     },
     {
-      label: '文件',
+      label: '架次号',
+      prop: 'sortieNo',
+      compOptions: {
+        placeholder: '请输入架次号'
+      }
+    },
+    {
+      label: '数据导入',
       prop: 'ossId',
-      rules: [{ required: true, message: '文件Id不能为空', trigger: 'blur' }],
       compOptions: {
-        elTagName: 'file-upload-s3',
-        placeholder: '请输入文件Id'
+        placeholder: '请输入机号'
       }
     }
   ]

+ 210 - 0
src/views/als/preProcessingResult/index.vue

@@ -0,0 +1,210 @@
+<template>
+  <div class="main-box">
+    <TreeFilter title="机型机号" :is-all="false" :data="treeFilterData" :default-value="'0'" @change="changeTreeFilter" />
+    <div class="table-box">
+      <ProTable ref="proTable" :columns="columns" row-key="id" :request-api="listPreProcessingApi">
+        <!-- 表格 header 按钮 -->
+        <template #tableHeader="scope">
+          <el-button type="primary" v-auth="['als:preProcessing:add']" icon="CirclePlus" @click="openDialog(1, '预处理新增')"> 新增 </el-button>
+          <el-button type="primary" v-auth="['als:preProcessing:export']" icon="Download" plain @click="downloadFile"> 导出 </el-button>
+          <el-button
+            type="danger"
+            v-auth="['als:preProcessing: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="['als:preProcessing:query']" @click="openDialog(3, '预处理查看', scope.row)">
+            查看
+          </el-button>
+          <el-button type="primary" link icon="EditPen" v-auth="['als:preProcessing:edit']" @click="openDialog(2, '预处理编辑', scope.row)">
+            编辑
+          </el-button>
+          <el-button type="primary" link icon="Delete" v-auth="['als:preProcessing:remove']" @click="deletePreProcessing(scope.row)">
+            删除
+          </el-button>
+        </template>
+      </ProTable>
+      <FormDialog ref="formDialogRef" :items-options="itemsOptions" :model="model" />
+      <TaskDialog ref="taskDialogRef" />
+    </div>
+  </div>
+</template>
+
+<script setup lang="tsx" name="PreProcessing">
+import { useHandleData } from '@/hooks/useHandleData'
+import { ElMessageBox } from 'element-plus'
+import TaskDialog from '@/components/TaskDialog/index.vue'
+import FormDialog from '@/components/FormDialog/index.vue'
+import { ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
+import {
+  listPreProcessingApi,
+  delPreProcessingApi,
+  addPreProcessingApi,
+  updatePreProcessingApi,
+  exportPreProcessingApi,
+  getPreProcessingApi
+} from '@/api/modules/als/preProcessing'
+import { treeSelectApi } from '@/api/modules/als/aircraft'
+const { proxy } = getCurrentInstance() as ComponentInternalInstance
+const { sys_common_status } = toRefs<any>(proxy?.useDict('sys_common_status'))
+onMounted(() => {
+  getTreeFilter()
+})
+// ProTable 实例
+const proTable = ref<ProTableInstance>()
+// 表单model
+const model = ref({})
+
+let initParam = reactive({ aircraftId: '' })
+let treeFilterData = ref<any>([])
+let treeOptions = ref<any>([])
+const getTreeFilter = async () => {
+  const { data } = await treeSelectApi()
+  treeOptions.value = data
+  treeFilterData.value.push({
+    id: '0',
+    label: '所有机型',
+    parentId: '',
+    children: data
+  })
+}
+
+// 树形筛选切换
+const changeTreeFilter = (val: string) => {
+  proTable.value!.pageable.pageNum = 1
+  initParam.aircraftId = val === '0' ? '' : val
+}
+// 删除预处理信息
+const deletePreProcessing = async (params: any) => {
+  await useHandleData(delPreProcessingApi, params.id, '删除【' + params.id + '】预处理')
+  proTable.value?.getTableList()
+}
+
+// 批量删除预处理信息
+const batchDelete = async (ids: string[]) => {
+  await useHandleData(delPreProcessingApi, ids, '删除所选预处理信息')
+  proTable.value?.clearSelection()
+  proTable.value?.getTableList()
+}
+
+const taskDialogRef = ref<InstanceType<typeof TaskDialog> | null>(null)
+// 导出预处理列表
+const downloadFile = async () => {
+  ElMessageBox.confirm('确认导出预处理数据?', '温馨提示', { type: 'warning' }).then(async () => {
+    exportPreProcessingApi(proTable.value?.searchParam)
+    taskDialogRef.value?.openExportDialog()
+  })
+}
+
+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 getPreProcessingApi(row?.id || null)
+  }
+  model.value = type == 1 ? {} : res.data
+  // 重置表单
+  setItemsOptions()
+  const params = {
+    title,
+    width: 580,
+    isEdit: type !== 3,
+    api: type == 1 ? addPreProcessingApi : updatePreProcessingApi,
+    getTableList: proTable.value?.getTableList
+  }
+  formDialogRef.value?.openDialog(params)
+}
+
+// 表格配置项
+const columns = reactive<ColumnProps<any>[]>([
+  { type: 'selection', fixed: 'left', width: 70 },
+  { prop: 'id', label: '编号' },
+  {
+    prop: 'sortieNo',
+    label: '架次号',
+    search: {
+      el: 'input'
+    }
+  },
+  {
+    prop: 'aircraftNo',
+    label: '机号',
+    search: {
+      el: 'input'
+    }
+  },
+  {
+    prop: 'ossId',
+    label: '文件编号'
+  },
+  {
+    prop: 'status',
+    label: '状态',
+    tag: true,
+    enum: sys_common_status,
+    search: {
+      el: 'tree-select'
+    }
+  },
+  {
+    prop: 'createByName',
+    label: '创建人',
+    width: 120
+  },
+  {
+    prop: 'createTime',
+    label: '创建时间',
+    width: 120
+  },
+  {
+    prop: 'updateByName',
+    label: '更新人',
+    width: 120
+  },
+  {
+    prop: 'updateTime',
+    label: '更新时间',
+    width: 120
+  },
+  { prop: 'operation', label: '操作', width: 230, fixed: 'right' }
+])
+// 表单配置项
+let itemsOptions = reactive<ProForm.ItemsOptions[]>([])
+const setItemsOptions = () => {
+  itemsOptions = [
+    {
+      label: '架次号',
+      prop: 'sortieNo',
+      rules: [{ required: true, message: '架次号不能为空', trigger: 'blur' }],
+      compOptions: {
+        placeholder: '请输入架次号'
+      }
+    },
+    {
+      label: '机号',
+      prop: 'aircraftNo',
+      rules: [{ required: true, message: '机号不能为空', trigger: 'blur' }],
+      compOptions: {
+        placeholder: '请输入机号'
+      }
+    },
+    {
+      label: '文件',
+      prop: 'ossId',
+      rules: [{ required: true, message: '文件Id不能为空', trigger: 'blur' }],
+      compOptions: {
+        elTagName: 'file-upload-s3',
+        placeholder: '请输入文件Id'
+      }
+    }
+  ]
+}
+</script>