mirror of
https://github.com/kuaifan/dootask.git
synced 2026-03-07 09:57:37 +00:00
no message
This commit is contained in:
parent
79b5ca4db0
commit
7c4c03bbd4
@ -546,6 +546,7 @@ export default {
|
||||
this.$store.dispatch("handleClearCache", data).then(this.goNext);
|
||||
}).catch(({data, msg}) => {
|
||||
if (data.code === 'email') {
|
||||
this.loginType = 'login';
|
||||
$A.modalWarning(msg);
|
||||
} else {
|
||||
$A.modalError(msg);
|
||||
|
||||
39
resources/assets/sass/pages/common.scss
vendored
39
resources/assets/sass/pages/common.scss
vendored
@ -21,6 +21,45 @@ body {
|
||||
}
|
||||
}
|
||||
|
||||
.form-list {
|
||||
ol,
|
||||
ul {
|
||||
li {
|
||||
list-style-type: none;
|
||||
|
||||
&::before {
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
width: 1.2em;
|
||||
text-align: left;
|
||||
margin-right: 0.2em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ul {
|
||||
li {
|
||||
&::before {
|
||||
content: '\2022';
|
||||
font-weight: 900;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ol {
|
||||
li {
|
||||
counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
|
||||
counter-increment: list-0;
|
||||
|
||||
&:before {
|
||||
width: auto;
|
||||
min-width: 1.2em;
|
||||
content: counter(list-0, decimal) '. ';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ivu-badge-count {
|
||||
font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
|
||||
}
|
||||
|
||||
@ -157,6 +157,15 @@
|
||||
}
|
||||
}
|
||||
|
||||
ol {
|
||||
li {
|
||||
&:before {
|
||||
width: auto;
|
||||
min-width: 1.2em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
&:before,
|
||||
&:after {
|
||||
|
||||
@ -550,6 +550,8 @@
|
||||
counter-increment: list-0;
|
||||
|
||||
&:before {
|
||||
width: auto;
|
||||
min-width: 1.2em;
|
||||
content: counter(list-0, decimal) '. ';
|
||||
}
|
||||
}
|
||||
|
||||
@ -120,8 +120,8 @@
|
||||
height: 18px;
|
||||
line-height: 18px;
|
||||
padding: 0 4px;
|
||||
transform: scale(0.8);
|
||||
transform-origin: right center;
|
||||
margin-left: 4px;
|
||||
zoom: 0.8;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
||||
1
resources/assets/sass/pages/page-login.scss
vendored
1
resources/assets/sass/pages/page-login.scss
vendored
@ -27,6 +27,7 @@
|
||||
}
|
||||
}
|
||||
.login-box {
|
||||
flex-shrink: 0;
|
||||
position: relative;
|
||||
margin-top: 36px;
|
||||
width: 400px;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user