You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
810 B
43 lines
810 B
// api调用目录
|
|
// export const apiUrl = 'https://xahmk.nssoft.net/api'
|
|
export const apiUrl = 'https://www.xnhmk.com/api'
|
|
|
|
// cnd域名。没有就填写后端域名
|
|
export const cdnUrl = 'https://www.xnhmk.com'
|
|
// export const cdnUrl = 'https://xahmk.nssoft.net'
|
|
// 用户默认头像位置
|
|
export const avatar = 'static/avatar.png'
|
|
|
|
export const base = {
|
|
logo: '',
|
|
title: '雄安文化惠民',
|
|
slogo: '',
|
|
version: '0.9.0',
|
|
}
|
|
|
|
// 初始化内容
|
|
export const init = {
|
|
// 用户协议
|
|
agreement: [{
|
|
id: 100,
|
|
title: '《用户协议》',
|
|
}, {
|
|
id: 102,
|
|
title: '《隐私协议》',
|
|
}]
|
|
}
|
|
|
|
// 用户默认
|
|
export const userDefault = {
|
|
avatar: avatar,
|
|
id: 0,
|
|
bio: base.slogo,
|
|
mobile: '',
|
|
nickname: '游客',
|
|
score: 0,
|
|
money: '0.00',
|
|
level: 0,
|
|
token: '',
|
|
user_id: 0,
|
|
username: 'user'
|
|
}
|
|
|