export default { mapList() { return [ { label: '中国', StationName1: '', StationName2: '', StationName5: '', adcode: 100000, value: 'zhongguo', }, { label: '黑龙江省', StationName1: '黑龙江省', StationName2: '', StationName5: '', adcode: 230000, value: 'heilongjiangsheng', }, { label: '黑龙江省-哈尔滨市', StationName1: '黑龙江省', StationName2: '哈尔滨市', StationName5: '', adcode: 230100, value: 'haerbinshi', }, { label: '湖北省', StationName1: '湖北省', StationName2: '', StationName5: '', adcode: 420000, value: 'hubeisheng' }, { label: '湖北省-武汉市', StationName1: '湖北省', StationName2: '', StationName5: '', adcode: 420100, value: 'wuhan' }, { label: '广东省', StationName1: '广东省', StationName2: '', StationName5: '', adcode: 440000, value: 'guangzhousheng' }, { label: '广东省-广州市', StationName1: '广东省', StationName2: '广州市', StationName5: '', adcode: 440100, value: 'guangzhoushi' }, { label: '广东省-佛山市', StationName1: '广东省', StationName2: '佛山市', StationName5: '', adcode: 440600, value: 'foshanshi' }, { label: '广东省-清远市', StationName1: '广东省', StationName2: '清远市', StationName5: '', adcode: 441800, value: 'qingyuan' }, { label: '山西省', StationName1: '山西省', StationName2: '', StationName5: '', adcode: 140000, value: 'shanxi' }, { label: '山西省-太原市', StationName1: '山西省', StationName2: '太原市', StationName5: '', adcode: 140100, value: 'taiyuan' }, { label: '山东省', StationName1: '山东省', StationName2: '', StationName5: '', adcode: 370000, value: 'shandong' }, { label: '山东省-烟台市', StationName1: '山东省', StationName2: '烟台市', StationName5: '', adcode: 370600, value: 'yantai' }, { label: '山东省-临沂市', StationName1: '山东省', StationName2: '临沂市', StationName5: '', adcode: 371300, value: 'linyishi' }, { label: '贵州省', StationName1: '贵州省', StationName2: '', StationName5: '', adcode: 520000, value: 'guizhousheng' }, { label: '河南省-平顶山市', StationName1: '河南省', StationName2: '平顶山市', StationName5: '', adcode: 410400, value: 'pingdingshan' }, { label: "河北省", StationName1: '河北省', StationName2: '', StationName5: '', adcode: 130000, value: 'hebeisheng' }, { label: "河北省-秦皇岛市", StationName1: '河北省', StationName2: '秦皇岛市', StationName5: '', adcode: 130300, value: 'qinhuangdaoshi' }, { label: "云南省", StationName1: '云南省', StationName2: '', StationName5: '', adcode: 530000, value: 'yunnansheng' }, { label: "江苏省", StationName1: "江苏省", StationName2: '', StationName5: '', adcode: 320000, value: 'jiangsusheng' }, { label: "江苏省-苏州市", StationName1: "江苏省", StationName2: '苏州市', StationName5: '', adcode: 320500, value: 'suzhoushi' }, { label: "江苏省-无锡市", StationName1: "江苏省", StationName2: '无锡市', StationName5: '', adcode: 320200, value: 'wuxishi' }, { label: "江苏省-苏州市-吴中区", StationName1: "江苏省", StationName2: '苏州市', StationName5: '吴中区', adcode: 320506, value: 'suzhouwuzhongqu' }, { label: "吉林省", StationName1: "吉林省", StationName2: '', StationName5: '', adcode: 220000, value: 'jilinsheng' }, { label: "内蒙古自治区", StationName1: "内蒙古自治区", StationName2: '', StationName5: '', adcode: 150000, value: 'neimengguzizhiqu' }, { label: "内蒙古自治区-通辽市", StationName1: "内蒙古自治区", StationName2: '通辽市', StationName5: '', adcode: 150500, value: 'tongliaoshi' }, { label: "广西壮族自治区", StationName1: "广西壮族自治区", StationName2: "", StationName5: "", adcode: 450000, value: "guangxizhuangzuzizhiqu" }, { label: "广西壮族自治区-百色市", StationName1: "广西壮族自治区", StationName2: "百色市", StationName5: "", adcode: 451000, value: "baiseshi" }, { label: "辽宁省", StationName1: "辽宁省", StationName2: "", StationName5: "", adcode: 210000, value: "liaoningsheng" }, { label: "辽宁省-本溪市", StationName1: "辽宁省", StationName2: "本溪市", StationName5: "", adcode: 210500, value: "benxishi" }, { label: "辽宁省-大连市", StationName1: "辽宁省", StationName2: "大连市", StationName5: "", adcode: 210200, value: "dalianshi" }, { label: "福建省", StationName1: "福建省", StationName2: "", StationName5: "", adcode: 350000, value: "fujiansheng" }, { label: "福建省-福州市", StationName1: "福建省", StationName2: "福州市", StationName5: "", adcode: 350100, value: "fuzhoushi" }, { label: "四川省", StationName1: "四川省", StationName2: "", StationName5: "", adcode: 510000, value: "sichuansheng" } ]; }, getItemByValue(value, list) { let result = false; for (let i = 0; i < list.length; i++) { let item = list[i]; if (item.value == value) { result = item; } } return result; }, };