修复导航点击失效问题
This commit is contained in:
@@ -86,6 +86,7 @@
|
||||
<script>
|
||||
import Layout from './Layout.vue'
|
||||
import Sortable from 'sortablejs'
|
||||
import {mapActions} from "vuex"
|
||||
|
||||
export default {
|
||||
name: 'Add',
|
||||
@@ -136,6 +137,7 @@ export default {
|
||||
this.getInfo().then(() => this.$route.params?.id && this.onChange(this.$route.params))
|
||||
},
|
||||
methods: {
|
||||
...mapActions(['closePage']),
|
||||
getInfo() {
|
||||
let {id} = this.$route.query
|
||||
if (!id) return Promise.reject()
|
||||
@@ -252,6 +254,7 @@ export default {
|
||||
},
|
||||
|
||||
cancel() {
|
||||
this.closePage()
|
||||
this.$router.push({})
|
||||
},
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<section class="preview">
|
||||
<ai-dv-wrapper :views="[{label: '返回'}]" :theme="config.theme" @change="$router.back()" v-if="screenId" :title="info.name">
|
||||
<ai-dv-wrapper :views="[{label: '返回'}]" :theme="config.theme" @change="handleBack" v-if="screenId" :title="info.name">
|
||||
<ai-dv-background
|
||||
:theme="config.theme"
|
||||
v-if="config.length || config.theme === '1'"
|
||||
@@ -12,6 +12,8 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapActions} from "vuex"
|
||||
|
||||
export default {
|
||||
name: "preview",
|
||||
props: {
|
||||
@@ -33,6 +35,7 @@ export default {
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
...mapActions(['closePage']),
|
||||
getDvData() {
|
||||
let {id} = this.$route.query
|
||||
this.instance.post(`${this.urlPrefix}/appdiylargescreen/queryLargeScreenDetailById?id=${id}`).then(res => {
|
||||
@@ -41,6 +44,10 @@ export default {
|
||||
this.config = JSON.parse(res.data.config).dashboard
|
||||
}
|
||||
})
|
||||
},
|
||||
handleBack() {
|
||||
this.$router.back()
|
||||
this.closePage()
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
Reference in New Issue
Block a user