mirror of
https://gitee.com/elegant_wings/dbd-meeting-html.git
synced 2025-06-21 04:29:36 +08:00
修改部分内容
This commit is contained in:
parent
1df7fb0f15
commit
a6f5fc2589
@ -95,4 +95,27 @@ ol {
|
||||
|
||||
.ant-pro-page-header-wrap-children-content{
|
||||
margin: 5px 5px 0;
|
||||
}
|
||||
|
||||
// 左侧菜单背景色
|
||||
.ant-menu-dark, .ant-menu-dark .ant-menu-sub{
|
||||
color: #FFF;
|
||||
background-image: linear-gradient(to left,#0B5E8C 50px, #0A3D6F);
|
||||
}
|
||||
|
||||
// 二级菜单背景色
|
||||
.ant-menu-dark .ant-menu-inline.ant-menu-sub {
|
||||
color: #FFF;
|
||||
background-image: linear-gradient(to left,#0B5E8C 50px, #0A3D6F);
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) inset
|
||||
}
|
||||
|
||||
// 二级菜单文字颜色
|
||||
.ant-menu-dark .ant-menu-item, .ant-menu-dark .ant-menu-item-group-title, .ant-menu-dark .ant-menu-item > a {
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
// logo背景色
|
||||
.ant-pro-sider-menu-logo {
|
||||
background-image: linear-gradient(to left,#0B5E8C 50px, #0A3D6F);
|
||||
}
|
@ -4,10 +4,10 @@
|
||||
<a-col :md="24" :lg="16">
|
||||
<a-form @submit="handleSubmit" :form="form" layout="vertical">
|
||||
<a-form-item>
|
||||
<a-input-password placeholder="单位帐号" v-decorator="['loginName', {rules: [{ required: true, message: '请选录入旧密码' }]}]"/>
|
||||
<a-input placeholder="单位帐号" v-decorator="['loginName', {rules: [{ required: true, message: '请输入单位帐号' }]}]"/>
|
||||
</a-form-item>
|
||||
<a-form-item>
|
||||
<a-input-password placeholder="旧密码" v-decorator="['password', {rules: [{ required: true, message: '请选录入旧密码' }]}]"/>
|
||||
<a-input-password placeholder="旧密码" autocomplete="new-password" v-decorator="['password', {rules: [{ required: true, message: '请输入旧密码' }]}]"/>
|
||||
</a-form-item>
|
||||
<a-popover
|
||||
placement="rightTop"
|
||||
@ -25,6 +25,7 @@
|
||||
</template>
|
||||
<a-form-item>
|
||||
<a-input-password
|
||||
autocomplete="new-password"
|
||||
@click="handlePasswordInputClick"
|
||||
placeholder="新密码至少6位密码,区分大小写"
|
||||
v-decorator="['newPassword', {rules: [{ required: true, message: '新密码至少6位密码,区分大小写'}, { validator: this.handlePasswordLevel }], validateTrigger: ['change', 'blur']}]"
|
||||
@ -34,6 +35,7 @@
|
||||
|
||||
<a-form-item>
|
||||
<a-input-password
|
||||
autocomplete="new-password"
|
||||
placeholder="重复新密码"
|
||||
v-decorator="['rePassword', {rules: [{ required: true, message: '新密码至少6位密码,区分大小写' }, { validator: this.handlePasswordCheck }], validateTrigger: ['change', 'blur']}]"
|
||||
></a-input-password>
|
||||
|
Loading…
x
Reference in New Issue
Block a user