(json1, json2)
| 270 | *json2 新数据 |
| 271 | */ |
| 272 | extend(json1, json2) { |
| 273 | var newJson = json1; |
| 274 | for (var j in json2) { |
| 275 | newJson[j] = json2[j]; |
| 276 | } |
| 277 | return newJson; |
| 278 | } |
| 279 | |
| 280 | //showLoading |
| 281 | showLoading() { |
no outgoing calls
no test coverage detected