mirror of
https://github.com/kuaifan/dootask.git
synced 2026-03-19 04:03:38 +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);
|
this.$store.dispatch("handleClearCache", data).then(this.goNext);
|
||||||
}).catch(({data, msg}) => {
|
}).catch(({data, msg}) => {
|
||||||
if (data.code === 'email') {
|
if (data.code === 'email') {
|
||||||
|
this.loginType = 'login';
|
||||||
$A.modalWarning(msg);
|
$A.modalWarning(msg);
|
||||||
} else {
|
} else {
|
||||||
$A.modalError(msg);
|
$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 {
|
.ivu-badge-count {
|
||||||
font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
|
font-family: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -157,6 +157,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ol {
|
||||||
|
li {
|
||||||
|
&:before {
|
||||||
|
width: auto;
|
||||||
|
min-width: 1.2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
&:before,
|
&:before,
|
||||||
&:after {
|
&:after {
|
||||||
|
|||||||
@ -550,6 +550,8 @@
|
|||||||
counter-increment: list-0;
|
counter-increment: list-0;
|
||||||
|
|
||||||
&:before {
|
&:before {
|
||||||
|
width: auto;
|
||||||
|
min-width: 1.2em;
|
||||||
content: counter(list-0, decimal) '. ';
|
content: counter(list-0, decimal) '. ';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -120,8 +120,8 @@
|
|||||||
height: 18px;
|
height: 18px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
padding: 0 4px;
|
padding: 0 4px;
|
||||||
transform: scale(0.8);
|
margin-left: 4px;
|
||||||
transform-origin: right center;
|
zoom: 0.8;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
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 {
|
.login-box {
|
||||||
|
flex-shrink: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-top: 36px;
|
margin-top: 36px;
|
||||||
width: 400px;
|
width: 400px;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user