diff --git a/src/views/sync/SysUdimsConfig.vue b/src/views/sync/SysUdimsConfig.vue
index 53288090..d233cbdb 100644
--- a/src/views/sync/SysUdimsConfig.vue
+++ b/src/views/sync/SysUdimsConfig.vue
@@ -50,7 +50,7 @@
style="margin-left: 20px"
:disabled="configQuery.downstreamEnable"
:loading="testLoading"
- >测试连通
+ >连通性测试
diff --git a/src/views/thirdSys/inv/index.vue b/src/views/thirdSys/inv/index.vue
index 9cb413eb..3a8d1110 100644
--- a/src/views/thirdSys/inv/index.vue
+++ b/src/views/thirdSys/inv/index.vue
@@ -55,7 +55,7 @@
label="部门名称"
>
-
+
@@ -165,7 +165,6 @@
:close-on-click-modal="false"
:close-on-press-escape="false"
:visible.sync="formVisible"
- :before-close="hideForm"
width="45%"
top="5vh"
>
@@ -182,12 +181,12 @@
auto-complete="off"
>
-
-
-
-
-
-
+
+
+
+
+
+
-
+
-
+
-
+
d.id === data.id);
}
- this.ThirdSysName=this.formData.thirdSysFk
+ this.ThirdSysName = this.formData.thirdSysFk
},
handleSubForm(data, formName) {
@@ -502,7 +501,7 @@ export default {
handleSubDel(row) {
if (row.id) {
- this.$confirm("确认删除该分库吗?", "提示", {
+ this.$confirm("确认删除该仓库吗?", "提示", {
type: "warning",
})
.then(() => {
@@ -532,14 +531,14 @@ export default {
}
},
- //添加分库
+ //添加仓库
forSubSubmit() {
if (this.$isBlank(this.subData.code)) {
- this.$message.error("分库编码不能为空!");
+ this.$message.error("仓库编码不能为空!");
return;
}
if (this.$isBlank(this.subData.name)) {
- this.$message.error("分库名称不能为空!");
+ this.$message.error("仓库名称不能为空!");
return;
}
@@ -557,7 +556,7 @@ export default {
this.subFormVisible = false;
}
}).catch(() => {
- this.subData.code=JSON.parse(localStorage.getItem("code"));
+ this.subData.code = JSON.parse(localStorage.getItem("code"));
this.subFormVisible = false;
});
this.resetForm();
@@ -613,7 +612,7 @@ export default {
.catch(() => {
this.formLoading = false;
- this.formData.thirdSysFk=this.ThirdSysName;
+ this.formData.thirdSysFk = this.ThirdSysName;
});
}
});
@@ -663,8 +662,8 @@ export default {
getBasicThirdSys(query)
.then((response) => {
this.thirdSys = response.data.list || [];
- for(var i=0;i