Commit ec8fbe8a by tang

feat: 优化

parent 62707bf3
...@@ -322,6 +322,13 @@ export default { ...@@ -322,6 +322,13 @@ export default {
this.activeName = 'first' this.activeName = 'first'
this.company = this.$route.query.type this.company = this.$route.query.type
this.companySearch.name = this.$route.query.keyword this.companySearch.name = this.$route.query.keyword
if (this.company === CODE) {
this.companySearch.code = this.$route.query.keyword;
} else if (this.company === NAME) {
this.companySearch.name = this.$route.query.keyword;
} else {
this.companySearch.address = this.$route.query.keyword;
}
} }
} }
}, },
......
...@@ -28,7 +28,7 @@ export default { ...@@ -28,7 +28,7 @@ export default {
this.$store.commit("system/SET_BREADCRUMB", [ this.$store.commit("system/SET_BREADCRUMB", [
{name: "服务中心", path: "/Service/BarcodeV"}, {name: "服务中心", path: "/Service/BarcodeV"},
{name: "标准服务提供商", path: "/Service/Partners/index"}, {name: "标准服务提供商", path: "/Service/Partners/index"},
{name: "GS1标准服务提供商案例", path: "/Service/Partners/Case"}, {name: "GS1标准服务提供商案例", path: "/Service/Partners/CaseList"},
{name: "GS1标准服务提供商医疗行业案例"}, {name: "GS1标准服务提供商医疗行业案例"},
]); ]);
}, },
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
message: '注:用户名不能全为数字,且长度不得超过10字符', message: '注:用户名不能全为数字,且长度不得超过10字符',
},]"> },]">
<el-input v-model='form.userName' autocomplete='off'></el-input> <el-input v-model='form.userName' autocomplete='off'></el-input>
<p style="font-size: 13px;font-weight: 400;color: #F23535;line-height: 20px">注:用户名不能全为数字,且长度不得超过10字符</p>
</el-form-item> </el-form-item>
<el-form-item label='E-mail地址' <el-form-item label='E-mail地址'
...@@ -69,6 +70,7 @@ ...@@ -69,6 +70,7 @@
{ pattern: pwdPattern, message: '密码为6~20位字符'}, { pattern: pwdPattern, message: '密码为6~20位字符'},
{ validator:validatePass,}]"> { validator:validatePass,}]">
<el-input type='password' placeholder="请输入密码" v-model='form.password'></el-input> <el-input type='password' placeholder="请输入密码" v-model='form.password'></el-input>
<p style="font-size: 13px;font-weight: 400;color: #F23535;line-height: 20px">注:密码为6~20位字符</p>
</el-form-item> </el-form-item>
<el-form-item label='重复密码' <el-form-item label='重复密码'
......
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