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.
185 lines
2.6 KiB
185 lines
2.6 KiB
/*
|
|
* @Author: mk 2403457699@qq.com
|
|
* @Date: 2023-08-01 10:13:40
|
|
* @LastEditors: mk 2403457699@qq.com
|
|
* @LastEditTime: 2024-02-27 19:04:44
|
|
* @Description: 此文件针对于本地字典,常用的男女或者是否一类需要在前端写的可以在此文件中添加
|
|
*
|
|
*
|
|
*/
|
|
// constants.js
|
|
export const genderList = [
|
|
{
|
|
label: '未知',
|
|
value: '0'
|
|
},
|
|
{
|
|
label: '男',
|
|
value: '1'
|
|
},
|
|
{
|
|
label: '女',
|
|
value: '2'
|
|
}
|
|
]
|
|
|
|
export const binaryOptionList = [
|
|
{
|
|
label: '是',
|
|
value: 1
|
|
},
|
|
{
|
|
label: '否',
|
|
value: 0
|
|
}
|
|
]
|
|
export const binaryOptionListReverse = [
|
|
{
|
|
label: '是',
|
|
value: 0
|
|
},
|
|
{
|
|
label: '否',
|
|
value: 1
|
|
}
|
|
]
|
|
export const politicsStatusList = [
|
|
{
|
|
label: '中国共产党党员',
|
|
value: 1
|
|
},
|
|
{
|
|
label: '群众',
|
|
value: 0
|
|
}
|
|
]
|
|
export const disabilityFlagList = [
|
|
{
|
|
label: '是',
|
|
value: 1
|
|
},
|
|
{
|
|
label: '否',
|
|
value: 0
|
|
}
|
|
]
|
|
export const hasOptions = [
|
|
{
|
|
label: '有',
|
|
value: 1
|
|
},
|
|
{
|
|
label: '无',
|
|
value: 0
|
|
}
|
|
]
|
|
export const dormitoryTypeList = [
|
|
{
|
|
label: '楼长',
|
|
value: '1'
|
|
},
|
|
{
|
|
label: '单元长',
|
|
value: '0'
|
|
}
|
|
]
|
|
|
|
//证件类型
|
|
export const idTypeList = [
|
|
{
|
|
label: '其他',
|
|
value: 0
|
|
},
|
|
{
|
|
label: '身份证',
|
|
value: 1
|
|
},
|
|
{
|
|
label: '护照',
|
|
value: 2
|
|
},
|
|
{
|
|
label: '港澳通行证',
|
|
value: 3
|
|
},
|
|
{
|
|
label: '军人证',
|
|
value: 4
|
|
},
|
|
{
|
|
label: '台胞证',
|
|
value: 5
|
|
}
|
|
]
|
|
|
|
export const completeList = [
|
|
{
|
|
label: '正在推进',
|
|
value: 0
|
|
},
|
|
{
|
|
label: '已完成',
|
|
value: 1
|
|
},
|
|
{
|
|
label: '已完成并取消风险标记',
|
|
value: 2
|
|
}
|
|
]
|
|
export const nonComplianceType = [
|
|
{
|
|
label: '已进入信访程序',
|
|
value: 0
|
|
},
|
|
{
|
|
label: '已进入诉讼、仲裁、纪检监察、行政、复议政府信息公开等程序',
|
|
value: 1
|
|
},
|
|
{
|
|
label: '不符合法律、法规、规章及政策规定',
|
|
value: 2
|
|
},
|
|
{
|
|
label: '涉及国家秘密、工作秘密、商业秘密、个人隐私',
|
|
value: 3
|
|
},
|
|
{
|
|
label: '违反社会工序良俗等其他情况',
|
|
value: 4
|
|
}
|
|
]
|
|
export const satisfactionType = [
|
|
{
|
|
label: '满意',
|
|
value: 0
|
|
},
|
|
{
|
|
label: '基本满意',
|
|
value: 1
|
|
},
|
|
{
|
|
label: '不满意',
|
|
value: 2
|
|
}
|
|
]
|
|
export const noSatisfactionType = [
|
|
{
|
|
label: '未回复',
|
|
value: 0
|
|
}, {
|
|
label: '服务态度差',
|
|
value: 1
|
|
},
|
|
{
|
|
label: '推诿扯皮',
|
|
value: 2
|
|
},
|
|
{
|
|
label: '处理不及时',
|
|
value: 3
|
|
},
|
|
{
|
|
label: '其他',
|
|
value: 4
|
|
}
|
|
]
|