Commit a77eb65b authored by 刘殿昕's avatar 刘殿昕

fixed

parent c569b324
......@@ -271,7 +271,8 @@ export default {
rules: {
account: [
{ required: true, message: "请输入账号", trigger: "blur" },
{ max: 16, message: "长度应小于16个字符", trigger: "blur" },
{ max: 16, message: "长度请不大于16个字符", trigger: "blur" },
{ min: 3, message: "长度请不小于3个字符", trigger: "blur" },
{ validator: user_name_pass, trigger: "blur" }
],
password: [
......
......@@ -1095,7 +1095,8 @@ export default {
},
gotopage(id, deploy) {
if (deploy) {
this.$router.push(this.detailsUrl1[0][1] + deploy);
console.log(id)
this.$router.push(this.detailsUrl1[0][1] + deploy + "?app_id=" + id);
} else {
this.$router.push(this.detailsUrl1[0][0] + id);
}
......
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