通知提醒
@@ -20,7 +20,7 @@ export default {
props: {
show: {
type: Boolean,
- default: true
+ default: false
},
info: {
type: Object,
@@ -51,6 +51,7 @@ export default {
.msg-tips {
position: fixed;
right: 0;
+ bottom: -220px;
z-index: 999;
transition: bottom .5s;
.tips-card {
@@ -95,9 +96,10 @@ export default {
}
.hide-tips {
bottom: -220px;
-
+ transition: bottom .5s;
}
.show-tips {
bottom: 0px;
+ transition: bottom .5s;
}
\ No newline at end of file