@@ -149,4 +149,9 @@ export default {
.element-ui-loading {
z-index: 9999 !important;
}
+
+.el-message {
+ z-index: 99999 !important;
+ min-width: initial;
+}
</style>
@@ -72,17 +72,24 @@ export default {
this.$emit('close')
},
onClickEntry(entry) {
- if (entry.sceneCode) {
- this.$router.push({
- name: 'Home',
- query: {
- ...this.$route.query,
- ...{
- m: entry.sceneCode,
+ if (entry.sceneCode !== undefined) {
+ if (entry.sceneCode) {
+ this.$router.push({
+ name: 'Home',
+ query: {
+ ...this.$route.query,
+ ...{
+ m: entry.sceneCode,
+ }
- }
- })
- location.reload()
+ })
+ location.reload()
+ } else {
+ this.$message({
+ message: '敬请期待!',
+ type: 'warning',
} else {
this.$router.push({
name: entry.routeName