Commit 5eb97d60 by 潘建波

添加批量删除日志;

添加增加组织和地点日志;
1 parent 1e5162b5
......@@ -3,7 +3,7 @@ console.log(process.env.NODE_ENV);
switch (process.env.NODE_ENV) {
case "development":
// baseUrl = "http://192.168.9.234:20080"; // 测试环境url
baseUrl = "http://192.168.9.133:20080"; // 测试环境url
baseUrl = "http://192.168.9.233:20080"; // 测试环境url
// baseUrl = "http://192.168.9.82:8080"; // 测试环境url
// baseUrl = "http://192.168.9.61:8086";
// baseUrl = 'http://vion-panda.51vip.biz:52510';
......
......@@ -393,10 +393,10 @@ export default {
this.$emit("getTree");
let type =this.formData.targetType;
if(type == 'org') {
this.$logs.oplogs(res,'serv_vchan',`添加组织${this.editForm.name}`);
this.$logs.oplogs(res,'serv_vchan',`添加组织${this.formData.name}`);
}
if(type == 'address') {
this.$logs.oplogs(res,'serv_vchan',`添加地点${this.editForm.name}`);
this.$logs.oplogs(res,'serv_vchan',`添加地点${this.formData.name}`);
}
}
});
......
......@@ -514,6 +514,7 @@ export default {
type: "success",
message: "删除成功!"
});
this.$logs.oplogs(res,'serv_serarch',`违法批量删除了${this.selectcheck.length}条`);
this.getData();
} else {
this.$message.error("删除失败!");
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!