forked from wangtunan/vue-mooc
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathuser.js
95 lines (93 loc) · 1.5 KB
/
user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import mongoose from 'mongoose'
import userData from '../initData/user.js';
import { getGuid } from '../../src/utils/utils.js'
const Schema = mongoose.Schema
const UserSchema = new Schema({
id: {
type: String,
required: true,
unique: true,
index: true
},
username: {
type: String,
required: true
},
password: {
type: String,
required: true
},
nickname: String,
avatar: {
type: String,
default: 'https://static.mukewang.com/static/img/avatar_default.png'
},
sex: {
type: String,
enum: ['male', 'female'],
default: 'male'
},
job: {
type: String,
default: ''
},
city: {
type: String,
default: ''
},
signature: {
type: String,
default: ''
},
hour: {
type: Number,
default: 0
},
exp: {
type: Number,
default: 0
},
integral: {
type: Number,
default: 0
},
follow: {
type: Number,
default: 0
},
fans: {
type: Number,
default: 0
},
email: {
type: String,
default: ''
},
qq: {
type: String,
default: ''
},
phone: {
type: String,
default: ''
},
wechat: {
type: String,
default: ''
},
weibo: {
type: String,
default: ''
}
})
const userModel = mongoose.model('user', UserSchema)
// 判断有没有数据,没有则初始化
userModel.find((err, data) => {
if (!data || data.length === 0) {
userData.forEach(item => {
item.id = getGuid()
userModel.create(item)
})
}
})
export default userModel