chenrui  2 년 전
부모
커밋
65f89d6dc3

+ 46 - 14
src/views/BasicsData/airlineCompany/index.vue

@@ -9,10 +9,11 @@
         </template></Minheader
       >
       <DataTable
-        :state="state"
+        :tableHeader="state.list"
         :tableData="tableData"
-        @editDialog="editDialog"
-        @eleDialog="eleDialog"
+        :tableBtnGroup="tableBtnGroup"
+        :tableProperty="{ rowKey: 'ID' }"
+        @btnClick="btnClick"
       />
       <Dialog
         :flag="flag"
@@ -81,7 +82,7 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const flag = ref<Boolean>(false); //弹窗开关
@@ -135,6 +136,18 @@ const state = reactive({
   ],
   listLoading: true,
 });
+const tableBtnGroup = ref([
+  {
+    name: "编辑",
+    className: "editBtn",
+    param: 2,
+  },
+  {
+    name: "删除",
+    className: "delBtn",
+    param: 3,
+  },
+]);
 //新增
 const addForm = () => {
   msgTitle.value = "新增航司信息维护";
@@ -152,16 +165,35 @@ const resetForm = () => {
   tableForm.text = "";
 };
 //编辑
-const editDialog = (data) => {
-  msgTitle.value = "编辑航司信息维护";
-  flag.value = true;
-  type.value = "";
-  tableForm.name = data.name;
-  tableForm.china = data.china;
-  tableForm.englin = data.englin;
-  tableForm.two = data.two;
-  tableForm.three = data.three;
-  tableForm.text = data.text;
+// const editDialog = (data) => {
+//   msgTitle.value = "编辑航司信息维护";
+//   flag.value = true;
+//   type.value = "";
+//   tableForm.name = data.name;
+//   tableForm.china = data.china;
+//   tableForm.englin = data.englin;
+//   tableForm.two = data.two;
+//   tableForm.three = data.three;
+//   tableForm.text = data.text;
+// };
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑航司信息维护";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.china = index.china;
+    tableForm.englin = index.englin;
+    tableForm.two = index.two;
+    tableForm.three = index.three;
+    tableForm.text = index.text;
+  } else if (param === 3) {
+    msgTitle.value = "删除航司信息维护";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+  }
 };
 //删除
 const eleDialog = () => {

+ 32 - 18
src/views/BasicsData/airportCompany/index.vue

@@ -9,10 +9,11 @@
         </template></Minheader
       >
       <DataTable
-        :state="state"
+        :tableHeader="state.list"
         :tableData="tableData"
-        @editDialog="editDialog"
-        @eleDialog="eleDialog"
+        :tableBtnGroup="tableBtnGroup"
+        :tableProperty="{ rowKey: 'ID' }"
+        @btnClick="btnClick"
       />
       <Dialog
         :flag="flag"
@@ -72,7 +73,7 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const flag = ref<Boolean>(false); //弹窗开关
@@ -85,6 +86,18 @@ const tableForm = reactive({
   china: "",
   englin: "",
 }); //弹窗内容
+const tableBtnGroup = ref([
+  {
+    name: "编辑",
+    className: "editBtn",
+    param: 2,
+  },
+  {
+    name: "删除",
+    className: "delBtn",
+    param: 3,
+  },
+]);
 //列表
 const tableData = ref([
   {
@@ -125,20 +138,21 @@ const resetForm = () => {
   tableForm.china = "";
   tableForm.englin = "";
 };
-//编辑
-const editDialog = (data) => {
-  msgTitle.value = "编辑机场公司维护";
-  flag.value = true;
-  type.value = "";
-  tableForm.name = data.name;
-  tableForm.china = data.china;
-  tableForm.englin = data.englin;
-};
-//删除
-const eleDialog = () => {
-  msgTitle.value = "删除机场公司维护";
-  flag.value = true;
-  type.value = "del";
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑机场公司维护";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.china = index.china;
+    tableForm.englin = index.englin;
+  } else if (param === 3) {
+    msgTitle.value = "删除机场公司维护";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+  }
 };
 //删除
 const delRest = () => {

+ 47 - 9
src/views/BasicsData/airportInfo/airportInfoChild/index.vue

@@ -9,10 +9,11 @@
         </template></Minheader
       >
       <DataTable
+        :tableHeader="state.list"
+        :tableData="tableData"
         :tableBtnGroup="tableBtnGroup"
-        @editDialog="editDialog"
-        @eleDialog="eleDialog"
-        @aloneDialog="aloneDialog"
+        :tableProperty="{ rowKey: 'ID' }"
+        @btnClick="btnClick"
       />
       <Dialog
         :flag="flag"
@@ -53,7 +54,7 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const router = useRouter();
@@ -78,14 +79,28 @@ const tableBtnGroup = ref<Array>([
     param: 3,
   },
 ]); //单独的编辑
-const tableForm = reactive<Object>({
+const tableForm = reactive({
   name: "",
   china: "",
   englin: "",
-  two: "",
-  three: "",
-  text: "",
 }); //弹窗内容
+//列表
+const tableData = ref([
+  {
+    name: "1",
+    china: "t1",
+    englin: "CCA",
+  },
+]);
+//表头
+const state = reactive({
+  list: [
+    { label: "ID", key: "name" },
+    { label: "名称", key: "china" },
+    { label: "机场三字码", key: "englin" },
+  ],
+  listLoading: true,
+});
 //新增
 const addForm = () => {
   msgTitle.value = "新增航站楼";
@@ -95,12 +110,18 @@ const addForm = () => {
 //取消
 const resetForm = () => {
   flag.value = false;
+  tableForm.name = "";
+  tableForm.china = "";
+  tableForm.englin = "";
 };
 //编辑
-const editDialog = () => {
+const editDialog = (data) => {
   msgTitle.value = "编辑航站楼";
   flag.value = true;
   type.value = "";
+  tableForm.name = data.name;
+  tableForm.china = data.china;
+  tableForm.englin = data.englin;
 };
 //删除
 const eleDialog = () => {
@@ -116,6 +137,23 @@ const delRest = () => {
 const aloneDialog = () => {
   router.push({ path: "/BasicsData/positionSetting" });
 };
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑航站楼";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.china = index.china;
+    tableForm.englin = index.englin;
+  } else if (param === 3) {
+    msgTitle.value = "删除航站楼";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+    router.push({ path: "/BasicsData/positionSetting" });
+  }
+};
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {

+ 106 - 47
src/views/BasicsData/airportInfo/index.vue

@@ -20,10 +20,11 @@
         </el-col>
         <el-col :span="18">
           <DataTable
+            :tableHeader="state.list"
+            :tableData="tableData"
             :tableBtnGroup="tableBtnGroup"
-            @editDialog="editDialog"
-            @eleDialog="eleDialog"
-            @aloneDialog="aloneDialog"
+            :tableProperty="{ rowKey: 'ID' }"
+            @btnClick="btnClick"
           />
         </el-col>
       </el-row>
@@ -58,7 +59,7 @@
             <el-col :span="12">
               <el-form-item label="四字码">
                 <el-input
-                  v-model="tableForm.china"
+                  v-model="tableForm.englin"
                   placeholder="请输入四字码"
                 />
               </el-form-item>
@@ -66,7 +67,7 @@
             <el-col :span="12">
               <el-form-item label="中文简称">
                 <el-input
-                  v-model="tableForm.china"
+                  v-model="tableForm.two"
                   placeholder="请输入中文简称"
                 />
               </el-form-item>
@@ -74,14 +75,14 @@
             <el-col :span="12">
               <el-form-item label="英文简称">
                 <el-input
-                  v-model="tableForm.china"
+                  v-model="tableForm.three"
                   placeholder="请输入英文简称"
                 />
               </el-form-item>
             </el-col>
             <el-col :span="12">
               <el-form-item label="全称">
-                <el-input v-model="tableForm.china" placeholder="请输入全称" />
+                <el-input v-model="tableForm.text" placeholder="请输入全称" />
               </el-form-item>
             </el-col>
             <el-col :span="12">
@@ -89,7 +90,7 @@
                 <!-- <el-input v-model="tableForm.china" /> -->
                 <el-select
                   style="width: 100%"
-                  v-model="tableForm.china"
+                  v-model="tableForm.text1"
                   class="input-shadow"
                   size="small"
                   filterable
@@ -110,7 +111,7 @@
             <el-col :span="12">
               <el-form-item label="描述">
                 <el-input
-                  v-model="tableForm.text"
+                  v-model="tableForm.text2"
                   placeholder="请输入机场三字码"
                 />
               </el-form-item>
@@ -122,8 +123,7 @@
   </div>
 </template>
 <script setup lang="ts">
-import Minheader from "@/components/minheader/index.vue";
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const router = useRouter();
 const tableBtnGroup = ref<Array>([
@@ -148,61 +148,88 @@ const type = ref<String>(""); //判断是否删除
 const msgTitle = ref<String>("新增机场信息维护"); //弹窗标题
 const tableOptionser = ref<Array>([]); //弹窗下拉
 const tableColsCopys = reactive<Object>({}); //弹窗
-const tableForm = reactive<Object>({
+const tableForm = reactive({
   name: "",
   china: "",
   englin: "",
   two: "",
   three: "",
   text: "",
+  text1: "",
+  text2: "",
 }); //弹窗内容
+//列表
+const tableData = ref([
+  {
+    name: "成都双流机场",
+    china: "CTU",
+    englin: "ZUUU",
+    two: "",
+    three: "CHENGDU",
+    text: "成都双流机场",
+    text1: "",
+    text2: "西南分公司",
+  },
+  {
+    name: "成都双流机场",
+    china: "CTU",
+    englin: "ZUUU",
+    two: "",
+    three: "CHENGDU",
+    text: "成都双流机场",
+    text1: "",
+    text2: "西南分公司",
+  },
+  {
+    name: "成都双流机场",
+    china: "CTU",
+    englin: "ZUUU",
+    two: "",
+    three: "CHENGDU",
+    text: "成都双流机场",
+    text1: "",
+    text2: "西南分公司",
+  },
+]);
+//表头
+const state = reactive({
+  list: [
+    { label: "名称", key: "name", width: "100px" },
+    { label: "三字码", key: "china", width: "50px" },
+    { label: "四字码", key: "englin", width: "50px" },
+    { label: "中文简称", key: "two", width: "50px" },
+    { label: "英文简称", key: "three", width: "50px" },
+    { label: "全称", key: "text", width: "50px" },
+    { label: "时区", key: "text1", width: "50px" },
+    { label: "公司名称", key: "text2", width: "50px" },
+  ],
+  listLoading: true,
+});
 const company = ref("所属公司");
 const data2 = reactive([
   {
     id: 1,
-    label: "Level one 1",
+    label: "中国国际航空",
     children: [
       {
-        id: 4,
-        label: "Level two 1-1",
-        children: [
-          {
-            id: 9,
-            label: "Level three 1-1-1",
-          },
-          {
-            id: 10,
-            label: "Level three 1-1-2",
-          },
-        ],
+        id: 2,
+        label: "西南分公司",
       },
-    ],
-  },
-  {
-    id: 2,
-    label: "Level one 2",
-    children: [
       {
-        id: 5,
-        label: "Level two 2-1",
+        id: 3,
+        label: "浙江分公司",
       },
       {
-        id: 6,
-        label: "Level two 2-2",
+        id: 4,
+        label: "重庆分公司",
       },
-    ],
-  },
-  {
-    id: 3,
-    label: "Level one 3",
-    children: [
       {
-        id: 7,
-        label: "Level two 3-1",
+        id: 5,
+        label: "天津分公司",
       },
       {
-        id: 8,
-        label: "Level two 3-2",
+        id: 6,
+        label: "上海分公司",
       },
     ],
   },
@@ -218,10 +245,18 @@ const resetForm = () => {
   flag.value = false;
 };
 //编辑
-const editDialog = () => {
+const editDialog = (data) => {
   msgTitle.value = "编辑机场信息维护";
   flag.value = true;
   type.value = "";
+  tableForm.name = data.name;
+  tableForm.china = data.china;
+  tableForm.englin = data.englin;
+  tableForm.two = data.two;
+  tableForm.three = data.three;
+  tableForm.text = data.text;
+  tableForm.text1 = data.text1;
+  tableForm.text2 = data.text2;
 };
 //删除
 const eleDialog = () => {
@@ -237,8 +272,32 @@ const delRest = () => {
 const aloneDialog = () => {
   router.push({ path: "/BasicsData/airportInfoChild" });
 };
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑机场信息维护";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.china = index.china;
+    tableForm.englin = index.englin;
+    tableForm.two = index.two;
+    tableForm.three = index.three;
+    tableForm.text = index.text;
+    tableForm.text1 = index.text1;
+    tableForm.text2 = index.text2;
+  } else if (param === 3) {
+    msgTitle.value = "删除机场信息维护";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+    router.push({ path: "/BasicsData/airportInfoChild" });
+  }
+};
 //点击树事件
-const handleNodeClick = () => {};
+const handleNodeClick = (data) => {
+  company.value = data.label;
+};
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {

+ 86 - 6
src/views/BasicsData/airportInfo/positionSetting/index.vue

@@ -8,7 +8,13 @@
           </div>
         </template></Minheader
       >
-      <DataTable @editDialog="editDialog" @eleDialog="eleDialog" />
+      <DataTable
+        :tableHeader="state.list"
+        :tableData="tableData"
+        :tableBtnGroup="tableBtnGroup"
+        :tableProperty="{ rowKey: 'ID' }"
+        @btnClick="btnClick"
+      />
       <Dialog
         :flag="flag"
         :type="type"
@@ -55,7 +61,7 @@
                 <el-form-item label="位置描述">
                   <el-input
                     type="textarea"
-                    v-model="tableForm.text"
+                    v-model="tableForm.three"
                     placeholder="请输入位置描述"
                   />
                 </el-form-item>
@@ -68,21 +74,67 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const flag = ref<Boolean>(false); //弹窗开关
 const type = ref<String>(""); //判断是否删除
 const msgTitle = ref<String>("新增位置设置"); //弹窗标题
 const tableColsCopys = reactive<Object>({}); //弹窗
-const tableForm = reactive<Object>({
+const tableForm = reactive({
   name: "",
   china: "",
   englin: "",
   two: "",
   three: "",
-  text: "",
 }); //弹窗内容
+//列表
+const tableData = ref([
+  {
+    name: "测试",
+    china: "测试",
+    englin: "测试",
+    two: "测试",
+    three: "",
+  },
+  {
+    name: "测试",
+    china: "测试",
+    englin: "测试",
+    two: "测试",
+    three: "",
+  },
+  {
+    name: "测试",
+    china: "测试",
+    englin: "测试",
+    two: "测试",
+    three: "",
+  },
+]);
+//表头
+const state = reactive({
+  list: [
+    { label: "位置名称", key: "name" },
+    { label: "位置所属节点", key: "china" },
+    { label: "位置标识", key: "englin" },
+    { label: "位置编码", key: "two" },
+    { label: "位置描述", key: "three" },
+  ],
+  listLoading: true,
+});
+const tableBtnGroup = ref([
+  {
+    name: "编辑",
+    className: "editBtn",
+    param: 2,
+  },
+  {
+    name: "删除",
+    className: "delBtn",
+    param: 3,
+  },
+]);
 //新增
 const addForm = () => {
   msgTitle.value = "新增位置";
@@ -92,12 +144,22 @@ const addForm = () => {
 //取消
 const resetForm = () => {
   flag.value = false;
+  tableForm.name = "";
+  tableForm.china = "";
+  tableForm.englin = "";
+  tableForm.two = "";
+  tableForm.three = "";
 };
 //编辑
-const editDialog = () => {
+const editDialog = (data) => {
   msgTitle.value = "编辑位置";
   flag.value = true;
   type.value = "";
+  tableForm.name = data.name;
+  tableForm.china = data.china;
+  tableForm.englin = data.englin;
+  tableForm.two = data.two;
+  tableForm.three = data.three;
 };
 //删除
 const eleDialog = () => {
@@ -109,6 +171,24 @@ const eleDialog = () => {
 const delRest = () => {
   flag.value = false;
 };
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑位置";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.china = index.china;
+    tableForm.englin = index.englin;
+    tableForm.two = index.two;
+    tableForm.three = index.three;
+  } else if (param === 3) {
+    msgTitle.value = "删除位置";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+  }
+};
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {

+ 33 - 4
src/views/BasicsData/cargoInformation/index.vue

@@ -9,10 +9,11 @@
         </template></Minheader
       >
       <DataTable
-        :state="state"
+        :tableHeader="state.list"
         :tableData="tableData"
-        @editDialog="editDialog"
-        @eleDialog="eleDialog"
+        :tableBtnGroup="tableBtnGroup"
+        :tableProperty="{ rowKey: 'ID' }"
+        @btnClick="btnClick"
       />
       <Dialog
         :flag="flag"
@@ -57,7 +58,7 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const flag = ref<Boolean>(false); //弹窗开关
@@ -100,6 +101,18 @@ const state = reactive({
   ],
   listLoading: true,
 });
+const tableBtnGroup = ref([
+  {
+    name: "编辑",
+    className: "editBtn",
+    param: 2,
+  },
+  {
+    name: "删除",
+    className: "delBtn",
+    param: 3,
+  },
+]);
 //新增
 const addForm = () => {
   msgTitle.value = "新增货代管理";
@@ -132,6 +145,22 @@ const eleDialog = () => {
 const delRest = () => {
   flag.value = false;
 };
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑货代管理";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.china = index.china;
+    tableForm.two = index.two;
+  } else if (param === 3) {
+    msgTitle.value = "删除货代管理";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+  }
+};
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {

+ 33 - 4
src/views/BasicsData/containerMaintenance/index.vue

@@ -9,10 +9,11 @@
         </template></Minheader
       >
       <DataTable
-        :state="state"
+        :tableHeader="state.list"
         :tableData="tableData"
-        @editDialog="editDialog"
-        @eleDialog="eleDialog"
+        :tableBtnGroup="tableBtnGroup"
+        :tableProperty="{ rowKey: 'ID' }"
+        @btnClick="btnClick"
       />
       <Dialog
         :flag="flag"
@@ -57,7 +58,7 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const flag = ref<Boolean>(false); //弹窗开关
@@ -96,6 +97,18 @@ const state = reactive({
   ],
   listLoading: true,
 });
+const tableBtnGroup = ref([
+  {
+    name: "编辑",
+    className: "editBtn",
+    param: 2,
+  },
+  {
+    name: "删除",
+    className: "delBtn",
+    param: 3,
+  },
+]);
 //新增
 const addForm = () => {
   msgTitle.value = "新增容器维护";
@@ -128,6 +141,22 @@ const eleDialog = () => {
 const delRest = () => {
   flag.value = false;
 };
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑容器维护";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.china = index.china;
+    tableForm.englin = index.englin;
+  } else if (param === 3) {
+    msgTitle.value = "删除容器维护";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+  }
+};
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {

+ 33 - 4
src/views/BasicsData/deployNode/index.vue

@@ -9,10 +9,11 @@
         </template></Minheader
       >
       <DataTable
-        :state="state"
+        :tableHeader="state.list"
         :tableData="tableData"
-        @editDialog="editDialog"
-        @eleDialog="eleDialog"
+        :tableBtnGroup="tableBtnGroup"
+        :tableProperty="{ rowKey: 'ID' }"
+        @btnClick="btnClick"
       />
       <Dialog
         :flag="flag"
@@ -54,7 +55,7 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const flag = ref<Boolean>(false); //弹窗开关
@@ -97,6 +98,18 @@ const state = reactive({
   ],
   listLoading: true,
 });
+const tableBtnGroup = ref([
+  {
+    name: "编辑",
+    className: "editBtn",
+    param: 2,
+  },
+  {
+    name: "删除",
+    className: "delBtn",
+    param: 3,
+  },
+]);
 //新增
 const addForm = () => {
   msgTitle.value = "新增节点信息维护";
@@ -129,6 +142,22 @@ const eleDialog = () => {
 const delRest = () => {
   flag.value = false;
 };
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑节点信息维护";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.china = index.china;
+    tableForm.englin = index.englin;
+  } else if (param === 3) {
+    msgTitle.value = "删除节点信息维护";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+  }
+};
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {

+ 33 - 4
src/views/BasicsData/equipmentMaintenance/index.vue

@@ -9,10 +9,11 @@
         </template></Minheader
       >
       <DataTable
-        :state="state"
+        :tableHeader="state.list"
         :tableData="tableData"
-        @editDialog="editDialog"
-        @eleDialog="eleDialog"
+        :tableBtnGroup="tableBtnGroup"
+        :tableProperty="{ rowKey: 'ID' }"
+        @btnClick="btnClick"
       />
       <Dialog
         :flag="flag"
@@ -57,7 +58,7 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const flag = ref<Boolean>(false); //弹窗开关
@@ -108,6 +109,18 @@ const state = reactive({
   ],
   listLoading: true,
 });
+const tableBtnGroup = ref([
+  {
+    name: "编辑",
+    className: "editBtn",
+    param: 2,
+  },
+  {
+    name: "删除",
+    className: "delBtn",
+    param: 3,
+  },
+]);
 //新增
 const addForm = () => {
   msgTitle.value = "新增设备维护";
@@ -140,6 +153,22 @@ const eleDialog = () => {
 const delRest = () => {
   flag.value = false;
 };
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑设备维护";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.englin = index.englin;
+    tableForm.two = index.two;
+  } else if (param === 3) {
+    msgTitle.value = "删除设备维护";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+  }
+};
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {

+ 22 - 6
src/views/BasicsData/modelMaintenance/index.vue

@@ -9,12 +9,11 @@
         </template></Minheader
       >
       <DataTable
-        :tableBtnGroup="tableBtnGroup"
-        :state="state"
+        :tableHeader="state.list"
         :tableData="tableData"
-        @editDialog="editDialog"
-        @eleDialog="eleDialog"
-        @aloneDialog="aloneDialog"
+        :tableBtnGroup="tableBtnGroup"
+        :tableProperty="{ rowKey: 'ID' }"
+        @btnClick="btnClick"
       />
       <Dialog
         :flag="flag"
@@ -59,7 +58,7 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const router = useRouter();
@@ -155,6 +154,23 @@ const delRest = () => {
 const aloneDialog = () => {
   router.push({ path: "/BasicsData/shippingSpace" });
 };
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑机型维护";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.china = index.china;
+    tableForm.englin = index.englin;
+  } else if (param === 3) {
+    msgTitle.value = "删除机型维护";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+    router.push({ path: "/BasicsData/shippingSpace" });
+  }
+};
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {

+ 33 - 4
src/views/BasicsData/shippingSpace/index.vue

@@ -9,10 +9,11 @@
         </template></Minheader
       >
       <DataTable
-        :state="state"
+        :tableHeader="state.list"
         :tableData="tableData"
-        @editDialog="editDialog"
-        @eleDialog="eleDialog"
+        :tableBtnGroup="tableBtnGroup"
+        :tableProperty="{ rowKey: 'ID' }"
+        @btnClick="btnClick"
       />
       <Dialog
         :flag="flag"
@@ -54,7 +55,7 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const flag = ref<Boolean>(false); //弹窗开关
@@ -93,6 +94,18 @@ const state = reactive({
   ],
   listLoading: true,
 });
+const tableBtnGroup = ref([
+  {
+    name: "编辑",
+    className: "editBtn",
+    param: 2,
+  },
+  {
+    name: "删除",
+    className: "delBtn",
+    param: 3,
+  },
+]);
 //新增
 const addForm = () => {
   msgTitle.value = "新增舱位管理";
@@ -125,6 +138,22 @@ const eleDialog = () => {
 const delRest = () => {
   flag.value = false;
 };
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑舱位管理";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.china = index.china;
+    tableForm.englin = index.englin;
+  } else if (param === 3) {
+    msgTitle.value = "删除舱位管理";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+  }
+};
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {

+ 33 - 4
src/views/BasicsData/specialCargoMaintenance/index.vue

@@ -9,10 +9,11 @@
         </template></Minheader
       >
       <DataTable
-        :state="state"
+        :tableHeader="state.list"
         :tableData="tableData"
-        @editDialog="editDialog"
-        @eleDialog="eleDialog"
+        :tableBtnGroup="tableBtnGroup"
+        :tableProperty="{ rowKey: 'ID' }"
+        @btnClick="btnClick"
       />
       <Dialog
         :flag="flag"
@@ -57,7 +58,7 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from "@/views/table/index.vue";
+import DataTable from "@/components/tableTemp/index.vue";
 import Minheader from "@/components/minheader/index.vue";
 import Dialog from "@/components/dialog/index.vue";
 const flag = ref<Boolean>(false); //弹窗开关
@@ -96,6 +97,18 @@ const state = reactive({
   ],
   listLoading: true,
 });
+const tableBtnGroup = ref([
+  {
+    name: "编辑",
+    className: "editBtn",
+    param: 2,
+  },
+  {
+    name: "删除",
+    className: "delBtn",
+    param: 3,
+  },
+]);
 //新增
 const addForm = () => {
   msgTitle.value = "新增特殊货物类型维护";
@@ -128,6 +141,22 @@ const eleDialog = () => {
 const delRest = () => {
   flag.value = false;
 };
+//编辑-删除
+const btnClick = (row, index, param) => {
+  if (param === 2) {
+    msgTitle.value = "编辑特殊货物类型维护";
+    flag.value = true;
+    type.value = "";
+    tableForm.name = index.name;
+    tableForm.china = index.china;
+    tableForm.englin = index.englin;
+  } else if (param === 3) {
+    msgTitle.value = "删除特殊货物类型维护";
+    flag.value = true;
+    type.value = "del";
+  } else if (param === 4) {
+  }
+};
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {