/* * @Company: hugeInfo * @Author: ldh * @Date: 2022-03-07 15:26:41 * @LastEditTime: 2024-01-26 12:35:19 * @LastEditors: lwh * @Version: 1.0.0 * @Description: 公共下拉框数据 */ // 民族 const national = [ { title: 'A', items: [{ value: '39', label: '阿昌族' }], }, { title: 'B', items: [ { value: '09', label: '布依族', }, { value: '14', label: '白族', title: 'B', }, { value: '34', label: '布朗族', title: 'B', }, { value: '46', label: '崩龙族', title: 'B', }, { value: '47', label: '保安族', title: 'B', }, ], }, { title: 'C', items: [ { value: '10', label: '朝鲜族', title: 'C', }, ], }, { title: 'D', items: [ { value: '12', label: '侗族', title: 'D', }, { value: '18', label: '傣族', title: 'D', }, { value: '26', label: '东乡族', title: 'D', }, { value: '31', label: '达斡尔族', title: 'D', }, { value: '51', label: '独龙族', title: 'D', }, ], }, { title: 'E', items: [ { value: '44', label: '俄罗斯族', title: 'E', }, { value: '45', label: '鄂温克族', title: 'E', }, { value: '52', label: '鄂伦春族', title: 'E', }, ], }, { title: 'F', items: [], }, { title: 'G', items: [ { value: '23', label: '高山族', title: 'G', }, ], }, { title: 'H', items: [ { value: '01', label: '汉族', title: 'H', }, { value: '03', label: '回族', title: 'H', }, { value: '16', label: '哈尼族', title: 'H', }, { value: '17', label: '哈萨克族', title: 'H', }, { value: '53', label: '赫哲族', title: 'H', }, ], }, { title: 'I', items: [], }, { title: 'J', items: [ { value: '28', label: '景颇族', title: 'J', }, { value: '49', label: '京族', title: 'J', }, { value: '56', label: '基诺族', title: 'J', }, ], }, { title: 'K', items: [ { value: '29', label: '柯尔克孜族', title: 'K', }, ], }, { title: 'L', items: [ { value: '19', label: '黎族', title: 'L', }, { value: '20', label: '傈僳族', title: 'L', }, { value: '24', label: '拉祜族', title: 'L', }, { value: '55', label: '珞巴族', title: 'L', }, ], }, { title: 'M', items: [ { value: '06', label: '苗族', title: 'M', }, { value: '02', label: '蒙古族', title: 'M', }, { value: '11', label: '满族', title: 'M', }, { value: '32', label: '仫佬族', title: 'M', }, { value: '36', label: '毛难族', title: 'M', }, { value: '37', label: '仡佬族', title: 'M', }, { value: '54', label: '门巴族', title: 'M', }, ], }, { title: 'N', items: [ { value: '27', label: '纳西族', title: 'N', }, { value: '42', label: '怒族', title: 'N', }, ], }, { title: 'O', items: [], }, { title: 'P', items: [ { value: '40', label: '普米族', title: 'P', }, ], }, { title: 'Q', items: [ { value: '33', label: '羌族', title: 'Q', }, { value: '97', label: '其他', title: 'Q', }, ], }, { title: 'R', items: [], }, { title: 'S', items: [ { value: '22', label: '畲族', title: 'S', }, { value: '25', label: '水族', title: 'S', }, { value: '35', label: '撒拉族', title: 'S', }, ], }, { title: 'T', items: [ { value: '15', label: '土家族', title: 'T', }, { value: '30', label: '土族', title: 'T', }, { value: '41', label: '塔吉克族', title: 'T', }, { value: '50', label: '塔塔尔族', title: 'T', }, ], }, { title: 'U', items: [], }, { title: 'V', items: [], }, { title: 'W', items: [ { value: '05', label: '维吾尔族', title: 'W', }, { value: '21', label: '佤族', title: 'W', }, { value: '43', label: '乌孜别克族', title: 'W', }, { value: '98', label: '外国血统中国籍人士', title: 'W', }, ], }, { title: 'X', items: [ { value: '38', label: '锡伯族', title: 'X', }, ], }, { title: 'Y', items: [ { value: '07', label: '彝族', title: 'Y', }, { value: '13', label: '瑶族', title: 'Y', }, { value: '48', label: '裕固族', title: 'Y', }, ], }, { title: 'Z', items: [ { value: '08', label: '壮族', title: 'Z', }, { value: '04', label: '藏族', title: 'Z', }, ], }, ]; const obj = { national, }; export default obj;