zhaoke 1 年之前
父节点
当前提交
ee0d1cfe24

+ 6 - 4
public/config.js

@@ -110,7 +110,9 @@ var NEW_DATACONTENT_ID = [
   54023,
   54024,
   54025,
-  54026
+  54026,
+  54027,
+  54028
 ]
 
 var DATACONTENT_ID = {
@@ -176,8 +178,8 @@ var DATACONTENT_ID = {
 
   /***-----账号管理------***/
   accountTableId: 54004, //账号管理-首页-列表
-  accountRoleId: 43, //账号管理-根据id查角色
-  accountDetailsId: 45, //账号管理-根据id查详情
+  accountRoleId: 54027, //账号管理-根据id查角色
+  accountDetailsId: 54028, //账号管理-根据id查详情
 
   /***-----账号组管理------***/
   accountGroupTableId: 54005, //账号组管理-首页-列表
@@ -466,4 +468,4 @@ var SERVICE_ID = {
   /***-----离港管理------***/
   departureScId: 8011, //发送报警预警日志信息
 }
-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];
+var NEW_SERVICE_ID = [55001, 65015, 65024, 65002, 65026, 65060, 65061, 65001, 65005, 65008, 65004, 65009, 65010, 65011, 65013, 65014, 65024, 64015, 65016, 65017, 65018, 65019, 65020, 65021];

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

@@ -149,8 +149,11 @@ const eleDialog = () => {
   type.value = "del";
 };
 const delRemove = () => {
-  tableForm.event = 3;
-  generalDataReception(tableForm);
+  const obj = {
+    deviceID: tableForm.deviceID,
+    event: 3,
+  };
+  generalDataReception(obj);
 };
 //删除
 const delRest = () => {
@@ -236,14 +239,19 @@ const resetTable = () => {
   tableData.value = [];
 };
 
-const btnAuthMap = [, 'equipment_addition_button', 'device_editing_button', 'device_deletion_button']
+const btnAuthMap = [
+  ,
+  "equipment_addition_button",
+  "device_editing_button",
+  "device_deletion_button",
+];
 //新增-编辑-删除
 const generalDataReception = async (data) => {
   try {
     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 - 5
src/views/BasicsData/specialCargoMaintenance/index.vue

@@ -99,11 +99,12 @@ const tableBtnGroup = ref([
   },
 ]);
 const searchForms = (val) => {
-  console.log(val);
+  page.value = 0;
+  getQuery(val);
 };
 
 const clearForm = () => {
-  console.log("清除");
+  getQuery();
 };
 //新增
 const addForm = () => {
@@ -171,15 +172,16 @@ const btnClick = (row, index, param) => {
   }
 };
 //获取表格数据
-const getQuery = async () => {
+const getQuery = async (val = "") => {
   try {
     const { code, returnData } = await Query({
       id: DATACONTENT_ID.bagTableId,
       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 +225,12 @@ const resetTable = () => {
   tableData.value = [];
 };
 
-const btnAuthMap = [, 'new_special_goods_type_button', 'edit_special_cargo_type_button', 'special_cargo_type_deletion_button']
+const btnAuthMap = [
+  ,
+  "new_special_goods_type_button",
+  "edit_special_cargo_type_button",
+  "special_cargo_type_deletion_button",
+];
 //新增-编辑-删除
 const generalDataReception = async (data) => {
   try {

+ 4 - 2
src/views/systemSettings/warningSet/index.vue

@@ -523,6 +523,7 @@ const getQuery = async (data?) => {
     if (code === "0") {
       // console.log(returnData);
       if (returnData.length === 0) {
+        tableData.value = [];
         page.value--;
         noMore.value = true;
       }
@@ -613,11 +614,12 @@ const generalDataReception = async (data, event) => {
   }
 };
 const searchForms = (val) => {
-  console.log(val);
+  page.value = 0;
+  getQuery(val);
 };
 
 const clearForm = () => {
-  console.log("清除");
+  getQuery();
 };
 //获取航司二字码
 const getIaCode = async () => {