|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500 |
- import request from '@/utils/request'
-
- // 用户信息
- export function getMember(id){
- return request({
- url: '/transaction/member/userId/'+id,
- method: 'get',
- })
- }
-
- // 展示图片
- export function showUserImg(id){
- return request({
- url: 'transaction/member/showImg/memberId/'+id,
- method: 'get',
- })
- }
-
- //更新用户资料
- export function userUpdate(query){
- return request({
- url: '/transaction/member/edit',
- method: 'post',
- data: query
- })
- }
-
- //更新密码
- export function passWordUpdate(oldPassword, newPassword){
- const data = {
- oldPassword,
- newPassword
- }
- return request({
- url: '/system/user/profile/updatePwd',
- method: 'post',
- params: data
- })
- }
-
- //上传用户图片
- export function base64Attach(query){
- return request({
- url: '/common/base64Attach',
- method: 'post',
- data: query
- })
- }
-
- //删除用户图片
- export function deleteUserImg(id){
- return request({
- url: '/transaction/member/deleteImg/attachId/'+id,
- method: 'get',
- })
- }
-
- //发布咨询
- export function userCommunicate(query){
- return request({
- url: '/transaction/communicate/add',
- method: 'post',
- data: query
- })
- }
-
- //查询咨询
- export function userConsulting(query){
- return request({
- url: '/transaction/communicate/communicateList/member',
- method: 'get',
- params: query
- })
- }
-
- //修改咨询
- export function updateCommunicate(query){
- return request({
- url: '/transaction/communicate/edit',
- method: 'post',
- data: query
- })
- }
-
- //咨询详情
- export function selectCommunicate(id){
- return request({
- url: '/transaction/communicate/get/'+id,
- method: 'get'
- })
- }
-
- //删除咨询
- export function deleteInteraction(id){
- return request({
- url: '/transaction/communicate/remove/'+id,
- method: 'get'
- })
- }
-
- //查询供求
- export function supplyList(query){
- return request({
- url: '/transaction/demand/supplyDemandList/member',
- method: 'get',
- params: query
- })
- }
-
- //查询我的报名
- export function getSignupByMemberId(query){
- return request({
- url: '/transaction/signup/getSignupByMemberId',
- method: 'get',
- params: query
- })
- }
-
- //发布供求
- export function userDemand(query){
- return request({
- url: '/transaction/demand/add',
- method: 'post',
- data: query
- })
- }
-
- //修改供求
- export function updateDemand(query){
- return request({
- url: '/transaction/demand/edit',
- method: 'post',
- data: query
- })
- }
-
- //供求查询
- export function selectDemand(id){
- return request({
- url: '/transaction/demand/'+id,
- method: 'get',
- })
- }
-
- //个人供求
- export function supplyDetail(id) {
- return request({
- url: '/transaction/website/supplyDemand/id/'+id,
- method: 'get',
- })
- }
-
- //删除供求
- export function deleteSupply(id){
- return request({
- url: '/transaction/demand/remove/'+id,
- method: 'get'
- })
- }
-
- // 展示图片
- export function showImg(id){
- return request({
- url: '/transaction/website/supplyDemand/showImg/id/'+id,
- method: 'get',
- })
- }
-
- //我的竞价
- export function biddinglist(query){
- return request({
- url: '/transaction/outproject/biddinglist/member',
- method: 'get',
- params: query
- })
- }
-
- //我的竞价
- export function userBiddingList(query){
- return request({
- url: '/transaction/website/biddinglist/projectId',
- method: 'get',
- params: query
- })
- }
-
- //查询开户行
- export function realtimeList(query){
- return request({
- url: '/yinnong/deposit/realtimeList',
- method: 'post',
- data: query
- })
- }
-
- // 查询审批历史
- export function auditHistoryList(params) {
- return request({
- url: '/transaction/website/auditHistory/list',
- method: 'get',
- params: params
- });
- }
-
- export const options = [
- {
- "value": "北京",
- "label": "北京",
- "children": [
- {
- "value": "北京",
- "label": "北京",
- }]
- }, {
- "value": "天津",
- "label": "天津",
- "children": [
- {
- "value": "天津",
- "label": "天津",
- }]
- }, {
- "value": "重庆",
- "label": "重庆",
- "children": [
- {
- "value": "重庆",
- "label": "重庆",
- }]
- }, {
- "value": "四川",
- "label": "四川",
- "children": [
- {
- "value": "成都",
- "label": "成都",
- }, {
- "value": "自贡",
- "label": "自贡",
- }, {
- "value": "攀枝花",
- "label": "攀枝花",
- }, {
- "value": "泸州",
- "label": "泸州",
- }, {
- "value": "德阳",
- "label": "德阳",
- }, {
- "value": "绵阳",
- "label": "绵阳",
- }, {
- "value": "广元",
- "label": "广元",
- }, {
- "value": "遂宁",
- "label": "遂宁",
- }, {
- "value": "内江",
- "label": "内江",
- }, {
- "value": "乐山",
- "label": "乐山",
- }, {
- "value": "南充",
- "label": "南充",
- }, {
- "value": "眉山",
- "label": "眉山",
- }, {
- "value": "宜宾",
- "label": "宜宾",
- }, {
- "value": "广安",
- "label": "广安",
- }, {
- "value": "达州",
- "label": "达州",
- }, {
- "value": "雅安",
- "label": "雅安",
- }, {
- "value": "巴中",
- "label": "巴中",
- }, {
- "value": "资阳",
- "label": "资阳",
- }, {
- "value": "阿坝州",
- "label": "阿坝州",
- }, {
- "value": "甘孜州",
- "label": "甘孜州",
- }, {
- "value": "凉山",
- "label": "凉山",
- }]
- }, {
- "value": "山东",
- "label": "山东",
- "children": [
- {
- "value": "济南",
- "label": "济南",
- }, {
- "value": "青岛",
- "label": "青岛",
- }, {
- "value": "淄博",
- "label": "淄博",
- }, {
- "value": "枣庄",
- "label": "枣庄",
- }, {
- "value": "东营",
- "label": "东营",
- }, {
- "value": "烟台",
- "label": "烟台",
- }, {
- "value": "潍坊",
- "label": "潍坊",
- }, {
- "value": "济宁",
- "label": "济宁",
- }, {
- "value": "泰安",
- "label": "泰安",
- }, {
- "value": "威海",
- "label": "威海",
- }, {
- "value": "日照",
- "label": "日照",
- }, {
- "value": "莱芜",
- "label": "莱芜",
- }, {
- "value": "临沂",
- "label": "临沂",
- }, {
- "value": "德州",
- "label": "德州",
- }, {
- "value": "聊城",
- "label": "聊城",
- }, {
- "value": "滨州",
- "label": "滨州",
- }, {
- "value": "菏泽",
- "label": "菏泽",
- }]
- }, {
- "value": "内蒙古",
- "label": "内蒙古",
- "children": [
- {
- "value": "呼和浩特",
- "label": "呼和浩特",
- }, {
- "value": "包头",
- "label": "包头",
- }, {
- "value": "乌海",
- "label": "乌海",
- }, {
- "value": "赤峰",
- "label": "赤峰",
- }, {
- "value": "通辽",
- "label": "通辽",
- }, {
- "value": "鄂尔多斯",
- "label": "鄂尔多斯",
- }, {
- "value": "呼伦贝尔",
- "label": "呼伦贝尔",
- }, {
- "value": "巴彦淖尔",
- "label": "巴彦淖尔",
- }, {
- "value": "乌兰察布",
- "label": "乌兰察布",
- }, {
- "value": "兴安盟",
- "label": "兴安盟",
- }, {
- "value": "锡林郭勒",
- "label": "锡林郭勒",
- }, {
- "value": "阿拉善",
- "label": "阿拉善",
- }]
- }, {
- "value": "河北",
- "label": "河北",
- "children": [
- {
- "value": "石家庄",
- "label": "石家庄",
- }, {
- "value": "唐山",
- "label": "唐山",
- }, {
- "value": "秦皇岛",
- "label": "秦皇岛",
- }, {
- "value": "邯郸",
- "label": "邯郸",
- }, {
- "value": "邢台",
- "label": "邢台",
- }, {
- "value": "保定",
- "label": "保定",
- }, {
- "value": "张家口",
- "label": "张家口",
- }, {
- "value": "承德",
- "label": "承德",
- }, {
- "value": "沧州",
- "label": "沧州",
- }, {
- "value": "廊坊",
- "label": "廊坊",
- }, {
- "value": "衡水",
- "label": "衡水",
- }]
- }, {
- "value": "山西",
- "label": "山西",
- "children": [
- {
- "value": "太原",
- "label": "太原",
- }, {
- "value": "大同",
- "label": "大同",
- }, {
- "value": "阳泉",
- "label": "阳泉",
- }, {
- "value": "长治",
- "label": "长治",
- }, {
- "value": "晋城",
- "label": "晋城",
- }, {
- "value": "朔州",
- "label": "朔州",
- }, {
- "value": "晋中",
- "label": "晋中",
- }, {
- "value": "运城",
- "label": "运城",
- }, {
- "value": "忻州",
- "label": "忻州",
- }, {
- "value": "临汾",
- "label": "临汾",
- }, {
- "value": "吕梁",
- "label": "吕梁",
- }]
- }, {
- "value": "辽宁",
- "label": "辽宁",
- "children": [
- {
- "value": "沈阳",
- "label": "沈阳",
- }, {
- "value": "大连",
- "label": "大连",
- }, {
- "value": "鞍山",
- "label": "鞍山",
- }, {
- "value": "抚顺",
- "label": "抚顺",
- }, {
- "value": "本溪",
- "label": "本溪",
- }, {
- "value": "丹东",
- "label": "丹东",
- }, {
- "value": "锦州",
- "label": "锦州",
- }, {
- "value": "营口",
- "label": "营口",
- }, {
- "value": "阜新",
- "label": "阜新",
- }, {
- "value": "辽阳",
- "label": "辽阳",
- }, {
- "value": "盘锦",
- "label": "盘锦",
- }, {
- "value": "铁岭",
- "label": "铁岭",
- }, {
- "value": "朝阳",
- "label": "朝阳",
- }, {
- "value": "葫芦岛",
- "label": "葫芦岛",
- }]
- }, {
- "value": "吉林",
- "label": "吉林",
- "children": [
- {
- "value": "长春",
- "label": "长春",
- }, {
- "value": "吉林",
- "label": "吉林",
- }, {
- "value": "四平",
- "label": "四平",
- }, {
- "value": "辽源",
- "label": "辽源",
- }, {
- "value": "通化",
- "label": "通化",
- }, {
- "value": "白山",
- "label": "白山",
- }, {
- "value": "松原",
- "label": "松原",
- }, {
- "value": "白城",
- "label": "白城",
- }, {
- "value": "延边",
- "label": "延边",
- }]
- }, {
- "value": "黑龙江",
- "label": "黑龙江",
- "children": [
- {
- "value": "哈尔滨",
- "label": "哈尔滨",
- }, {
- "value": "齐齐哈尔",
- "label": "齐齐哈尔",
- }, {
- "value": "鸡西",
- "label": "鸡西",
- }, {
- "value": "鹤岗",
- "label": "鹤岗",
- }, {
- "value": "双鸭山",
- "label": "双鸭山",
- }, {
- "value": "大庆",
- "label": "大庆",
- }, {
- "value": "伊春",
- "label": "伊春",
- }, {
- "value": "佳木斯",
- "label": "佳木斯",
- }, {
- "value": "七台河",
- "label": "七台河",
- }, {
- "value": "牡丹江",
- "label": "牡丹江",
- }, {
- "value": "黑河",
- "label": "黑河",
- }, {
- "value": "绥化",
- "label": "绥化",
- }, {
- "value": "大兴安岭",
- "label": "大兴安岭",
- }]
- }, {
- "value": "上海",
- "label": "上海",
- "children": [
- {
- "value": "上海",
- "label": "上海",
- }]
- }, {
- "value": "江苏",
- "label": "江苏",
- "children": [
- {
- "value": "南京",
- "label": "南京",
- }, {
- "value": "无锡",
- "label": "无锡",
- }, {
- "value": "徐州",
- "label": "徐州",
- }, {
- "value": "常州",
- "label": "常州",
- }, {
- "value": "苏州",
- "label": "苏州",
- }, {
- "value": "南通",
- "label": "南通",
- }, {
- "value": "连云港",
- "label": "连云港",
- }, {
- "value": "淮安",
- "label": "淮安",
- }, {
- "value": "盐城",
- "label": "盐城",
- }, {
- "value": "扬州",
- "label": "扬州",
- }, {
- "value": "镇江",
- "label": "镇江",
- }, {
- "value": "泰州",
- "label": "泰州",
- }, {
- "value": "宿迁",
- "label": "宿迁",
-
- }]
- }, {
- "value": "浙江",
- "label": "浙江",
- "children": [
- {
- "value": "杭州",
- "label": "杭州",
- }, {
- "value": "宁波",
- "label": "宁波",
- }, {
- "value": "温州",
- "label": "温州",
- }, {
- "value": "嘉兴",
- "label": "嘉兴",
- }, {
- "value": "湖州",
- "label": "湖州",
- }, {
- "value": "绍兴",
- "label": "绍兴",
- }, {
- "value": "金华",
- "label": "金华",
- }, {
- "value": "衢州",
- "label": "衢州",
- }, {
- "value": "舟山",
- "label": "舟山",
- }, {
- "value": "台州",
- "label": "台州",
- }, {
- "value": "丽水",
- "label": "丽水",
- }]
- }, {
- "value": "安徽",
- "label": "安徽",
- "children": [
- {
- "value": "合肥",
- "label": "合肥",
- }, {
- "value": "芜湖",
- "label": "芜湖",
- }, {
- "value": "蚌埠",
- "label": "蚌埠",
- }, {
- "value": "淮南",
- "label": "淮南",
- }, {
- "value": "马鞍山",
- "label": "马鞍山",
- }, {
- "value": "淮北",
- "label": "淮北",
- }, {
- "value": "铜陵",
- "label": "铜陵",
- }, {
- "value": "安庆",
- "label": "安庆",
- }, {
- "value": "黄山",
- "label": "黄山",
- }, {
- "value": "滁州",
- "label": "滁州",
- }, {
- "value": "阜阳",
- "label": "阜阳",
- }, {
- "value": "宿州",
- "label": "宿州",
- }, {
- "value": "六安",
- "label": "六安",
- }, {
- "value": "亳州",
- "label": "亳州",
- }, {
- "value": "池州",
- "label": "池州",
- }, {
- "value": "宣城",
- "label": "宣城",
- }]
- }, {
- "value": "福建",
- "label": "福建",
- "children": [
- {
- "value": "福州",
- "label": "福州",
- }, {
- "value": "厦门",
- "label": "厦门",
- }, {
- "value": "莆田",
- "label": "莆田",
- }, {
- "value": "三明",
- "label": "三明",
- }, {
- "value": "泉州",
- "label": "泉州",
- }, {
- "value": "漳州",
- "label": "漳州",
- }, {
- "value": "南平",
- "label": "南平",
- }, {
- "value": "龙岩",
- "label": "龙岩",
- }, {
- "value": "宁德",
- "label": "宁德",
- }]
- }, {
- "value": "江西",
- "label": "江西",
- "children": [
- {
- "value": "南昌",
- "label": "南昌",
- }, {
- "value": "景德镇",
- "label": "景德镇",
- }, {
- "value": "萍乡",
- "label": "萍乡",
- }, {
- "value": "九江",
- "label": "九江",
- }, {
- "value": "新余",
- "label": "新余",
- }, {
- "value": "鹰潭",
- "label": "鹰潭",
- }, {
- "value": "赣州",
- "label": "赣州",
- }, {
- "value": "吉安",
- "label": "吉安",
- }, {
- "value": "宜春",
- "label": "宜春",
- }, {
- "value": "抚州",
- "label": "抚州",
- }, {
- "value": "上饶",
- "label": "上饶",
- }]
- }, {
- "value": "河南",
- "label": "河南",
- "children": [
- {
- "value": "郑州",
- "label": "郑州",
-
- }, {
- "value": "开封",
- "label": "开封",
- }, {
- "value": "洛阳",
- "label": "洛阳",
- }, {
- "value": "平顶山",
- "label": "平顶山",
- }, {
- "value": "安阳",
- "label": "安阳",
- }, {
- "value": "鹤壁",
- "label": "鹤壁",
- }, {
- "value": "新乡",
- "label": "新乡",
- }, {
- "value": "焦作",
- "label": "焦作",
- }, {
- "value": "濮阳",
- "label": "濮阳",
- }, {
- "value": "许昌",
- "label": "许昌",
- }, {
- "value": "漯河",
- "label": "漯河",
- }, {
- "value": "三门峡",
- "label": "三门峡",
- }, {
- "value": "南阳",
- "label": "南阳",
- }, {
- "value": "商丘",
- "label": "商丘",
- }, {
- "value": "信阳",
- "label": "信阳",
- }, {
- "value": "周口",
- "label": "周口",
- }, {
- "value": "驻马店",
- "label": "驻马店",
- }, {
- "value": "济源",
- "label": "济源",
- }]
- }, {
- "value": "湖北",
- "label": "湖北",
- "children": [
- {
- "value": "武汉",
- "label": "武汉",
- }, {
- "value": "黄石",
- "label": "黄石",
- }, {
- "value": "十堰",
- "label": "十堰",
- }, {
- "value": "宜昌",
- "label": "宜昌",
- }, {
- "value": "襄阳",
- "label": "襄阳",
- }, {
- "value": "鄂州",
- "label": "鄂州",
- }, {
- "value": "荆门",
- "label": "荆门",
- }, {
- "value": "孝感",
- "label": "孝感",
- }, {
- "value": "荆州",
- "label": "荆州",
- }, {
- "value": "黄冈",
- "label": "黄冈",
- }, {
- "value": "咸宁",
- "label": "咸宁",
- }, {
- "value": "随州",
- "label": "随州",
- }, {
- "value": "恩施",
- "label": "恩施",
- }, {
- "value": "仙桃",
- "label": "仙桃",
- }, {
- "value": "潜江",
- "label": "潜江",
- }, {
- "value": "天门",
- "label": "天门",
- }, {
- "value": "神农架",
- "label": "神农架",
- }]
- }, {
- "value": "湖南",
- "label": "湖南",
- "children": [
- {
- "value": "长沙",
- "label": "长沙",
- }, {
- "value": "株洲",
- "label": "株洲",
- }, {
- "value": "湘潭",
- "label": "湘潭",
- }, {
- "value": "衡阳",
- "label": "衡阳",
- }, {
- "value": "邵阳",
- "label": "邵阳",
- }, {
- "value": "岳阳",
- "label": "岳阳",
- }, {
- "value": "常德",
- "label": "常德",
- }, {
- "value": "张家界",
- "label": "张家界",
- }, {
- "value": "益阳",
- "label": "益阳",
- }, {
- "value": "郴州",
- "label": "郴州",
- }, {
- "value": "永州",
- "label": "永州",
- }, {
- "value": "怀化",
- "label": "怀化",
- }, {
- "value": "娄底",
- "label": "娄底",
- }, {
- "value": "湘西州",
- "label": "湘西州",
- }]
- }, {
- "value": "广东",
- "label": "广东",
- "children": [
- {
- "value": "广州",
- "label": "广州",
- }, {
- "value": "韶关",
- "label": "韶关",
- }, {
- "value": "深圳",
- "label": "深圳",
- }, {
- "value": "珠海",
- "label": "珠海",
- }, {
- "value": "汕头",
- "label": "汕头",
- }, {
- "value": "佛山",
- "label": "佛山",
- }, {
- "value": "江门",
- "label": "江门",
- }, {
- "value": "湛江",
- "label": "湛江",
- }, {
- "value": "茂名",
- "label": "茂名",
- }, {
- "value": "肇庆",
- "label": "肇庆",
- }, {
- "value": "惠州",
- "label": "惠州",
- }, {
- "value": "梅州",
- "label": "梅州",
- }, {
- "value": "汕尾",
- "label": "汕尾",
- }, {
- "value": "河源",
- "label": "河源",
- }, {
- "value": "阳江",
- "label": "阳江",
- }, {
- "value": "清远",
- "label": "清远",
- }, {
- "value": "东莞",
- "label": "东莞",
- }, {
- "value": "中山",
- "label": "中山",
- }, {
- "value": "潮州",
- "label": "潮州",
- }, {
- "value": "揭阳",
- "label": "揭阳",
- }, {
- "value": "云浮",
- "label": "云浮",
- }]
- }, {
- "value": "广西",
- "label": "广西",
- "children": [
- {
- "value": "南宁",
- "label": "南宁",
- }, {
- "value": "柳州",
- "label": "柳州",
- }, {
- "value": "桂林",
- "label": "桂林",
- }, {
- "value": "梧州",
- "label": "梧州",
- }, {
- "value": "北海",
- "label": "北海",
- }, {
- "value": "防城港",
- "label": "防城港",
- }, {
- "value": "钦州",
- "label": "钦州",
- }, {
- "value": "贵港",
- "label": "贵港",
- }, {
- "value": "玉林",
- "label": "玉林",
- }, {
- "value": "百色",
- "label": "百色",
- }, {
- "value": "贺州",
- "label": "贺州",
- }, {
- "value": "河池",
- "label": "河池",
- }, {
- "value": "来宾",
- "label": "来宾",
- }, {
- "value": "崇左",
- "label": "崇左",
- }]
- }, {
- "value": "海南",
- "label": "海南",
- "children": [
- {
- "value": "海口",
- "label": "海口",
- }, {
- "value": "三亚",
- "label": "三亚",
- }]
- }, {
- "value": "贵州",
- "label": "贵州",
- "children": [
- {
- "value": "贵阳",
- "label": "贵阳",
- }, {
- "value": "六盘水",
- "label": "六盘水",
- }, {
- "value": "遵义",
- "label": "遵义",
- }, {
- "value": "安顺",
- "label": "安顺",
- }, {
- "value": "毕节",
- "label": "毕节",
- }, {
- "value": "铜仁",
- "label": "铜仁",
- }, {
- "value": "黔西南",
- "label": "黔西南",
- }, {
- "value": "黔东南",
- "label": "黔东南",
- }, {
- "value": "黔南",
- "label": "黔南",
- }]
- }, {
- "value": "云南",
- "label": "云南",
- "children": [
- {
- "value": "昆明",
- "label": "昆明",
- }, {
- "value": "曲靖",
- "label": "曲靖",
- }, {
- "value": "玉溪",
- "label": "玉溪",
- }, {
- "value": "保山",
- "label": "保山",
- }, {
- "value": "昭通",
- "label": "昭通",
- }, {
- "value": "丽江",
- "label": "丽江",
- }, {
- "value": "普洱",
- "label": "普洱",
- }, {
- "value": "临沧",
- "label": "临沧",
- }, {
- "value": "楚雄",
- "label": "楚雄",
- }, {
- "value": "红河州",
- "label": "红河州",
- }, {
- "value": "文山州",
- "label": "文山州",
- }, {
- "value": "西双版纳",
- "label": "西双版纳",
- }, {
- "value": "大理",
- "label": "大理",
- }, {
- "value": "德宏",
- "label": "德宏",
- }, {
- "value": "怒江",
- "label": "怒江",
- }, {
- "value": "迪庆州",
- "label": "迪庆州",
- }]
- }, {
- "value": "西藏",
- "label": "西藏",
- "children": [
- {
- "value": "拉萨",
- "label": "拉萨",
- }, {
- "value": "日喀则",
- "label": "日喀则",
- }, {
- "value": "昌都",
- "label": "昌都",
- }, {
- "value": "林芝",
- "label": "林芝",
- }, {
- "value": "山南",
- "label": "山南",
- }, {
- "value": "那曲",
- "label": "那曲",
- }, {
- "value": "阿里地区",
- "label": "阿里地区",
- }]
- }, {
- "value": "陕西",
- "label": "陕西",
- "children": [
- {
- "value": "西安",
- "label": "西安",
- }, {
- "value": "铜川",
- "label": "铜川",
- }, {
- "value": "宝鸡",
- "label": "宝鸡",
- }, {
- "value": "咸阳",
- "label": "咸阳",
- }, {
- "value": "渭南",
- "label": "渭南",
- }, {
- "value": "延安",
- "label": "延安",
- }, {
- "value": "汉中",
- "label": "汉中",
- }, {
- "value": "榆林",
- "label": "榆林",
- }, {
- "value": "安康",
- "label": "安康",
- }, {
- "value": "商洛",
- "label": "商洛",
- }]
- }, {
- "value": "甘肃",
- "label": "甘肃",
- "children": [
- {
- "value": "兰州",
- "label": "兰州",
- }, {
- "value": "嘉峪关",
- "label": "嘉峪关",
- }, {
- "value": "金昌",
- "label": "金昌",
- }, {
- "value": "白银",
- "label": "白银",
- }, {
- "value": "天水",
- "label": "天水",
- }, {
- "value": "武威",
- "label": "武威",
- }, {
- "value": "张掖",
- "label": "张掖",
- }, {
- "value": "平凉",
- "label": "平凉",
- }, {
- "value": "酒泉",
- "label": "酒泉",
- }, {
- "value": "庆阳",
- "label": "庆阳",
- }, {
- "value": "定西",
- "label": "定西",
- }, {
- "value": "陇南",
- "label": "陇南",
- }, {
- "value": "临夏",
- "label": "临夏",
- }, {
- "value": "甘南",
- "label": "甘南",
- }]
- }, {
- "value": "青海",
- "label": "青海",
- "children": [
- {
- "value": "西宁",
- "label": "西宁",
- }, {
- "value": "海东",
- "label": "海东",
- }, {
- "value": "海北",
- "label": "海北",
- }, {
- "value": "黄南",
- "label": "黄南",
- }, {
- "value": "海南",
- "label": "海南",
- }, {
- "value": "果洛",
- "label": "果洛",
- }, {
- "value": "玉树",
- "label": "玉树",
- }, {
- "value": "海西",
- "label": "海西",
- }]
- }, {
- "value": "宁夏",
- "label": "宁夏",
- "children": [
- {
- "value": "银川",
- "label": "银川",
- }, {
- "value": "石嘴山",
- "label": "石嘴山",
- }, {
- "value": "吴忠",
- "label": "吴忠",
- }, {
- "value": "固原",
- "label": "固原",
- }, {
- "value": "中卫",
- "label": "中卫",
- }]
- }, {
- "value": "新疆",
- "label": "新疆",
- "children": [
- {
- "value": "乌鲁木齐",
- "label": "乌鲁木齐",
- }, {
- "value": "克拉玛依",
- "label": "克拉玛依",
- }, {
- "value": "吐鲁番",
- "label": "吐鲁番",
- }, {
- "value": "哈密",
- "label": "哈密",
- }, {
- "value": "昌吉州",
- "label": "昌吉州",
- }, {
- "value": "博尔塔拉",
- "label": "博尔塔拉",
- }, {
- "value": "巴音郭楞",
- "label": "巴音郭楞",
- }, {
- "value": "阿克苏",
- "label": "阿克苏",
- }, {
- "value": "克孜勒苏",
- "label": "克孜勒苏",
- }, {
- "value": "喀什",
- "label": "喀什",
- }, {
- "value": "和田",
- "label": "和田",
- }, {
- "value": "伊犁哈",
- "label": "伊犁哈",
- }, {
- "value": "塔城",
- "label": "塔城",
- }, {
- "value": "阿勒泰",
- "label": "阿勒泰",
- }, {
- "value": "石河子",
- "label": "石河子",
- }, {
- "value": "阿拉尔",
- "label": "阿拉尔",
- }, {
- "value": "图木舒克",
- "label": "图木舒克",
- }, {
- "value": "五家渠",
- "label": "五家渠",
- }, {
- "value": "北屯",
- "label": "北屯",
- }, {
- "value": "铁门关",
- "label": "铁门关",
- }, {
- "value": "双河",
- "label": "双河",
- }, {
- "value": "可克达拉",
- "label": "可克达拉",
- }, {
- "value": "昆玉",
- "label": "昆玉",
- }]
- }, {
- "value": "台湾",
- "label": "台湾",
- "children": [
- {
- "value": "台北",
- "label": "台北",
- }, {
- "value": "台南",
- "label": "台南",
- }, {
- "value": "彰化",
- "label": "彰化"
- }, {
- "value": "高雄",
- "label": "高雄",
- }, {
- "value": "新北",
- "label": "新北",
- }, {
- "value": "桃园",
- "label": "桃园",
- }, {
- "value": "台中",
- "label": "台中",
- }, {
- "value": "基隆",
- "label": "基隆",
- }, {
- "value": "新竹",
- "label": "新竹",
- }, {
- "value": "嘉义",
- "label": "嘉义",
- }, {
- "value": "竹北",
- "label": "竹北"
- }, {
- "value": "苗栗",
- "label": "苗栗",
- }, {
- "value": "南投",
- "label": "南投",
- }, {
- "value": "台东",
- "label": "台东",
- }, {
- "value": "连江",
- "label": "连江",
- }, {
- "value": "花莲",
- "label": "花莲",
- }, {
- "value": "金门",
- "label": "金门",
- }, {
- "value": "澎湖",
- "label": "澎湖",
- }, {
- "value": "屏东",
- "label": "屏东",
- }, {
- "value": "宜兰",
- "label": "宜兰",
- }, {
- "value": "云林",
- "label": "云林",
- }, {
- "value": "彰化",
- "label": "彰化",
- }]
- }, {
- "value": "香港",
- "label": "香港",
- "children": [
- {
- "value": "香港",
- "label": "香港",
- }]
- }, {
- "value": "澳门",
- "label": "澳门",
- "children": [
- {
- "value": "澳门",
- "label": "澳门",
- }]
- }]
|