mirror of
https://github.com/YMFE/yapi.git
synced 2025-03-31 14:50:26 +08:00
Merge branch 'master' of https://github.com/YMFE/yapi
This commit is contained in:
commit
23adaaa4e5
@ -35,10 +35,11 @@ class statisMockModel extends baseModel {
|
||||
return this.model.countDocuments({});
|
||||
}
|
||||
|
||||
getDayCount(timeInterval) {
|
||||
async getDayCount(timeInterval) {
|
||||
let end = timeInterval[1];
|
||||
let start = timeInterval[0];
|
||||
return this.model.aggregate([
|
||||
let data = [];
|
||||
const cursor = this.model.aggregate([
|
||||
{
|
||||
$match: {
|
||||
date: { $gt: start, $lte: end }
|
||||
@ -53,8 +54,11 @@ class statisMockModel extends baseModel {
|
||||
{
|
||||
$sort: { _id: 1 }
|
||||
}
|
||||
]).cursor({}).exec().toArray();
|
||||
}
|
||||
]).cursor({}).exec();
|
||||
await cursor.eachAsync(doc => data.push(doc));
|
||||
return data;
|
||||
|
||||
}
|
||||
|
||||
list() {
|
||||
return this.model.find({}).select('date').exec();
|
||||
|
@ -131,11 +131,11 @@ class WikiPage extends Component {
|
||||
};
|
||||
this.handleWebsocketAccidentClose(sendEditor, status => {
|
||||
// 如果websocket 启动不成功用户依旧可以对wiki 进行编辑
|
||||
if (!status) {
|
||||
// if (!status) {
|
||||
this.setState({
|
||||
isEditor: !this.state.isEditor
|
||||
});
|
||||
}
|
||||
// }
|
||||
});
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user