Merge branch 'CTP'

ywj_dev
CTP 2 years ago
commit 1bb61a936d

@ -1,5 +1,5 @@
# 页面标题
VUE_APP_TITLE = 供应商自助管理系统
VUE_APP_TITLE = 供应商自助管理平台
# 开发环境配置
ENV = 'development'

@ -95,13 +95,15 @@
style="
position: absolute;
bottom: 0;
margin-left: 36%;
font-size: 18px;
font-size: 12px;
color: white;
width: 100%;
display: flex;
justify-content: center;
"
>
<a href="http://www.xmglxp.com/" target="_blank">
软件名称: 医院UDI管理系统
软件名称: 供应商自助管理平台
</a>
<a
href="http://www.xmglxp.com/"
@ -158,6 +160,7 @@ export default {
};
},
methods: {
//
verifyAlert(text) {
if (text === "success") {
this.loginForm.verificationCode = true;
@ -165,7 +168,7 @@ export default {
this.loginForm.verificationCode = false;
}
},
// handleLogin() {
/* // handleLogin() {
// if (!this.ruleForm.verificationCode) {
// this.$message({
// message: '',
@ -208,7 +211,7 @@ export default {
// return false;
// }
// });
// },
// }, */
getCookie() {
const username = Cookies.get("username");
@ -224,6 +227,7 @@ export default {
handleLogin() {
this.$refs.ruleForm.validate((valid) => {
if (valid) {
if (this.loginForm.verificationCode) {
this.loading = true;
if (this.loginForm.rememberMe) {
Cookies.set("username", this.loginForm.username, { expires: 30 });
@ -236,6 +240,7 @@ export default {
Cookies.remove("password");
// Cookies.remove('rememberMe');
}
this.$store
.dispatch("Login", this.loginForm)
.then((res) => {
@ -251,6 +256,12 @@ export default {
this.getCode();
}
});
} else {
this.$message({
message: "请向右滑动完成验证",
type: "warning",
});
}
}
});
},
@ -287,6 +298,7 @@ $light_gray: #eee;
background-image: url("../assets/login.jpg");
background-size: 100vw 100vh;
height: 100%;
overflow: hidden;
input:-webkit-autofill,
input:-webkit-autofill:hover,
@ -388,12 +400,6 @@ $light_gray: #eee;
cursor: pointer;
}
.thirdparty-button {
/*position: absolute;*/
/*right: .4666rem;*/
/*bottom: .37333rem;*/
}
.box-card {
margin-top: -20px;
height: 550px;

@ -594,6 +594,19 @@ export default {
callback();
}
};
//
const validatePatt = (rule, value, callback) => {
if (
/^([0-9A-HJ-NPQRTUWXY]{2}\d{6}[0-9A-HJ-NPQRTUWXY]{10}|[1-9]\d{14})$/.test(
value
) === false
) {
callback(new Error("请输入有效的的社会统一信用号"));
} else {
//
callback();
}
};
return {
inputQuery: {
nickName: null,
@ -678,6 +691,7 @@ export default {
creditNum: [
{ required: true, message: "请输入统一社会信用号", trigger: "blur" },
{ validator: validatePatt, trigger: "blur" },
],
area: [{ required: true, message: "请选择所属地区", trigger: "blur" }],
detailAddr: [

Loading…
Cancel
Save