Commit 4dde11b9 by yiyu.li

bug

parent 4e7fad66
...@@ -50,8 +50,10 @@ export default { ...@@ -50,8 +50,10 @@ export default {
var errs = data.split(";"); var errs = data.split(";");
errs.forEach((item) => { errs.forEach((item) => {
var inf = item.split(","); var inf = item.split(",");
console.log(this.$t(inf[1]));
msg += msg +=
this.$t("1077") + inf[0] + this.$t("1083") + this.$t(inf[1]) + ","; this.$t("1077") + inf[0] + this.$t("1083") + this.$t(inf[1].trim()) + ",";
}); });
msg = msg.slice(0, -1); msg = msg.slice(0, -1);
this.window_warning(msg); this.window_warning(msg);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment