chenjun 2 жил өмнө
parent
commit
5882916776

+ 6 - 6
src/views/BasicsData/containerMaintenance/index.vue

@@ -4,7 +4,7 @@
       <Minheader :is-auth="true" :is-statuser="true" @addForm="addForm">
         <template #header>
           <div class="status flex-wrap">
-            <div class="manageTitle">容器维护</div>
+            <div class="manageTitle">容器类型维护</div>
           </div>
         </template></Minheader
       >
@@ -140,7 +140,7 @@ const tableBtnGroup = ref([
 ]);
 //新增
 const addForm = () => {
-  msgTitle.value = "新增容器维护";
+  msgTitle.value = "新增类型维护";
   flag.value = true;
   type.value = "";
   tableForm.event = 1;
@@ -156,7 +156,7 @@ const resetForm = () => {
 };
 //编辑
 const editDialog = (data) => {
-  msgTitle.value = "编辑容器维护";
+  msgTitle.value = "编辑容器类型维护";
   flag.value = true;
   type.value = "";
   tableForm.name = data.name;
@@ -165,7 +165,7 @@ const editDialog = (data) => {
 };
 //删除
 const eleDialog = () => {
-  msgTitle.value = "删除容器维护";
+  msgTitle.value = "删除容器类型维护";
   flag.value = true;
   type.value = "del";
 };
@@ -180,7 +180,7 @@ const delRest = () => {
 //编辑-删除
 const btnClick = (row, index, param) => {
   if (param === 2) {
-    msgTitle.value = "编辑容器维护";
+    msgTitle.value = "编辑容器类型维护";
     flag.value = true;
     type.value = "";
     tableForm.event = 2;
@@ -190,7 +190,7 @@ const btnClick = (row, index, param) => {
     tableForm.containerDesc = index.containerDesc;
     tableForm.containerUnit = index.containerUnit;
   } else if (param === 3) {
-    msgTitle.value = "删除容器维护";
+    msgTitle.value = "删除容器类型维护";
     flag.value = true;
     type.value = "del";
     tableForm.event = 3;