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.
|
|
|
|
/*
|
|
|
|
|
* @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,
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
export const politicsStatusList = [
|
|
|
|
|
{
|
|
|
|
|
label: "中国共产党党员",
|
|
|
|
|
value: 1,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "群众",
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
export const healthyStatusList = [
|
|
|
|
|
{
|
|
|
|
|
label: "健康",
|
|
|
|
|
value: 1,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: "伤残",
|
|
|
|
|
value: 0,
|
|
|
|
|
},
|
|
|
|
|
];
|