31 lines
500 B
JavaScript
31 lines
500 B
JavaScript
const MODULES = [
|
|
{
|
|
id: 'palm',
|
|
mark: '掌',
|
|
title: '手相报告',
|
|
description: '已开放 · 上传掌心照片',
|
|
status: 'available',
|
|
path: '/pages/palm/palm'
|
|
},
|
|
{
|
|
id: 'face',
|
|
mark: '面',
|
|
title: '面相解读',
|
|
description: '即将开放',
|
|
status: 'coming',
|
|
path: ''
|
|
},
|
|
{
|
|
id: 'bazi',
|
|
mark: '字',
|
|
title: '八字简批',
|
|
description: '即将开放',
|
|
status: 'coming',
|
|
path: ''
|
|
}
|
|
]
|
|
|
|
module.exports = {
|
|
MODULES
|
|
}
|