feat: share窗口

This commit is contained in:
archer
2023-03-21 23:47:26 +08:00
parent d065539707
commit 984baf60f0
11 changed files with 33 additions and 13 deletions

View File

@@ -12,8 +12,8 @@ const BillSchema = new Schema({
required: true
},
time: {
type: Number,
default: () => Date.now()
type: Date,
default: () => new Date()
},
textLen: {
// 提示词+响应的总字数

View File

@@ -25,6 +25,10 @@ const ChatSchema = new Schema({
type: Number,
required: true
},
isShare: {
type: Boolean,
default: false
},
content: {
type: [
{