🐛 编辑页面编辑器渲染问题修复
This commit is contained in:
parent
d0bda1fac9
commit
7fd164414d
@ -64,7 +64,8 @@
|
|||||||
<el-table-column label="操作">
|
<el-table-column label="操作">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button v-if="scope.row.articlePerfect === '1'" size="mini"
|
<el-button v-if="scope.row.articlePerfect === '1'" size="mini"
|
||||||
@click="cancelPreference(scope.$index, scope.row.idArticle)" plain>取消优选</el-button>
|
@click="cancelPreference(scope.$index, scope.row.idArticle)" plain>取消优选
|
||||||
|
</el-button>
|
||||||
<el-button v-else size="mini" @click="setPreference(scope.$index, scope.row.idArticle)" plain>设为优选
|
<el-button v-else size="mini" @click="setPreference(scope.$index, scope.row.idArticle)" plain>设为优选
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button size="mini" type="primary" @click="updateTags(scope.$index, scope.row)" plain>编辑标签
|
<el-button size="mini" type="primary" @click="updateTags(scope.$index, scope.row)" plain>编辑标签
|
||||||
@ -111,8 +112,10 @@
|
|||||||
</el-col>
|
</el-col>
|
||||||
<el-col>
|
<el-col>
|
||||||
<el-pagination :hide-on-single-page="true" @size-change="handleUserSizeChange"
|
<el-pagination :hide-on-single-page="true" @size-change="handleUserSizeChange"
|
||||||
@current-change="handleUserCurrentChange" :current-page="users.pageNum" :page-sizes="[10, 20, 50, 100]"
|
@current-change="handleUserCurrentChange" :current-page="users.pageNum"
|
||||||
:page-size="users.pageSize" layout="total, sizes, prev, pager, next, jumper" :total="users.total">
|
:page-sizes="[10, 20, 50, 100]"
|
||||||
|
:page-size="users.pageSize" layout="total, sizes, prev, pager, next, jumper"
|
||||||
|
:total="users.total">
|
||||||
</el-pagination>
|
</el-pagination>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="24">
|
<el-col :span="24">
|
||||||
@ -192,8 +195,7 @@ export default {
|
|||||||
components: {
|
components: {
|
||||||
EditTags
|
EditTags
|
||||||
},
|
},
|
||||||
fetch() {
|
asyncData({store, params, error}) {
|
||||||
let { store, params, error } = this.$nuxt.context
|
|
||||||
return Promise.all([
|
return Promise.all([
|
||||||
store
|
store
|
||||||
.dispatch('dashboard/fetchDashboard', params)
|
.dispatch('dashboard/fetchDashboard', params)
|
||||||
@ -529,10 +531,8 @@ export default {
|
|||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$store.commit("setActiveMenu", "admin-dashboard");
|
this.$store.commit("setActiveMenu", "admin-dashboard");
|
||||||
setTimeout(() => {
|
|
||||||
this.initLastThirtyDaysCharts(this.lastThirtyDays)
|
this.initLastThirtyDaysCharts(this.lastThirtyDays)
|
||||||
this.initHistoryCharts(this.history)
|
this.initHistoryCharts(this.history)
|
||||||
}, 5000);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -136,7 +136,7 @@ export default {
|
|||||||
}
|
}
|
||||||
return params.tag_id && !isNaN(Number(params.tag_id))
|
return params.tag_id && !isNaN(Number(params.tag_id))
|
||||||
},
|
},
|
||||||
fetch({store, params, error}) {
|
asyncData({store, params, error}) {
|
||||||
return Promise.all([
|
return Promise.all([
|
||||||
store.dispatch('tag/fetchPostDetail', params)
|
store.dispatch('tag/fetchPostDetail', params)
|
||||||
.catch(err => error({statusCode: 404}))
|
.catch(err => error({statusCode: 404}))
|
||||||
|
@ -70,8 +70,7 @@
|
|||||||
}
|
}
|
||||||
return params.article_id && !isNaN(Number(params.article_id))
|
return params.article_id && !isNaN(Number(params.article_id))
|
||||||
},
|
},
|
||||||
fetch() {
|
asyncData({store, params, error}) {
|
||||||
let {store, params, error} = this.$nuxt.context
|
|
||||||
return Promise.all([
|
return Promise.all([
|
||||||
store.dispatch('article/fetchPostDetail', params)
|
store.dispatch('article/fetchPostDetail', params)
|
||||||
.catch(err => error({statusCode: 404}))
|
.catch(err => error({statusCode: 404}))
|
||||||
|
@ -54,8 +54,7 @@ import gzh from "assets/rymcugzh.jpg";
|
|||||||
Vue.prototype.$echarts = echarts;
|
Vue.prototype.$echarts = echarts;
|
||||||
export default {
|
export default {
|
||||||
name: "openData",
|
name: "openData",
|
||||||
fetch() {
|
asyncData({store, params, error}) {
|
||||||
let { store, params, error } = this.$nuxt.context
|
|
||||||
return Promise.all([
|
return Promise.all([
|
||||||
store
|
store
|
||||||
.dispatch('open-data/fetchLastThirtyDays', params)
|
.dispatch('open-data/fetchLastThirtyDays', params)
|
||||||
@ -155,9 +154,7 @@ export default {
|
|||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$store.commit("setActiveMenu", "open-data");
|
this.$store.commit("setActiveMenu", "open-data");
|
||||||
setTimeout(() => {
|
|
||||||
this.initLastThirtyDaysCharts(this.lastThirtyDays)
|
this.initLastThirtyDaysCharts(this.lastThirtyDays)
|
||||||
}, 2000);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@ -109,7 +109,7 @@ export default {
|
|||||||
}
|
}
|
||||||
return params.portfolio_id && !isNaN(Number(params.portfolio_id))
|
return params.portfolio_id && !isNaN(Number(params.portfolio_id))
|
||||||
},
|
},
|
||||||
fetch({store, params, error}) {
|
asyncData({store, params, error}) {
|
||||||
return Promise.all([
|
return Promise.all([
|
||||||
store.dispatch('portfolio/fetchPostDetail', params)
|
store.dispatch('portfolio/fetchPostDetail', params)
|
||||||
.catch(err => error({statusCode: 404}))
|
.catch(err => error({statusCode: 404}))
|
||||||
|
Loading…
Reference in New Issue
Block a user