瀏覽代碼

基础数据2.0-货代信息

zhaoke 1 年之前
父節點
當前提交
e921e6ce2f

+ 1 - 1
public/config.js

@@ -466,4 +466,4 @@ var SERVICE_ID = {
   /***-----离港管理------***/
   departureScId: 8011, //发送报警预警日志信息
 }
-var NEW_SERVICE_ID = [55001, 65024, 65002, 65026, 65060, 65061];
+var NEW_SERVICE_ID = [55001, 65024, 65002, 65026, 65060, 65061, 65001, 65005, 65008, 65004, 65009, 65010, 65011, 65013, 65014, 65024, 64015, 65016, 65017, 65018, 65019];

+ 17 - 6
src/views/BasicsData/airportInfo/airportInfoChild/index.vue

@@ -15,6 +15,11 @@
         <div class="diacont">
           <el-form :model="tableForm" :rules="formRules" ref="airportInfoChildForm">
             <el-row :gutter="24">
+              <el-col>
+                <el-form-item label="所属区域ID" size="default" prop="terminalID" :rules="formRules.isNotNull">
+                  <el-input v-model="tableForm.terminalID" placeholder="请输入所属区域ID" />
+                </el-form-item>
+              </el-col>
               <el-col>
                 <el-form-item label="所属机场ID" size="default" prop="airportID" :rules="formRules.isNotNull">
                   <el-input v-model="tableForm.airportID" placeholder="请输入所属机场ID" />
@@ -165,8 +170,11 @@ const eleDialog = () => {
   type.value = "del";
 };
 const delRemove = () => {
-  tableForm.event = 3;
-  generalDataReception(tableForm);
+  const obj = {
+    terminalID: tableForm.terminalID,
+    event: 3,
+  };
+  generalDataReception(obj);
 };
 //删除取消
 const delRest = () => {
@@ -178,7 +186,6 @@ const aloneDialog = () => {
 };
 //编辑-删除
 const btnClick = (row, index, param) => {
-  console.log(index);
   if (param === 2) {
     msgTitle.value = "编辑区域";
     flag.value = true;
@@ -265,7 +272,12 @@ const resetTable = () => {
   tableData.value = [];
 };
 
-const btnAuthMap = [, 'newly_added_terminal_button', 'terminal_editing_button', 'terminal_deletion_button']
+const btnAuthMap = [
+  ,
+  "newly_added_terminal_button",
+  "terminal_editing_button",
+  "terminal_deletion_button",
+];
 //新增-编辑-删除
 const generalDataReception = async (data) => {
   try {
@@ -274,12 +286,11 @@ const generalDataReception = async (data) => {
     };
     data = {
       ...data,
-      ...obj,
     };
     const { code } = await GeneralDataReception({
       serviceId: serviceId.value,
       dataContent: JSON.stringify(data),
-      btnAuth: btnAuthMap[data.event]
+      btnAuth: btnAuthMap[data.event],
     });
     if (code == 0) {
       ElMessage.success(`操作成功`);

+ 15 - 23
src/views/BasicsData/airportInfo/index.vue

@@ -29,6 +29,11 @@
       <div class="diacont">
         <el-form :model="tableForm" :rules="formRules" ref="airportInfoForm">
           <el-row :gutter="24">
+            <el-col :span="12">
+              <el-form-item label="机场ID" size="default" prop="airportID" :rules="formRules.isNotNull">
+                <el-input v-model="tableForm.airportID" placeholder="请输入机场ID" />
+              </el-form-item>
+            </el-col>
             <el-col :span="12">
               <el-form-item label="中文全称" size="default" prop="airportName" :rules="formRules.isNotNull">
                 <el-input v-model="tableForm.airportName" placeholder="请输入机场名称" />
@@ -323,34 +328,21 @@ const btnClick = (row, index, param) => {
     msgTitle.value = "编辑机场信息维护";
     flag.value = true;
     type.value = "";
-    tableForm.airportID = index.airportID;
-    tableForm.airportName = index.airportName;
-    tableForm.IATACode = index.IATACode;
-    tableForm.ICAOCode = index.ICAOCode;
-    tableForm.abbreviation = index.abbreviation;
-    tableForm.englishAbbreviation = index.englishAbbreviation;
-    tableForm.fullName = index.fullName;
-    tableForm.companyID = index.companyID;
-    tableForm.airportTimeZone = index.airportTimeZone;
-    tableForm.companyName = index.companyName;
-    tableForm.event = index.event;
-    tableForm.remarks = index.remarks;
+    for (const key in index) {
+      tableForm[key] = index[key];
+    }
+    tableForm.event = 2;
   } else if (param === 3) {
     msgTitle.value = "删除机场信息维护";
     flag.value = true;
     type.value = "del";
     tableForm.event = 3;
-    tableForm.airportID = index.airportID;
-    tableForm.airportName = index.airportName;
-    tableForm.IATACode = index.IATACode;
-    tableForm.ICAOCode = index.ICAOCode;
-    tableForm.abbreviation = index.abbreviation;
-    tableForm.englishAbbreviation = index.englishAbbreviation;
-    tableForm.fullName = index.fullName;
-    tableForm.companyID = index.companyID;
-    tableForm.airportTimeZone = index.airportTimeZone;
-    tableForm.companyName = index.companyName;
-    tableForm.event = index.event;
+    for (const key in index) {
+      tableForm[key] = index[key];
+    }
+    if (tableForm.companyName != undefined) {
+      delete tableForm.companyName;
+    }
   } else if (param === 4) {
     Cookies.set("IATACode", index.IATACode);
     Cookies.set("abbreviation", index.abbreviation);

+ 13 - 5
src/views/BasicsData/airportInfo/positionSetting/index.vue

@@ -11,7 +11,7 @@
       <div class="app-containers">
         <DataTable :tableHeader="tableCols" :tableData="tableData" :tableBtnGroup="tableBtnGroup" :tableProperty="{ rowKey: 'ID' }" @btnClick="btnClick" />
       </div>
-      <Dialog :flag="flag" :type="type" :msgTitle="msgTitle" :delName="tableForm.positionDescribe" @resetForm="resetForm" @delRest="delRest" @submitForm="submitForm" @delRemove="delRemove">
+      <Dialog :flag="flag" :type="type" :msgTitle="msgTitle" :delName="tableForm.terminalName" @resetForm="resetForm" @delRest="delRest" @submitForm="submitForm" @delRemove="delRemove">
         <div class="diacont">
           <el-form :model="tableForm" :rules="formRules" ref="positionSettingForm">
             <el-row :gutter="24">
@@ -151,8 +151,11 @@ const eleDialog = () => {
   type.value = "del";
 };
 const delRemove = () => {
-  tableForm.event = 3;
-  generalDataReception(tableForm);
+  const obj = {
+    positionID: tableForm.positionID,
+    event: 3,
+  };
+  generalDataReception(obj);
 };
 //删除
 const delRest = () => {
@@ -242,7 +245,12 @@ const resetTable = () => {
   tableData.value = [];
 };
 
-const btnAuthMap = [, 'position_addition_button', 'position_edit_button', 'location_delete_button']
+const btnAuthMap = [
+  ,
+  "position_addition_button",
+  "position_edit_button",
+  "location_delete_button",
+];
 //新增-编辑-删除
 const generalDataReception = async (data) => {
   try {
@@ -255,7 +263,7 @@ const generalDataReception = async (data) => {
     const { code } = await GeneralDataReception({
       serviceId: serviceId.value,
       dataContent: JSON.stringify(data),
-      btnAuth: btnAuthMap[data.event]
+      btnAuth: btnAuthMap[data.event],
     });
     if (code == 0) {
       ElMessage.success(`操作成功`);

+ 12 - 6
src/views/BasicsData/cargoInformation/index.vue

@@ -100,11 +100,11 @@ const tableBtnGroup = ref([
   },
 ]);
 const searchForms = (val) => {
-  console.log(val);
+  getQuery(val);
 };
 
 const clearForm = () => {
-  console.log("清除");
+  getQuery();
 };
 //新增
 const addForm = () => {
@@ -171,15 +171,16 @@ const btnClick = (row, index, param) => {
   }
 };
 //获取表格数据
-const getQuery = async () => {
+const getQuery = async (val = "") => {
   try {
     const { code, returnData } = await Query({
       id: DATACONTENT_ID.forwarderNodeId,
       needPage: ++page.value,
-      dataContent: Object.values(dataContent.value),
+      dataContent: [val],
     });
     if (code === "0") {
       if (returnData.listValues.length === 0) {
+        tableData.value = [];
         page.value--;
         noMore.value = true;
       }
@@ -223,7 +224,12 @@ const resetTable = () => {
   tableData.value = [];
 };
 
-const btnAuthMap = [, 'new_freight_forwarder_button', 'freight_forwarder_editor_button', 'freight_forwarder_deletion_button']
+const btnAuthMap = [
+  ,
+  "new_freight_forwarder_button",
+  "freight_forwarder_editor_button",
+  "freight_forwarder_deletion_button",
+];
 //新增-编辑-删除
 const generalDataReception = async (data) => {
   try {
@@ -233,7 +239,7 @@ const generalDataReception = async (data) => {
     const { code } = await GeneralDataReception({
       serviceId: serviceId.value,
       dataContent: JSON.stringify(data),
-      btnAuth: btnAuthMap[data.event]
+      btnAuth: btnAuthMap[data.event],
     });
     if (code == 0) {
       ElMessage.success(`操作成功`);

+ 17 - 9
src/views/BasicsData/containerMaintenance/index.vue

@@ -99,11 +99,11 @@ const tableBtnGroup = ref([
   },
 ]);
 const searchForms = (val) => {
-  console.log(val);
+  getQuery(val);
 };
 
 const clearForm = () => {
-  console.log("清除");
+  getQuery();
 };
 //新增
 const addForm = () => {
@@ -138,8 +138,11 @@ const eleDialog = () => {
   type.value = "del";
 };
 const delRemove = () => {
-  tableForm.event = 3;
-  generalDataReception(tableForm);
+  const obj = {
+    containerID: tableForm.containerID,
+    event: 3,
+  };
+  generalDataReception(obj);
 };
 //删除
 const delRest = () => {
@@ -170,12 +173,12 @@ const btnClick = (row, index, param) => {
   }
 };
 //获取表格数据
-const getQuery = async () => {
+const getQuery = async (val = "") => {
   try {
     const { code, returnData } = await Query({
       id: DATACONTENT_ID.containerNodeId,
       needPage: ++page.value,
-      dataContent: Object.values(dataContent.value),
+      dataContent: [val],
     });
     if (code === "0") {
       if (returnData.listValues.length === 0) {
@@ -188,7 +191,7 @@ const getQuery = async () => {
       if (titleColumn) {
         rowTitle.value = titleColumn.columnName;
       }
-      tableData.value.push(...returnData.listValues);
+      tableData.value = [...returnData.listValues];
       tableCols.value = returnData.columnSet;
       tableCols.value.forEach((element) => {
         element.label = element.columnLabel;
@@ -222,7 +225,12 @@ const resetTable = () => {
   tableData.value = [];
 };
 
-const btnAuthMap = [, 'container_addition_button', 'container_edit_button', 'container_deletion_button']
+const btnAuthMap = [
+  ,
+  "container_addition_button",
+  "container_edit_button",
+  "container_deletion_button",
+];
 //新增-编辑-删除
 const generalDataReception = async (data) => {
   try {
@@ -232,7 +240,7 @@ const generalDataReception = async (data) => {
     const { code } = await GeneralDataReception({
       serviceId: serviceId.value,
       dataContent: JSON.stringify(data),
-      btnAuth: btnAuthMap[data.event]
+      btnAuth: btnAuthMap[data.event],
     });
     if (code == 0) {
       ElMessage.success(`操作成功`);

+ 120 - 157
src/views/BasicsData/hiddenCompany/index.vue

@@ -1,12 +1,7 @@
 <template>
   <div class="airportInfo scroll-y">
     <div class="wrap">
-      <Minheader
-        :is-auth="true"
-        :is-statuser="true"
-        powerData="new_airlines_button"
-        @addForm="addForm"
-      >
+      <Minheader :is-auth="true" :is-statuser="true" powerData="new_airlines_button" @addForm="addForm">
         <template #header>
           <div class="status flex-wrap">
             <div class="manageTitle">屏蔽航司维护</div>
@@ -14,58 +9,21 @@
         </template>
       </Minheader>
       <div class="app-containers">
-        <DataTable
-          :tableHeader="tableCols"
-          :tableData="tableData"
-          :tableBtnGroup="tableBtnGroup"
-          :tableProperty="{ rowKey: 'ID' }"
-          @btnClick="btnClick"
-        />
+        <DataTable :tableHeader="tableCols" :tableData="tableData" :tableBtnGroup="tableBtnGroup" :tableProperty="{ rowKey: 'ID' }" @btnClick="btnClick" />
       </div>
-      <Dialog
-        :flag="flag"
-        :type="type"
-        :msgTitle="msgTitle"
-        :delName="tableForm.code"
-        @resetForm="resetForm"
-        @delRest="delRest"
-        @submitForm="submitForm"
-        @delRemove="delRemove"
-      >
+      <Dialog :flag="flag" :type="type" :msgTitle="msgTitle" :delName="tableForm.code" @resetForm="resetForm" @delRest="delRest" @submitForm="submitForm" @delRemove="delRemove">
         <div class="diacont">
-          <el-form
-            :model="tableForm"
-            :rules="formRules"
-            ref="airlineCompanyForm"
-          >
+          <el-form :model="tableForm" :rules="formRules" ref="airlineCompanyForm">
             <el-row :gutter="24">
               <el-col>
-                <el-form-item
-                  label="航司二字码"
-                  prop="code"
-                  size="default"
-                  :rules="formRules.isNotNull"
-                >
-                  <el-input
-                    v-model="tableForm.code"
-                    placeholder="请输入航司二字码"
-                  />
+                <el-form-item label="航司二字码" prop="code" size="default" :rules="formRules.isNotNull">
+                  <el-input v-model="tableForm.code" placeholder="请输入航司二字码" />
                 </el-form-item>
                 <el-form-item label="进港" prop="in_type" size="default">
-                  <el-checkbox
-                    v-model="tableForm.in_type"
-                    :true-label="1"
-                    :false-label="0"
-                    size="default"
-                  />
+                  <el-checkbox v-model="tableForm.in_type" :true-label="1" :false-label="0" size="default" />
                 </el-form-item>
                 <el-form-item label="出港" prop="out_type" size="default">
-                  <el-checkbox
-                    v-model="tableForm.out_type"
-                    :true-label="1"
-                    :false-label="0"
-                    size="default"
-                  />
+                  <el-checkbox v-model="tableForm.out_type" :true-label="1" :false-label="0" size="default" />
                 </el-form-item>
               </el-col>
             </el-row>
@@ -76,29 +34,29 @@
   </div>
 </template>
 <script setup lang="ts">
-import DataTable from '@/components/tableTemp/index.vue'
-import Minheader from '@/components/minheader/index.vue'
-import Dialog from '@/components/dialog/index.vue'
-import { Query, GeneralDataReception } from '@/api/webApi'
-import { ElMessage } from 'element-plus'
-import { CommonTableColumn, CommonValue } from '~/common'
+import DataTable from "@/components/tableTemp/index.vue";
+import Minheader from "@/components/minheader/index.vue";
+import Dialog from "@/components/dialog/index.vue";
+import { Query, GeneralDataReception } from "@/api/webApi";
+import { ElMessage } from "element-plus";
+import { CommonTableColumn, CommonValue } from "~/common";
 
 const tableColumns = [
   {
-    columnLabel: '航司二字码',
-    columnName: 'code',
+    columnLabel: "航司二字码",
+    columnName: "code",
   },
   {
-    columnLabel: '进港',
-    columnName: 'in_type_zh',
+    columnLabel: "进港",
+    columnName: "in_type_zh",
   },
   {
-    columnLabel: '出港',
-    columnName: 'out_type_zh',
+    columnLabel: "出港",
+    columnName: "out_type_zh",
   },
-].map(column => ({
-  columnDescribe: '',
-  dataType: '',
+].map((column) => ({
+  columnDescribe: "",
+  dataType: "",
   listqueryTemplateID: null,
   needCount: null,
   needFilters: null,
@@ -110,89 +68,89 @@ const tableColumns = [
   queryTemplateColumnSetID: null,
   queryTemplateID: null,
   ...column,
-}))
+}));
 
-const formRules = useElement().formRules
-const page = ref(0) //分页参数
-const dataContent = ref<any>({})
-const noMore = ref(false)
-const tableCols = ref<CommonTableColumn[]>(tableColumns) //表头数据
-const serviceId = ref<number | null>(null)
-const tableObj = ref<any>({}) //增删改数据缓存
-const flag = ref(false) //弹窗开关
-const type = ref('') //判断是否删除
-const msgTitle = ref('新增屏蔽航司') //弹窗标题
+const formRules = useElement().formRules;
+const page = ref(0); //分页参数
+const dataContent = ref<any>({});
+const noMore = ref(false);
+const tableCols = ref<CommonTableColumn[]>(tableColumns); //表头数据
+const serviceId = ref<number | null>(null);
+const tableObj = ref<any>({}); //增删改数据缓存
+const flag = ref(false); //弹窗开关
+const type = ref(""); //判断是否删除
+const msgTitle = ref("新增屏蔽航司"); //弹窗标题
 const tableForm = reactive({
   id: null,
-  code: '',
+  code: "",
   in_type: 1,
   out_type: 1,
   event: 0,
-}) //弹窗内容
+}); //弹窗内容
 //列表
-const tableData = ref<CommonValue[]>([])
+const tableData = ref<CommonValue[]>([]);
 const tableBtnGroup = ref([
   {
-    name: '编辑',
-    className: 'editBtn',
+    name: "编辑",
+    className: "editBtn",
     param: 2,
-    is: 'airline_editor_button',
+    is: "airline_editor_button",
   },
   {
-    name: '删除',
-    className: 'delBtn',
+    name: "删除",
+    className: "delBtn",
     param: 3,
-    is: 'airlines_delete_button',
+    is: "airlines_delete_button",
   },
-])
+]);
 //新增
 const addForm = () => {
-  msgTitle.value = '新增屏蔽航司'
-  tableForm.event = 1
-  flag.value = true
-  type.value = ''
-}
+  msgTitle.value = "新增屏蔽航司";
+  tableForm.event = 1;
+  flag.value = true;
+  type.value = "";
+};
 //取消
 const resetForm = () => {
-  airlineCompanyForm.value?.resetFields()
-  flag.value = false
+  airlineCompanyForm.value?.resetFields();
+  flag.value = false;
   // tableForm.id = null
   // tableForm.code = ''
   // tableForm.in_type = 1
   // tableForm.out_type = 1
   // tableForm.event = 0
-}
+};
 //编辑-删除
 const btnClick = (index, row, param) => {
   if (param === 2) {
-    msgTitle.value = '编辑屏蔽航司'
-    flag.value = true
-    type.value = ''
-    tableForm.event = 2
-    tableForm.id = row.id
-    tableForm.code = row.code
-    tableForm.in_type = row.in_type
-    tableForm.out_type = row.out_type
+    msgTitle.value = "编辑屏蔽航司";
+    flag.value = true;
+    type.value = "";
+    tableForm.event = 2;
+    tableForm.id = row.id;
+    tableForm.code = row.code;
+    tableForm.in_type = row.in_type;
+    tableForm.out_type = row.out_type;
   } else if (param === 3) {
-    msgTitle.value = '删除屏蔽航司'
-    flag.value = true
-    type.value = 'del'
-    tableForm.event = 3
-    tableForm.id = row.id
-    tableForm.code = row.code
-    tableForm.in_type = row.in_type
-    tableForm.out_type = row.out_type
+    msgTitle.value = "删除屏蔽航司";
+    flag.value = true;
+    type.value = "del";
+    tableForm.event = 3;
+    tableForm.id = row.id;
+    tableForm.code = row.code;
+    tableForm.in_type = row.in_type;
+    tableForm.out_type = row.out_type;
   }
-}
+};
 //删除
 const delRemove = () => {
-  tableForm.event = 3
-  generalDataReception(tableForm)
-}
+  tableForm.event = 3;
+  generalDataReception(tableForm);
+};
 //删除
 const delRest = () => {
-  flag.value = false
-}
+  flag.value = false;
+};
 //获取表格数据
 const getQuery = async () => {
   try {
@@ -200,84 +158,89 @@ const getQuery = async () => {
       id: DATACONTENT_ID.hiddenCompany,
       needPage: ++page.value,
       dataContent: Object.values(dataContent.value),
-    })
-    if (code === '0') {
+    });
+    if (code === "0") {
       if (returnData.listValues.length === 0) {
-        page.value--
-        noMore.value = true
+        page.value--;
+        noMore.value = true;
       }
       tableData.value.push(
-        ...returnData.listValues.map(row => ({
-          in_type_zh: row.in_type ? '是' : '否',
-          out_type_zh: row.out_type ? '是' : '否',
+        ...returnData.listValues.map((row) => ({
+          in_type_zh: row.in_type ? "是" : "否",
+          out_type_zh: row.out_type ? "是" : "否",
           ...row,
         }))
-      )
-      serviceId.value = returnData.submitID!
+      );
+      serviceId.value = returnData.submitID!;
     } else {
-      page.value--
+      page.value--;
     }
   } catch (error) {
-    page.value--
+    page.value--;
   }
-}
+};
 //确认提交
-const airlineCompanyForm: any = ref(null)
+const airlineCompanyForm: any = ref(null);
 const submitForm = () => {
   airlineCompanyForm.value.validate((valid: any) => {
     if (valid) {
-      generalDataReception(tableForm)
+      generalDataReception(tableForm);
     } else {
-      return false
+      return false;
     }
-  })
-}
+  });
+};
 const resetTable = () => {
-  page.value = 0
-  noMore.value = false
-  tableData.value = []
-}
+  page.value = 0;
+  noMore.value = false;
+  tableData.value = [];
+};
 
-const btnAuthMap = [, 'new_airlines_button', 'airline_editor_button', 'airlines_delete_button']
+const btnAuthMap = [
+  ,
+  "new_airlines_button",
+  "airline_editor_button",
+  "airlines_delete_button",
+];
 //新增-编辑-删除
-const generalDataReception = async data => {
+const generalDataReception = async (data) => {
   try {
     data = {
       ...data,
-    }
+    };
     const { code } = await GeneralDataReception({
       serviceId: serviceId.value,
       dataContent: JSON.stringify(data),
-      btnAuth: btnAuthMap[data.event]
-    })
+      btnAuth: btnAuthMap[data.event],
+    });
     if (code == 0) {
-      ElMessage.success(`操作成功`)
+      ElMessage.success(`操作成功`);
       // this.$message.success("操作成功");
-      resetTable()
-      getQuery()
-      resetForm()
-      flag.value = false
+      resetTable();
+      getQuery();
+      resetForm();
+      flag.value = false;
       // rmFlag.value = false;
-      tableObj.value = {}
+      tableObj.value = {};
       // this.$router.go(0);
     } else {
-      ElMessage.error(`操作失败`)
+      ElMessage.error(`操作失败`);
       // this.$message.error("操作失败");
       // this.flag = false;
       // this.rmFlag = false;
-      tableObj.value = {}
-      resetForm()
+      tableObj.value = {};
+      resetForm();
     }
   } catch (error) {
-    flag.value = false
+    flag.value = false;
     //  rmFlag.value = false;
-    tableObj.value = {}
-    resetForm()
+    tableObj.value = {};
+    resetForm();
   }
-}
+};
 onMounted(() => {
-  getQuery()
-})
+  getQuery();
+});
 </script>
 <style lang="scss" scoped>
 ::v-deep .el-form-item__label {

+ 12 - 5
src/views/BasicsData/shippingSpace/index.vue

@@ -139,8 +139,11 @@ const eleDialog = () => {
   type.value = "del";
 };
 const delRemove = () => {
-  tableForm.event = 3;
-  generalDataReception(tableForm);
+  const obj = {
+    storingID: tableForm.storingID,
+    event: 3,
+  };
+  generalDataReception(obj);
 };
 //删除
 const delRest = () => {
@@ -225,7 +228,12 @@ const resetTable = () => {
   tableData.value = [];
 };
 
-const btnAuthMap = [, 'new_cabin_button', 'cabin_editor_button', 'cabin_deletion_button']
+const btnAuthMap = [
+  ,
+  "new_cabin_button",
+  "cabin_editor_button",
+  "cabin_deletion_button",
+];
 //新增-编辑-删除
 const generalDataReception = async (data) => {
   try {
@@ -234,12 +242,11 @@ const generalDataReception = async (data) => {
     };
     data = {
       ...data,
-      ...obj,
     };
     const { code } = await GeneralDataReception({
       serviceId: serviceId.value,
       dataContent: JSON.stringify(data),
-      btnAuth: btnAuthMap[data.event]
+      btnAuth: btnAuthMap[data.event],
     });
     if (code == 0) {
       ElMessage.success(`操作成功`);

+ 19 - 6
src/views/userManagement/account/index.vue

@@ -98,6 +98,7 @@ const msgType = ref("all");
 const PageIndex = ref(1);
 const searchInfo = ref("");
 const pwdInfo = ref(null);
+const submitID = ref<any>("");
 //获取用户组
 const getGroup = async () => {
   const { code, returnData } = await Query({
@@ -146,13 +147,17 @@ const accountList = async () => {
   const { code, returnData, message } = result;
   if (code == 0) {
     const { columnSet, listValues } = returnData;
-    tableHeader.value = columnSet.map(column => ({
+    tableHeader.value = columnSet.map((column) => ({
       ...column,
-      formatter: column.columnName === 'user_status' ? function(row, column, cellValue, index) {
-        return ['1', '2'].includes(String(cellValue)) ? '启用' : '禁用'
-      } : undefined
+      formatter:
+        column.columnName === "user_status"
+          ? function (row, column, cellValue, index) {
+              return ["1", "2"].includes(String(cellValue)) ? "启用" : "禁用";
+            }
+          : undefined,
     }));
     tableData.value = listValues;
+    submitID.value = returnData.submitID;
   } else {
     ElMessage.error(message);
   }
@@ -166,11 +171,16 @@ const pageInit = () => {
   accountList();
 };
 
-const btnAuthMap = [, 'add_account_button', 'account_editing_button', 'account_deletion_button']
+const btnAuthMap = [
+  ,
+  "add_account_button",
+  "account_editing_button",
+  "account_deletion_button",
+];
 //增删改
 const dataChange = async (event, data) => {
   const { code, message } = await table.dataChange(
-    SERVICE_ID.accountScId,
+    submitID.value,
     event,
     {
       ...data,
@@ -256,6 +266,9 @@ const delRest = () => {
   flag.value = false;
 };
 const remove = () => {
+  if (rowIndex.value.AuthCount != undefined) {
+    delete rowIndex.value.AuthCount;
+  }
   dataChange(3, rowIndex.value);
   flag.value = false;
 };

+ 10 - 5
src/views/userManagement/accountGroup/index.vue

@@ -36,7 +36,7 @@ import table from "../hooks/useTable";
 const ruleFormRef = ref<FormInstance>();
 const tableHeader = ref<any>([]);
 const tableData = ref<any>([]);
-const tableBtnGroup = [
+const tableBtnGroup = <any>[
   {
     name: "编辑",
     className: "editBtn",
@@ -54,6 +54,7 @@ const flag = ref(false);
 const title = ref("");
 const searchInfo = ref("");
 const dT = ref("add");
+const submitID = ref(0);
 const editDialogVisible = ref(false);
 const editDialogTitle = ref("新增账号组");
 const ruleForm = ref<any>({
@@ -73,6 +74,7 @@ const accountList = async () => {
   ]);
   tableHeader.value = res.tableHeader.value;
   tableData.value = res.tableData.value;
+  submitID.value = res.msgId.value;
 };
 
 const search = (val) => {
@@ -99,12 +101,15 @@ const delRest = () => {
   flag.value = false;
 };
 const remove = async () => {
+  if (rowIndex.value.user_count != undefined) {
+    delete rowIndex.value.user_count;
+  }
   try {
     const { code, message } = await table.dataChange(
-      SERVICE_ID.accountGroupScId,
+      submitID.value,
       3,
       rowIndex.value,
-      'account_group_deletion_button'
+      "account_group_deletion_button"
     );
 
     if (code == 0) {
@@ -126,10 +131,10 @@ const addApp = () => {
 const saveAddAccount = async (event) => {
   try {
     const { code, message } = await table.dataChange(
-      SERVICE_ID.accountGroupScId,
+      submitID.value,
       event,
       ruleForm.value,
-      event == 1 ? 'add_account_group_button' : 'account_group_editing_button'
+      event == 1 ? "add_account_group_button" : "account_group_editing_button"
     );
     if (code == 0) {
       ElMessage.success(message);

+ 10 - 3
src/views/userManagement/application/index.vue

@@ -43,7 +43,7 @@ import table from "../hooks/useTable";
 const ruleFormRef = ref<FormInstance>();
 const tableHeader = ref<any>([]);
 const tableData = ref<any>([]);
-const tableBtnGroup = [
+const tableBtnGroup = <any>[
   {
     name: "编辑",
     className: "editBtn",
@@ -60,6 +60,7 @@ const tableBtnGroup = [
 const flag = ref(false);
 const title = ref("");
 const dT = ref("add");
+const submitID = ref(0);
 const editDialogVisible = ref(false);
 const editDialogTitle = ref("新增应用");
 const ruleForm = ref<any>({
@@ -82,6 +83,7 @@ const getApp = async () => {
   ]);
   tableHeader.value = res.tableHeader.value;
   tableData.value = res.tableData.value;
+  submitID.value = res.msgId.value;
 };
 
 const btnClick = (index, row, param) => {
@@ -110,11 +112,16 @@ const addApp = () => {
   ruleForm.value = {};
 };
 
-const btnAuthMap = [, 'add_application_button', 'apply_edit_button', 'apply_delete_button']
+const btnAuthMap = [
+  ,
+  "add_application_button",
+  "apply_edit_button",
+  "apply_delete_button",
+];
 //增删改
 const dataChange = async (event, data) => {
   const { code, message } = await table.dataChange(
-    SERVICE_ID.appScId,
+    submitID.value,
     event,
     data,
     btnAuthMap[event]

+ 3 - 0
src/views/userManagement/hooks/useTree.ts

@@ -11,6 +11,7 @@ const dataObj = ref<any>({
   disabled: true,
   children: [] as Array<any>,
 })
+const msgId = ref<any>('')
 const data = ref<any>([])
 const newData = ref<any>([])
 const setTree = (arr: Array<any>, upkey = 'up_auth_id', key = 'auth_id') => {
@@ -30,6 +31,7 @@ const getTree = async () => {
     if (code == 0 && returnData.listValues) {
       newData.value = _.cloneDeep(returnData.listValues)
       data.value = [setTree(returnData.listValues)]
+      msgId.value = returnData.submitID
       return data
     } else {
       data.value = [dataObj]
@@ -44,4 +46,5 @@ export default {
   setTree,
   getTree,
   newData,
+  msgId
 }

+ 14 - 4
src/views/userManagement/permission/index.vue

@@ -159,6 +159,7 @@ const optionsType = ref([
     value: 3,
   },
 ]);
+const msgId = ref<any>("");
 const optionsParent: any = ref([]);
 const optionsApp: any = ref([]);
 const ruleFormRef = ref<FormInstance>();
@@ -175,6 +176,7 @@ const defaultProps = {
 
 const getAuthTree = async () => {
   const res = await tree.getTree();
+  msgId.value = tree.msgId.value;
   data.value = res.value;
 };
 
@@ -199,7 +201,7 @@ const renderChange = (data) => {
     delete data.children;
   }
   data.event = 2;
-  changeAuth(data, 'switch');
+  changeAuth(data, "switch");
 };
 
 // 重置表单
@@ -277,13 +279,21 @@ const addAuth = () => {
   });
 };
 
-const btnAuthMap = [, 'button_permission_item_add_button', 'permission_item_editing_button', 'permission_item_deletion_button']
+const btnAuthMap = [
+  ,
+  "button_permission_item_add_button",
+  "permission_item_editing_button",
+  "permission_item_deletion_button",
+];
 //增删改
 const changeAuth = async (obj: any, type?: string) => {
   const { code, message } = await GeneralDataReception({
-    serviceId: SERVICE_ID.authScId,
+    serviceId: msgId.value,
     dataContent: JSON.stringify(obj),
-    btnAuth: type === 'switch' ? 'permission_item_status_switch_button' : btnAuthMap[obj.event]
+    btnAuth:
+      type === "switch"
+        ? "permission_item_status_switch_button"
+        : btnAuthMap[obj.event],
   });
   if (code == 0) {
     ElMessage.success(message);