| 123456789101112131415161718192021222324252627282930 | 'use strict';/** * * * @author Zhong * @date 2018/10/11 * @version */if(typeof region !== 'undefined') {    region = [        '兰州',        '定西',        '天水',        '平凉',        '庆阳',        '武威',        '金昌',        '张掖',        '酒泉',        '甘矿',        '嘉峪关',        '临夏',        '合作',        '武都',        '白银',    ];    console.log(region);}
 |