Commit cf5ffe68 authored by youjie's avatar youjie

no message

parent 7cea2594
...@@ -53,7 +53,8 @@ ...@@ -53,7 +53,8 @@
</a-input-password> </a-input-password>
</a-form-item> </a-form-item>
<div class="mt-[34px] flex flex-row items-center"> <div class="mt-[34px] flex flex-row items-center items-center-button"
:class="[loginMsg.password&&loginMsg.password.length>=8&&loginMsg.email?'isClick':'']">
<a-button <a-button
type="primary" type="primary"
size="large" size="large"
...@@ -127,8 +128,8 @@ const loginMsg = reactive({ ...@@ -127,8 +128,8 @@ const loginMsg = reactive({
tenantId: systemConfigStore.tenantId || null, tenantId: systemConfigStore.tenantId || null,
reType: 0,//登录方式 0账号密码 1谷歌授权 3LINE授权 7FaceBook授权 reType: 0,//登录方式 0账号密码 1谷歌授权 3LINE授权 7FaceBook授权
openId: "", openId: "",
email: "2310721242@qq.com", email: "",//2310721242@qq.com
password: '123456', password: '',//123456
}) })
const loginTypes = ref([ const loginTypes = ref([
...@@ -305,13 +306,27 @@ init() ...@@ -305,13 +306,27 @@ init()
:deep(.arco-input-wrapper .arco-input.arco-input-size-large){ :deep(.arco-input-wrapper .arco-input.arco-input-size-large){
font-size: 16px; font-size: 16px;
} }
:deep(.arco-btn-primary){ :deep(.items-center-button .arco-btn-primary){
box-shadow: rgba(74,102,77,0.15) 0px 5px 15px; box-shadow: rgba(74,102,77,0.15) 0px 5px 15px;
background-color: var(--primary1-5-hover);
}
:deep(.items-center-button .arco-btn-primary:hover){
box-shadow: rgba(74,102,77,0.15) 0px 5px 15px;
background-color: var(--primary1-5-hover);
}
:deep(.items-center-button .isClick .arco-btn-primary){
background-color: var(--primary1-5); background-color: var(--primary1-5);
} }
:deep(.arco-btn-primary:hover){ :deep(.items-center-button .isClick .arco-btn-primary:hover){
background-color: var(--primary1-5); background-color: var(--primary1-5);
} }
// :deep(.arco-btn-primary){
// box-shadow: rgba(74,102,77,0.15) 0px 5px 15px;
// background-color: var(--primary1-5);
// }
// :deep(.arco-btn-primary:hover){
// background-color: var(--primary1-5);
// }
:deep(.arco-divider-text){ :deep(.arco-divider-text){
/*background: #fff;*/ /*background: #fff;*/
font-size: 16px; font-size: 16px;
......
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