22 lines
325 B
TypeScript
22 lines
325 B
TypeScript
import avatar from '../assets/image/notify.png'
|
|
import notify from '../assets/image/notify.png'
|
|
|
|
export const GenderOptions = [
|
|
{
|
|
label: '未知',
|
|
value: '0'
|
|
},
|
|
{
|
|
label: '男',
|
|
value: '1'
|
|
},
|
|
{
|
|
label: '女',
|
|
value: '2'
|
|
}
|
|
]
|
|
|
|
export const defAvatar = avatar
|
|
|
|
export const notifyIcon = notify
|