1/* 2 * Copyright (c) 2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16export const cityData = [ 17 { 18 "name": "北京", 19 "temp": "32", 20 "weather": "晴" 21 }, 22 { 23 "name": "上海", 24 "temp": "28", 25 "weather": "阴" 26 }, 27 { 28 "name": "广州", 29 "temp": "35", 30 "weather": "小雨" 31 }, 32 { 33 "name": "天津", 34 "temp": "35", 35 "weather": "中雨" 36 }, 37 { 38 "name": "武汉", 39 "temp": "26", 40 "weather": "多云" 41 }, 42 { 43 "name": "沈阳", 44 "temp": "25", 45 "weather": "晴" 46 }, 47 { 48 "name": "重庆", 49 "temp": "27", 50 "weather": "小雨" 51 }, 52 { 53 "name": "杭州", 54 "temp": "35", 55 "weather": "晴" 56 }, 57 { 58 "name": "南京", 59 "temp": "25", 60 "weather": "晴" 61 }, 62 { 63 "name": "哈尔滨", 64 "temp": "25", 65 "weather": "晴" 66 }, 67 { 68 "name": "长春", 69 "temp": "28", 70 "weather": "阵雨" 71 }, 72 { 73 "name": "呼和浩特", 74 "temp": "25", 75 "weather": "晴" 76 }, 77 { 78 "name": "石家庄", 79 "temp": "25", 80 "weather": "晴" 81 }, 82 { 83 "name": "银川", 84 "temp": "25", 85 "weather": "晴" 86 }, 87 { 88 "name": "乌鲁木齐", 89 "temp": "25", 90 "weather": "晴" 91 }, 92 { 93 "name": "拉萨", 94 "temp": "35", 95 "weather": "晴" 96 }, 97 { 98 "name": "西宁", 99 "temp": "25", 100 "weather": "晴" 101 }, 102 { 103 "name": "西安", 104 "temp": "25", 105 "weather": "晴" 106 }, 107 { 108 "name": "兰州", 109 "temp": "25", 110 "weather": "多云" 111 }, 112 { 113 "name": "太原", 114 "temp": "25", 115 "weather": "阴" 116 }, 117 { 118 "name": "昆明", 119 "temp": "25", 120 "weather": "小雨" 121 }, 122 { 123 "name": "南宁", 124 "temp": "20", 125 "weather": "晴" 126 } 127]