Merge pull request #69 from ronger-x/master

🎨 update README.md
This commit is contained in:
ronger 2022-11-16 10:04:10 +08:00 committed by GitHub
commit dd80a7967f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 37 additions and 36 deletions

View File

@ -1,4 +1,7 @@
# nebula
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Frymcu%2Fnebula.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Frymcu%2Fnebula?ref=badge_shield)
## 💡 简介
nebula[ˈnebyələ]n.星云)是一款现代化的知识社区项目,使用 Vue + NuxtJS + Element-UI 实现
@ -90,12 +93,15 @@ nebula[ˈnebyələ]n.星云)是一款现代化的知识社区项目,
在提功能建议前可以先看一下 [计划表](https://rymcu.com/article/29) ,避免重复提议
## 鸣谢
- 感谢以下开发者对 Nebula 作出的贡献:
<a href="https://github.com/rymcu/nebula/graphs/contributors">
<img src="https://contrib.rocks/image?repo=rymcu/nebula&max=1000" />
</a>
- 感谢 `JetBrains` 对本项目的帮助,为作者提供了开源许可版 `JetBrains` 全家桶
![JetBrains](assets/jb_beam.svg)
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Frymcu%2Fnebula.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Frymcu%2Fnebula?ref=badge_shield)
## Build Setup
```bash
@ -128,6 +134,5 @@ $ npm generate
For detailed explanation on how things work, check out [Nuxt.js docs](https://nuxtjs.org).
## License
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Frymcu%2Fnebula.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Frymcu%2Fnebula?ref=badge_large)

View File

@ -64,7 +64,8 @@
<el-table-column label="操作">
<template slot-scope="scope">
<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>
<el-button size="mini" type="primary" @click="updateTags(scope.$index, scope.row)" plain>编辑标签
@ -111,8 +112,10 @@
</el-col>
<el-col>
<el-pagination :hide-on-single-page="true" @size-change="handleUserSizeChange"
@current-change="handleUserCurrentChange" :current-page="users.pageNum" :page-sizes="[10, 20, 50, 100]"
:page-size="users.pageSize" layout="total, sizes, prev, pager, next, jumper" :total="users.total">
@current-change="handleUserCurrentChange" :current-page="users.pageNum"
:page-sizes="[10, 20, 50, 100]"
:page-size="users.pageSize" layout="total, sizes, prev, pager, next, jumper"
:total="users.total">
</el-pagination>
</el-col>
<el-col :span="24">
@ -192,8 +195,7 @@ export default {
components: {
EditTags
},
fetch() {
let { store, params, error } = this.$nuxt.context
asyncData({store, params, error}) {
return Promise.all([
store
.dispatch('dashboard/fetchDashboard', params)
@ -529,10 +531,8 @@ export default {
},
mounted() {
this.$store.commit("setActiveMenu", "admin-dashboard");
setTimeout(() => {
this.initLastThirtyDaysCharts(this.lastThirtyDays)
this.initHistoryCharts(this.history)
}, 5000);
}
}
</script>

View File

@ -136,7 +136,7 @@ export default {
}
return params.tag_id && !isNaN(Number(params.tag_id))
},
fetch({store, params, error}) {
asyncData({store, params, error}) {
return Promise.all([
store.dispatch('tag/fetchPostDetail', params)
.catch(err => error({statusCode: 404}))

View File

@ -70,8 +70,7 @@
}
return params.article_id && !isNaN(Number(params.article_id))
},
fetch() {
let {store, params, error} = this.$nuxt.context
asyncData({store, params, error}) {
return Promise.all([
store.dispatch('article/fetchPostDetail', params)
.catch(err => error({statusCode: 404}))

View File

@ -54,8 +54,7 @@ import gzh from "assets/rymcugzh.jpg";
Vue.prototype.$echarts = echarts;
export default {
name: "openData",
fetch() {
let { store, params, error } = this.$nuxt.context
asyncData({store, params, error}) {
return Promise.all([
store
.dispatch('open-data/fetchLastThirtyDays', params)
@ -155,9 +154,7 @@ export default {
},
mounted() {
this.$store.commit("setActiveMenu", "open-data");
setTimeout(() => {
this.initLastThirtyDaysCharts(this.lastThirtyDays)
}, 2000);
}
}
</script>

View File

@ -109,7 +109,7 @@ export default {
}
return params.portfolio_id && !isNaN(Number(params.portfolio_id))
},
fetch({store, params, error}) {
asyncData({store, params, error}) {
return Promise.all([
store.dispatch('portfolio/fetchPostDetail', params)
.catch(err => error({statusCode: 404}))