Эх сурвалжийг харах

修改编辑后新增数据清空缓存

zhaoke 1 жил өмнө
parent
commit
40ac0c56c9

+ 4 - 0
src/views/BasicsData/airlineCompany/index.vue

@@ -68,6 +68,7 @@ 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 { setFormatObject, clearFormatObject } from "@/utils/validate";
 
 const formRules = useElement().formRules;
 const page = ref(0); //分页参数
@@ -110,6 +111,9 @@ const tableBtnGroup = ref([
 //新增
 const addForm = () => {
   msgTitle.value = "新增航司信息维护";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
   flag.value = true;
   type.value = "";

+ 3 - 0
src/views/BasicsData/airportCompany/index.vue

@@ -117,6 +117,9 @@ const addForm = () => {
   msgTitle.value = "新增机场公司维护";
   flag.value = true;
   type.value = "";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
   asShow.value = false;
   asShow.value = true;

+ 3 - 0
src/views/BasicsData/airportInfo/index.vue

@@ -279,6 +279,9 @@ const addForm = () => {
   msgTitle.value = "新增机场信息维护";
   flag.value = true;
   type.value = "";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
   tableForm.companyID = companyID;
 };

+ 3 - 0
src/views/BasicsData/airportInfo/positionSetting/index.vue

@@ -129,6 +129,9 @@ const tableBtnGroup = ref([
 //新增
 const addForm = () => {
   msgTitle.value = "新增位置";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
   flag.value = true;
   type.value = "";

+ 3 - 0
src/views/BasicsData/cargoInformation/index.vue

@@ -111,6 +111,9 @@ const addForm = () => {
   msgTitle.value = "新增货代管理";
   flag.value = true;
   type.value = "";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
 };
 //取消

+ 3 - 0
src/views/BasicsData/containerMaintenance/index.vue

@@ -110,6 +110,9 @@ const addForm = () => {
   msgTitle.value = "新增类型维护";
   flag.value = true;
   type.value = "";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
 };
 //取消

+ 10 - 2
src/views/BasicsData/deployNode/index.vue

@@ -98,6 +98,9 @@ const addForm = () => {
   msgTitle.value = "新增节点信息维护";
   flag.value = true;
   type.value = "";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
 };
 //取消
@@ -208,7 +211,12 @@ const resetTable = () => {
   tableData.value = [];
 };
 
-const btnAuthMap = [, 'new_node_button', 'node_editing_button', 'node_deletion_button']
+const btnAuthMap = [
+  ,
+  "new_node_button",
+  "node_editing_button",
+  "node_deletion_button",
+];
 //新增-编辑-删除
 const generalDataReception = async (data) => {
   try {
@@ -218,7 +226,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(`操作成功`);

+ 3 - 0
src/views/BasicsData/equipmentMaintenance/index.vue

@@ -118,6 +118,9 @@ const addForm = () => {
   msgTitle.value = "新增设备维护";
   flag.value = true;
   type.value = "";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
 };
 //取消

+ 3 - 0
src/views/BasicsData/hiddenCompany/index.vue

@@ -106,6 +106,9 @@ const tableBtnGroup = ref([
 //新增
 const addForm = () => {
   msgTitle.value = "新增屏蔽航司";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
   flag.value = true;
   type.value = "";

+ 10 - 2
src/views/BasicsData/modelMaintenance/index.vue

@@ -108,6 +108,9 @@ const state = reactive({
 //新增
 const addForm = () => {
   msgTitle.value = "新增机型维护";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
   flag.value = true;
   type.value = "";
@@ -234,7 +237,12 @@ const resetTable = () => {
   tableData.value = [];
 };
 
-const btnAuthMap = [, 'new_model_button', 'airline_editor_button', 'model_deletion_button']
+const btnAuthMap = [
+  ,
+  "new_model_button",
+  "airline_editor_button",
+  "model_deletion_button",
+];
 //新增-编辑-删除
 const generalDataReception = async (data) => {
   console.log(data);
@@ -245,7 +253,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(`操作成功`);

+ 3 - 0
src/views/BasicsData/shippingSpace/index.vue

@@ -110,6 +110,9 @@ const tableBtnGroup = ref([
 //新增
 const addForm = () => {
   msgTitle.value = "新增舱位管理";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
   flag.value = true;
   type.value = "";

+ 3 - 0
src/views/BasicsData/specialCargoMaintenance/index.vue

@@ -111,6 +111,9 @@ const addForm = () => {
   msgTitle.value = "新增特殊货物类型维护";
   flag.value = true;
   type.value = "";
+  for (const key in tableForm) {
+    tableForm[key] = "";
+  }
   tableForm.event = 1;
 };
 //取消

+ 2 - 1
src/views/statisticalanalysis/dataException/views/detail.vue

@@ -344,7 +344,8 @@ export default {
   }
   .echart {
     width: 100%;
-    height: 746px;
+    /*height: 746px;*/
+    height: calc(100% - 110px);
     position: absolute;
     background: #ffffff;
     box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);