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.
33 lines
609 B
33 lines
609 B
|
2 years ago
|
/*
|
||
|
|
* @Author: mk 2403457699@qq.com
|
||
|
|
* @Date: 2023-08-01 10:13:40
|
||
|
|
* @LastEditors: mk 2403457699@qq.com
|
||
|
|
* @LastEditTime: 2023-08-01 10:17:32
|
||
|
|
* @Description: 此文件针对于本地字典,常用的男女或者是否一类需要在前端写的可以在此文件中添加
|
||
|
|
*
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
// constants.js
|
||
|
|
export const genderList = [
|
||
|
|
{
|
||
|
|
label: "男",
|
||
|
|
value: "1",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
label: "女",
|
||
|
|
value: "2",
|
||
|
|
},
|
||
|
|
];
|
||
|
|
|
||
|
|
export const binaryOptionList = [
|
||
|
|
{
|
||
|
|
label: "是",
|
||
|
|
value: 1,
|
||
|
|
},
|
||
|
|
{
|
||
|
|
label: "否",
|
||
|
|
value: 0,
|
||
|
|
},
|
||
|
|
// 更多的数组项...
|
||
|
|
];
|
||
|
|
|