|
@@ -0,0 +1,235 @@
|
|
|
+<template>
|
|
|
+ <div class="table-box">
|
|
|
+ <ProTable ref="proTable" :columns="columns" row-key="id" :request-api="listFlightSplitTaskApi">
|
|
|
+ <!-- 表格 header 按钮 -->
|
|
|
+ <template #tableHeader="scope">
|
|
|
+ <el-button type="primary" v-auth="['als:flightSplitTask:add']" icon="CirclePlus" @click="openDialog(1, '飞行分解任务新增')"> 新增 </el-button>
|
|
|
+ <el-button type="primary" v-auth="['als:flightSplitTask:import']" icon="Upload" plain @click="batchAdd"> 导入 </el-button>
|
|
|
+ <el-button type="primary" v-auth="['als:flightSplitTask:export']" icon="Download" plain @click="downloadFile"> 导出 </el-button>
|
|
|
+ <el-button
|
|
|
+ type="danger"
|
|
|
+ v-auth="['als:flightSplitTask: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:flightSplitTask:query']" @click="openDialog(3, '飞行分解任务查看', scope.row)">
|
|
|
+ 查看
|
|
|
+ </el-button>
|
|
|
+ <el-button type="primary" link icon="EditPen" v-auth="['als:flightSplitTask:edit']" @click="openDialog(2, '飞行分解任务编辑', scope.row)">
|
|
|
+ 编辑
|
|
|
+ </el-button>
|
|
|
+ <el-button type="primary" link icon="Delete" v-auth="['als:flightSplitTask:remove']" @click="deleteFlightSplitTask(scope.row)">
|
|
|
+ 删除
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ </ProTable>
|
|
|
+ <FormDialog ref="formDialogRef" :items-options="itemsOptions" :model="model" />
|
|
|
+ <ImportExcel ref="dialogRef" />
|
|
|
+ <TaskDialog ref="taskDialogRef" />
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup lang="tsx" name="FlightSplitTask">
|
|
|
+import { useHandleData } from '@/hooks/useHandleData'
|
|
|
+import { ElMessageBox } from 'element-plus'
|
|
|
+import ImportExcel from '@/components/ImportExcel/index.vue'
|
|
|
+import TaskDialog from '@/components/TaskDialog/index.vue'
|
|
|
+import FormDialog from '@/components/FormDialog/index.vue'
|
|
|
+import { ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
|
|
|
+import {
|
|
|
+ listFlightSplitTaskApi,
|
|
|
+ delFlightSplitTaskApi,
|
|
|
+ addFlightSplitTaskApi,
|
|
|
+ updateFlightSplitTaskApi,
|
|
|
+ importTemplateApi,
|
|
|
+ importFlightSplitTaskDataApi,
|
|
|
+ exportFlightSplitTaskApi,
|
|
|
+ getFlightSplitTaskApi
|
|
|
+} from '@/api/modules/als/flightSplitTask'
|
|
|
+
|
|
|
+// ProTable 实例
|
|
|
+const proTable = ref<ProTableInstance>()
|
|
|
+// 表单model
|
|
|
+const model = ref({})
|
|
|
+// 删除飞行分解任务信息
|
|
|
+const deleteFlightSplitTask = async (params: any) => {
|
|
|
+ await useHandleData(delFlightSplitTaskApi, params.id, '删除【' + params.id + '】飞行分解任务')
|
|
|
+ proTable.value?.getTableList()
|
|
|
+}
|
|
|
+
|
|
|
+// 批量删除飞行分解任务信息
|
|
|
+const batchDelete = async (ids: string[]) => {
|
|
|
+ await useHandleData(delFlightSplitTaskApi, ids, '删除所选飞行分解任务信息')
|
|
|
+ proTable.value?.clearSelection()
|
|
|
+ proTable.value?.getTableList()
|
|
|
+}
|
|
|
+
|
|
|
+const taskDialogRef = ref<InstanceType<typeof TaskDialog> | null>(null)
|
|
|
+// 导出飞行分解任务列表
|
|
|
+const downloadFile = async () => {
|
|
|
+ ElMessageBox.confirm('确认导出飞行分解任务数据?', '温馨提示', { type: 'warning' }).then(async () => {
|
|
|
+ exportFlightSplitTaskApi(proTable.value?.searchParam)
|
|
|
+ taskDialogRef.value?.openExportDialog()
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 批量添加飞行分解任务
|
|
|
+const dialogRef = ref<InstanceType<typeof ImportExcel> | null>(null)
|
|
|
+const batchAdd = () => {
|
|
|
+ const params = {
|
|
|
+ title: '飞行分解任务',
|
|
|
+ tempApi: importTemplateApi,
|
|
|
+ importApi: importFlightSplitTaskDataApi,
|
|
|
+ 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 getFlightSplitTaskApi(row?.id || null)
|
|
|
+ }
|
|
|
+ model.value = type == 1 ? {} : res.data
|
|
|
+ // 重置表单
|
|
|
+ setItemsOptions()
|
|
|
+ const params = {
|
|
|
+ title,
|
|
|
+ width: 580,
|
|
|
+ isEdit: type !== 3,
|
|
|
+ api: type == 1 ? addFlightSplitTaskApi : updateFlightSplitTaskApi,
|
|
|
+ getTableList: proTable.value?.getTableList
|
|
|
+ }
|
|
|
+ formDialogRef.value?.openDialog(params)
|
|
|
+}
|
|
|
+
|
|
|
+// 表格配置项
|
|
|
+const columns = reactive<ColumnProps<any>[]>([
|
|
|
+ { type: 'selection', fixed: 'left', width: 70 },
|
|
|
+ { prop: 'id', label: '编号' },
|
|
|
+ {
|
|
|
+ prop: 'aircraftModel',
|
|
|
+ label: '机型',
|
|
|
+ search: {
|
|
|
+ el: 'input'
|
|
|
+ },
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'aircraftGroup',
|
|
|
+ label: '机组',
|
|
|
+ search: {
|
|
|
+ el: 'input'
|
|
|
+ },
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'duration',
|
|
|
+ label: '时长',
|
|
|
+ search: {
|
|
|
+ el: 'input'
|
|
|
+ },
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'device',
|
|
|
+ label: '设备',
|
|
|
+ search: {
|
|
|
+ el: 'input'
|
|
|
+ },
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'deviceCount',
|
|
|
+ label: '数量',
|
|
|
+ search: {
|
|
|
+ el: 'input'
|
|
|
+ },
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'unit',
|
|
|
+ label: '单位',
|
|
|
+ search: {
|
|
|
+ el: 'input'
|
|
|
+ },
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'remark',
|
|
|
+ label: '备注',
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ { prop: 'operation', label: '操作', width: 230, fixed: 'right' }
|
|
|
+])
|
|
|
+// 表单配置项
|
|
|
+let itemsOptions = reactive<ProForm.ItemsOptions[]>([])
|
|
|
+const setItemsOptions = () => {
|
|
|
+ itemsOptions = [
|
|
|
+ {
|
|
|
+ label: '机型',
|
|
|
+ prop: 'aircraftModel',
|
|
|
+ rules: [{ required: true, message: '机型不能为空', trigger: 'blur' }],
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入机型'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '机组',
|
|
|
+ prop: 'aircraftGroup',
|
|
|
+ rules: [{ required: true, message: '机组不能为空', trigger: 'blur' }],
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入机组'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '时长',
|
|
|
+ prop: 'duration',
|
|
|
+ rules: [{ required: true, message: '时长不能为空', trigger: 'blur' }],
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入时长'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '设备',
|
|
|
+ prop: 'device',
|
|
|
+ rules: [{ required: true, message: '设备不能为空', trigger: 'blur' }],
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入设备'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '数量',
|
|
|
+ prop: 'deviceCount',
|
|
|
+ rules: [{ required: true, message: '数量不能为空', trigger: 'blur' }],
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入数量'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '单位',
|
|
|
+ prop: 'unit',
|
|
|
+ rules: [{ required: true, message: '单位不能为空', trigger: 'blur' }],
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入单位'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '备注',
|
|
|
+ prop: 'remark',
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入备注'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+}
|
|
|
+</script>
|