manifest.json 25.4 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
{
    "base64ToArrayBuffer": [
        "/core/service/api/base/base64.js",
        [
            [
                "/core/helpers/protocol/base/base64.js",
                "base64ToArrayBuffer"
            ]
        ]
    ],
    "arrayBufferToBase64": [
        "/core/service/api/base/base64.js",
        [
            [
                "/core/helpers/protocol/base/base64.js",
                "arrayBufferToBase64"
            ]
        ]
    ],
    "addInterceptor": [
        "/core/service/api/base/interceptor.js",
        [
            [
                "/core/helpers/protocol/base/interceptor.js",
                "addInterceptor"
            ]
        ]
    ],
    "removeInterceptor": [
        "/core/service/api/base/interceptor.js",
        [
            [
                "/core/helpers/protocol/base/interceptor.js",
                "removeInterceptor"
            ]
        ]
    ],
38 39 40 41
    "interceptors": [
        "/core/service/api/base/interceptor.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
    "request": [
        "/platforms/h5/service/api/network/request.js",
        [
            [
                "/core/helpers/protocol/network/request.js",
                "request"
            ]
        ]
    ],
    "uploadFile": [
        "/platforms/h5/service/api/network/upload-file.js",
        [
            [
                "/core/helpers/protocol/network/upload-file.js",
                "uploadFile"
            ]
        ]
    ],
    "downloadFile": [
        "/platforms/h5/service/api/network/download-file.js",
        [
            [
                "/core/helpers/protocol/network/download-file.js",
                "downloadFile"
            ]
        ]
    ],
    "connectSocket": [
        "/platforms/h5/service/api/network/socket.js",
        [
            [
                "/core/helpers/protocol/network/socket.js",
                "connectSocket"
            ]
        ]
    ],
    "onSocketOpen": [
        "/platforms/h5/service/api/network/socket.js",
        []
    ],
    "onSocketError": [
        "/platforms/h5/service/api/network/socket.js",
        []
    ],
    "sendSocketMessage": [
        "/platforms/h5/service/api/network/socket.js",
        [
            [
                "/core/helpers/protocol/network/socket.js",
                "sendSocketMessage"
            ]
        ]
    ],
    "onSocketMessage": [
        "/platforms/h5/service/api/network/socket.js",
        []
    ],
    "closeSocket": [
        "/platforms/h5/service/api/network/socket.js",
        [
            [
                "/core/helpers/protocol/network/socket.js",
                "closeSocket"
            ]
        ]
    ],
    "onSocketClose": [
        "/platforms/h5/service/api/network/socket.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
112 113 114 115
    "getUpdateManager": [
        "/core/service/api/network/update.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
    "navigateTo": [
        "/platforms/h5/service/api/route/route.js",
        [
            [
                "/core/helpers/protocol/route/route.js",
                "navigateTo"
            ]
        ],
        true
    ],
    "redirectTo": [
        "/platforms/h5/service/api/route/route.js",
        [
            [
                "/core/helpers/protocol/route/route.js",
                "redirectTo"
            ]
        ],
        true
    ],
    "reLaunch": [
        "/platforms/h5/service/api/route/route.js",
        [
            [
                "/core/helpers/protocol/route/route.js",
                "reLaunch"
            ]
        ],
        true
    ],
    "switchTab": [
        "/platforms/h5/service/api/route/route.js",
        [
            [
                "/core/helpers/protocol/route/route.js",
                "switchTab"
            ]
        ],
        true
    ],
    "navigateBack": [
        "/platforms/h5/service/api/route/route.js",
        [
            [
                "/core/helpers/protocol/route/route.js",
                "navigateBack"
            ]
        ],
        true
    ],
    "setStorage": [
fxy060608's avatar
fxy060608 已提交
167
        "/platforms/h5/service/api/storage/storage.js",
fxy060608's avatar
fxy060608 已提交
168 169 170 171 172 173 174 175
        [
            [
                "/core/helpers/protocol/storage/storage.js",
                "setStorage"
            ]
        ]
    ],
    "setStorageSync": [
fxy060608's avatar
fxy060608 已提交
176
        "/platforms/h5/service/api/storage/storage.js",
fxy060608's avatar
fxy060608 已提交
177 178 179 180 181 182 183 184
        [
            [
                "/core/helpers/protocol/storage/storage.js",
                "setStorageSync"
            ]
        ]
    ],
    "getStorage": [
fxy060608's avatar
fxy060608 已提交
185
        "/platforms/h5/service/api/storage/storage.js",
fxy060608's avatar
fxy060608 已提交
186 187 188 189 190 191 192 193
        [
            [
                "/core/helpers/protocol/storage/storage.js",
                "getStorage"
            ]
        ]
    ],
    "getStorageSync": [
fxy060608's avatar
fxy060608 已提交
194
        "/platforms/h5/service/api/storage/storage.js",
fxy060608's avatar
fxy060608 已提交
195 196 197 198 199 200 201 202
        [
            [
                "/core/helpers/protocol/storage/storage.js",
                "getStorageSync"
            ]
        ]
    ],
    "getStorageInfo": [
fxy060608's avatar
fxy060608 已提交
203
        "/platforms/h5/service/api/storage/storage.js",
fxy060608's avatar
fxy060608 已提交
204 205 206
        []
    ],
    "getStorageInfoSync": [
fxy060608's avatar
fxy060608 已提交
207
        "/platforms/h5/service/api/storage/storage.js",
fxy060608's avatar
fxy060608 已提交
208 209 210
        []
    ],
    "removeStorage": [
fxy060608's avatar
fxy060608 已提交
211
        "/platforms/h5/service/api/storage/storage.js",
fxy060608's avatar
fxy060608 已提交
212 213 214 215 216 217 218 219
        [
            [
                "/core/helpers/protocol/storage/storage.js",
                "removeStorage"
            ]
        ]
    ],
    "removeStorageSync": [
fxy060608's avatar
fxy060608 已提交
220
        "/platforms/h5/service/api/storage/storage.js",
fxy060608's avatar
fxy060608 已提交
221 222 223 224 225 226 227 228
        [
            [
                "/core/helpers/protocol/storage/storage.js",
                "removeStorageSync"
            ]
        ]
    ],
    "clearStorage": [
fxy060608's avatar
fxy060608 已提交
229
        "/platforms/h5/service/api/storage/storage.js",
fxy060608's avatar
fxy060608 已提交
230 231 232
        []
    ],
    "clearStorageSync": [
fxy060608's avatar
fxy060608 已提交
233
        "/platforms/h5/service/api/storage/storage.js",
fxy060608's avatar
fxy060608 已提交
234 235 236 237 238 239 240 241
        []
    ],
    "getLocation": [
        "/platforms/h5/service/api/location/get-location.js",
        [
            [
                "/core/helpers/protocol/location/get-location.js",
                "getLocation"
Q
qiang 已提交
242 243 244 245
            ],
            [
                "/platforms/h5/service/api/network/request.js",
                "request"
fxy060608's avatar
fxy060608 已提交
246 247 248 249 250 251 252 253 254 255
            ]
        ]
    ],
    "chooseLocation": [
        "/platforms/h5/service/api/location/choose-location.js",
        [
            [
                "/core/helpers/protocol/location/choose-location.js",
                "chooseLocation"
            ],
Q
qiang 已提交
256 257 258 259 260 261 262 263 264 265 266 267
            [
                "/platforms/h5/view/components/map/index.vue",
                "Map"
            ],
            [
                "/core/view/components/input/index.vue",
                "Input"
            ],
            [
                "/core/view/components/scroll-view/index.vue",
                "ScrollView"
            ],
Q
qiang 已提交
268 269 270 271
            [
                "/platforms/h5/service/api/network/request.js",
                "request"
            ],
Q
qiang 已提交
272 273 274 275
            [
                "/platforms/h5/service/api/location/get-location.js",
                "getLocation"
            ],
fxy060608's avatar
fxy060608 已提交
276 277 278 279 280 281 282 283 284 285 286 287 288
            [
                "/platforms/h5/components/system-routes/choose-location/index.vue",
                "ChooseLocation"
            ]
        ]
    ],
    "openLocation": [
        "/platforms/h5/service/api/location/open-location.js",
        [
            [
                "/core/helpers/protocol/location/open-location.js",
                "openLocation"
            ],
Q
qiang 已提交
289 290 291 292 293 294 295 296 297 298 299 300
            [
                "/platforms/h5/view/components/map/index.vue",
                "Map"
            ],
            [
                "/platforms/h5/service/api/network/request.js",
                "request"
            ],
            [
                "/platforms/h5/service/api/location/get-location.js",
                "getLocation"
            ],
fxy060608's avatar
fxy060608 已提交
301 302 303 304 305 306 307
            [
                "/platforms/h5/components/system-routes/open-location/index.vue",
                "OpenLocation"
            ]
        ]
    ],
    "createMapContext": [
fxy060608's avatar
fxy060608 已提交
308
        "/core/service/api/context/create-map-context.js",
fxy060608's avatar
fxy060608 已提交
309
        [
fxy060608's avatar
fxy060608 已提交
310 311 312 313
            [
                "/platforms/h5/service/api/context/operate-map-player.js",
                "operateMapPlayer"
            ],
fxy060608's avatar
fxy060608 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327
            [
                "/core/helpers/protocol/context/context.js",
                "createMapContext"
            ]
        ]
    ],
    "chooseImage": [
        "/platforms/h5/service/api/media/choose-image.js",
        [
            [
                "/core/helpers/protocol/media/choose-image.js",
                "chooseImage"
            ]
        ]
Q
qiang 已提交
328 329 330 331 332 333 334 335 336
    ],
    "chooseFile": [
        "/platforms/h5/service/api/media/choose-file.js",
        [
            [
                "/core/helpers/protocol/media/choose-file.js",
                "chooseFile"
            ]
        ]
fxy060608's avatar
fxy060608 已提交
337 338 339 340 341 342 343 344
    ],
    "previewImage": [
        "/platforms/h5/service/api/media/preview-image.js",
        [
            [
                "/core/helpers/protocol/media/preview-image.js",
                "previewImage"
            ],
fxy060608's avatar
fxy060608 已提交
345 346 347 348 349 350 351 352
            [
                "/core/view/components/swiper/index.vue",
                "Swiper"
            ],
            [
                "/core/view/components/swiper-item/index.vue",
                "SwiperItem"
            ],
fxy060608's avatar
fxy060608 已提交
353 354 355 356 357 358 359 360
            [
                "/core/view/components/movable-area/index.vue",
                "MovableArea"
            ],
            [
                "/core/view/components/movable-view/index.vue",
                "MovableView"
            ],
fxy060608's avatar
fxy060608 已提交
361 362 363 364 365 366
            [
                "/platforms/h5/components/system-routes/preview-image/index.vue",
                "PreviewImage"
            ]
        ]
    ],
fxy060608's avatar
fxy060608 已提交
367 368 369 370
    "closePreviewImage": [
        "/platforms/h5/service/api/media/preview-image.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
371 372 373 374 375 376 377 378 379
    "getImageInfo": [
        "/platforms/h5/service/api/media/get-image-info.js",
        [
            [
                "/core/helpers/protocol/media/get-image-info.js",
                "getImageInfo"
            ]
        ]
    ],
Q
qiang 已提交
380 381 382 383 384 385 386 387 388
    "getVideoInfo": [
        "/platforms/h5/service/api/media/get-video-info.js",
        [
            [
                "/core/helpers/protocol/media/get-video-info.js",
                "getVideoInfo"
            ]
        ]
    ],
Q
qiang 已提交
389 390 391 392 393 394 395 396 397
    "createAudioContext": [
        "/core/service/api/context/audio.js",
        [
            [
                "/core/helpers/protocol/context/context.js",
                "createAudioContext"
            ]
        ]
    ],
fxy060608's avatar
fxy060608 已提交
398 399 400 401 402 403 404 405 406 407 408 409 410 411
    "createInnerAudioContext": [
        "/platforms/h5/service/api/context/inner-audio.js",
        []
    ],
    "chooseVideo": [
        "/platforms/h5/service/api/media/choose-video.js",
        [
            [
                "/core/helpers/protocol/media/choose-video.js",
                "chooseVideo"
            ]
        ]
    ],
    "createVideoContext": [
fxy060608's avatar
fxy060608 已提交
412
        "/core/service/api/context/create-video-context.js",
fxy060608's avatar
fxy060608 已提交
413
        [
fxy060608's avatar
fxy060608 已提交
414 415 416 417
            [
                "/platforms/h5/service/api/context/operate-video-player.js",
                "operateVideoPlayer"
            ],
fxy060608's avatar
fxy060608 已提交
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
            [
                "/core/helpers/protocol/context/context.js",
                "createVideoContext"
            ]
        ]
    ],
    "getSystemInfo": [
        "/platforms/h5/service/api/device/get-system-info.js",
        [],
        true
    ],
    "getSystemInfoSync": [
        "/platforms/h5/service/api/device/get-system-info.js",
        [],
        true
    ],
    "canIUse": [
        "/core/service/api/base/can-i-use.js",
        [
            [
                "/core/helpers/protocol/base/can-i-use.js",
                "canIUse"
            ]
        ],
        true
    ],
    "getNetworkType": [
        "/platforms/h5/service/api/device/network-info.js",
        []
    ],
    "onNetworkStatusChange": [
        "/platforms/h5/service/api/device/network-info.js",
        []
    ],
Q
qiang 已提交
452 453 454 455
    "offNetworkStatusChange": [
        "/platforms/h5/service/api/device/network-info.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
456
    "onAccelerometerChange": [
Q
qiang 已提交
457 458 459 460 461 462
        "/platforms/h5/service/api/device/accelerometer.js",
        []
    ],
    "offAccelerometerChange": [
        "/platforms/h5/service/api/device/accelerometer.js",
        []
fxy060608's avatar
fxy060608 已提交
463 464
    ],
    "startAccelerometer": [
Q
qiang 已提交
465 466
        "/platforms/h5/service/api/device/accelerometer.js",
        []
fxy060608's avatar
fxy060608 已提交
467 468
    ],
    "stopAccelerometer": [
Q
qiang 已提交
469 470
        "/platforms/h5/service/api/device/accelerometer.js",
        []
fxy060608's avatar
fxy060608 已提交
471 472 473 474 475
    ],
    "onCompassChange": [
        "/platforms/h5/service/api/device/compass.js",
        []
    ],
Q
qiang 已提交
476 477 478 479
    "offCompassChange": [
        "/platforms/h5/service/api/device/compass.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
    "startCompass": [
        "/platforms/h5/service/api/device/compass.js",
        []
    ],
    "stopCompass": [
        "/platforms/h5/service/api/device/compass.js",
        []
    ],
    "makePhoneCall": [
        "/platforms/h5/service/api/device/make-phone-call.js",
        [
            [
                "/core/helpers/protocol/device/make-phone-call.js",
                "makePhoneCall"
            ]
        ]
    ],
Q
qiang 已提交
497 498 499 500 501 502 503 504 505 506 507 508 509
    "setClipboardData": [
        "/platforms/h5/service/api/device/clipboard.js",
        [
            [
                "/core/helpers/protocol/device/set-clipboard-data.js",
                "setClipboardData"
            ]
        ]
    ],
    "getClipboardData": [
        "/platforms/h5/service/api/device/clipboard.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
510 511 512 513 514 515 516 517
    "vibrateLong": [
        "/platforms/h5/service/api/device/vibrate.js",
        []
    ],
    "vibrateShort": [
        "/platforms/h5/service/api/device/vibrate.js",
        []
    ],
518 519 520 521
    "onThemeChange": [
        "/core/service/api/device/theme.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
522 523 524 525
    "onUIStyleChange": [
        "/core/service/api/device/theme.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
526
    "hideKeyboard": [
fxy060608's avatar
fxy060608 已提交
527
        "/platforms/h5/service/api/keyboard/keyboard.js",
fxy060608's avatar
fxy060608 已提交
528 529
        []
    ],
Q
qiang 已提交
530
    "onKeyboardHeightChange": [
fxy060608's avatar
fxy060608 已提交
531 532 533
        "/core/service/api/keyboard/keyboard.js",
        []
    ],
Q
qiang 已提交
534 535 536 537
    "offKeyboardHeightChange": [
        "/core/service/api/keyboard/keyboard.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
538 539
    "getSelectedTextRange": [
        "/core/service/api/keyboard/get-selected-text-range.js",
Q
qiang 已提交
540 541
        []
    ],
fxy060608's avatar
fxy060608 已提交
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
    "showToast": [
        "/platforms/h5/service/api/ui/popup.js",
        [
            [
                "/core/helpers/protocol/ui/popup.js",
                "showToast"
            ],
            [
                "/platforms/h5/components/app/popup/toast.vue",
                "Toast"
            ],
            [
                "/platforms/h5/components/app/popup/mixins/toast.js",
                "ToastMixin"
            ]
        ]
    ],
    "hideToast": [
        "/platforms/h5/service/api/ui/popup.js",
        [
            [
                "/platforms/h5/components/app/popup/toast.vue",
                "Toast"
            ],
            [
                "/platforms/h5/components/app/popup/mixins/toast.js",
                "ToastMixin"
            ]
        ]
    ],
    "showLoading": [
        "/platforms/h5/service/api/ui/popup.js",
        [
            [
                "/core/helpers/protocol/ui/popup.js",
                "showLoading"
            ],
            [
                "/platforms/h5/components/app/popup/toast.vue",
                "Toast"
            ],
            [
                "/platforms/h5/components/app/popup/mixins/toast.js",
                "ToastMixin"
            ]
        ]
    ],
    "hideLoading": [
        "/platforms/h5/service/api/ui/popup.js",
        [
            [
                "/platforms/h5/components/app/popup/toast.vue",
                "Toast"
            ],
            [
                "/platforms/h5/components/app/popup/mixins/toast.js",
                "ToastMixin"
            ]
        ]
    ],
    "showModal": [
        "/platforms/h5/service/api/ui/popup.js",
        [
            [
                "/core/helpers/protocol/ui/popup.js",
                "showModal"
            ],
            [
                "/platforms/h5/components/app/popup/modal.vue",
                "Modal"
            ],
            [
                "/platforms/h5/components/app/popup/mixins/modal.js",
                "ModalMixin"
            ]
        ]
    ],
    "showActionSheet": [
        "/platforms/h5/service/api/ui/popup.js",
        [
            [
                "/core/helpers/protocol/ui/popup.js",
                "showActionSheet"
            ],
            [
                "/platforms/h5/components/app/popup/actionSheet.vue",
fxy060608's avatar
fxy060608 已提交
628
                "ActionSheet"
fxy060608's avatar
fxy060608 已提交
629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733
            ],
            [
                "/platforms/h5/components/app/popup/mixins/action-sheet.js",
                "ActionSheetMixin"
            ]
        ]
    ],
    "setNavigationBarTitle": [
        "/platforms/h5/service/api/ui/navigation-bar.js",
        [
            [
                "/core/helpers/protocol/ui/navigation-bar.js",
                "setNavigationBarTitle"
            ]
        ]
    ],
    "setNavigationBarColor": [
        "/platforms/h5/service/api/ui/navigation-bar.js",
        [
            [
                "/core/helpers/protocol/ui/navigation-bar.js",
                "setNavigationBarColor"
            ]
        ]
    ],
    "showNavigationBarLoading": [
        "/platforms/h5/service/api/ui/navigation-bar.js",
        []
    ],
    "hideNavigationBarLoading": [
        "/platforms/h5/service/api/ui/navigation-bar.js",
        []
    ],
    "setTabBarItem": [
        "/platforms/h5/service/api/ui/tab-bar.js",
        [
            [
                "/core/helpers/protocol/ui/tab-bar.js",
                "setTabBarItem"
            ]
        ]
    ],
    "setTabBarStyle": [
        "/platforms/h5/service/api/ui/tab-bar.js",
        [
            [
                "/core/helpers/protocol/ui/tab-bar.js",
                "setTabBarStyle"
            ]
        ]
    ],
    "hideTabBar": [
        "/platforms/h5/service/api/ui/tab-bar.js",
        [
            [
                "/core/helpers/protocol/ui/tab-bar.js",
                "hideTabBar"
            ]
        ]
    ],
    "showTabBar": [
        "/platforms/h5/service/api/ui/tab-bar.js",
        [
            [
                "/core/helpers/protocol/ui/tab-bar.js",
                "showTabBar"
            ]
        ]
    ],
    "setTabBarBadge": [
        "/platforms/h5/service/api/ui/tab-bar.js",
        [
            [
                "/core/helpers/protocol/ui/tab-bar.js",
                "setTabBarBadge"
            ]
        ]
    ],
    "removeTabBarBadge": [
        "/platforms/h5/service/api/ui/tab-bar.js",
        [
            [
                "/core/helpers/protocol/ui/tab-bar.js",
                "removeTabBarBadge"
            ]
        ]
    ],
    "showTabBarRedDot": [
        "/platforms/h5/service/api/ui/tab-bar.js",
        [
            [
                "/core/helpers/protocol/ui/tab-bar.js",
                "showTabBarRedDot"
            ]
        ]
    ],
    "hideTabBarRedDot": [
        "/platforms/h5/service/api/ui/tab-bar.js",
        [
            [
                "/core/helpers/protocol/ui/tab-bar.js",
                "hideTabBarRedDot"
            ]
        ]
    ],
fxy060608's avatar
fxy060608 已提交
734 735 736 737 738 739 740 741 742
    "onTabBarMidButtonTap": [
        "/core/service/api/ui/tab-bar.js",
        [
            [
                "/platforms/h5/service/api/ui/tab-bar.js",
                "setTabBarBadge"
            ]
        ]
    ],
fxy060608's avatar
fxy060608 已提交
743
    "createAnimation": [
Q
qiang 已提交
744
        "/core/service/api/ui/create-animation.js",
fxy060608's avatar
fxy060608 已提交
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
        []
    ],
    "pageScrollTo": [
        "/core/service/api/ui/page-scroll-to.js",
        [
            [
                "/core/helpers/protocol/ui/page-scroll-to.js",
                "pageScrollTo"
            ]
        ]
    ],
    "onWindowResize": [
        "/platforms/h5/service/api/ui/window.js",
        []
    ],
    "offWindowResize": [
        "/platforms/h5/service/api/ui/window.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
764 765 766 767 768 769 770 771 772
    "loadFontFace": [
        "/core/service/api/ui/load-font-face.js",
        [
            [
                "/core/helpers/protocol/ui/load-font-face.js",
                "loadFontFace"
            ]
        ]
    ],
fxy060608's avatar
fxy060608 已提交
773 774 775 776 777 778 779 780
    "startPullDownRefresh": [
        "/platforms/h5/service/api/ui/pull-down-refresh.js",
        []
    ],
    "stopPullDownRefresh": [
        "/platforms/h5/service/api/ui/pull-down-refresh.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
781
    "createSelectorQuery": [
fxy060608's avatar
fxy060608 已提交
782
        "/core/service/api/ui/create-selector-query.js",
fxy060608's avatar
fxy060608 已提交
783
        [
fxy060608's avatar
fxy060608 已提交
784 785 786 787
            [
                "/platforms/h5/service/api/ui/request-component-info.js",
                "requestComponentInfo"
            ],
fxy060608's avatar
fxy060608 已提交
788 789 790 791 792 793 794
            [
                "/core/view/bridge/subscribe/api/request-component-info.js",
                "requestComponentInfo"
            ]
        ]
    ],
    "createIntersectionObserver": [
fxy060608's avatar
fxy060608 已提交
795
        "/core/service/api/ui/create-intersection-observer.js",
fxy060608's avatar
fxy060608 已提交
796 797 798
        [
            [
                "/core/view/bridge/subscribe/api/request-component-observer.js",
fxy060608's avatar
fxy060608 已提交
799 800 801 802
                "requestComponentObserver"
            ],
            [
                "/core/view/bridge/subscribe/api/request-component-observer.js",
fxy060608's avatar
fxy060608 已提交
803 804 805 806
                "destroyComponentObserver"
            ]
        ]
    ],
fxy060608's avatar
fxy060608 已提交
807 808
    "createMediaQueryObserver": [
        "/core/service/api/ui/create-media-query-observer.js",
Q
qiang 已提交
809 810 811 812 813 814 815 816 817 818
        [
            [
                "/core/view/bridge/subscribe/api/request-media-query-observer.js",
                "requestMediaQueryObserver"
            ],
            [
                "/core/view/bridge/subscribe/api/request-media-query-observer.js",
                "destroyMediaQueryObserver"
            ]
        ]
fxy060608's avatar
fxy060608 已提交
819
    ],
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843
    "showTopWindow": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
    "showLeftWindow": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
    "showRightWindow": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
    "hideTopWindow": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
    "hideLeftWindow": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
    "hideRightWindow": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
Q
qiang 已提交
844 845 846 847 848 849 850 851 852 853 854 855
    "getTopWindowStyle": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
    "getLeftWindowStyle": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
    "getRightWindowStyle": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
Q
qiang 已提交
856 857 858 859 860 861 862 863 864 865 866 867
    "setTopWindowStyle": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
    "setLeftWindowStyle": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
    "setRightWindowStyle": [
        "/platforms/h5/service/api/ui/windows.js",
        []
    ],
868 869 870 871 872 873 874 875 876 877 878 879
    "getLocale": [
        "/core/service/api/ui/locale.js",
        []
    ],
    "setLocale": [
        "/core/service/api/ui/locale.js",
        []
    ],
    "onLocaleChange": [
        "/core/service/api/ui/locale.js",
        []
    ],
fxy060608's avatar
fxy060608 已提交
880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915
    "$emit": [
        "/platforms/h5/service/api/base/event-bus.js",
        [
            [
                "/core/helpers/protocol/base/event-bus.js",
                "$emit"
            ]
        ]
    ],
    "$on": [
        "/platforms/h5/service/api/base/event-bus.js",
        [
            [
                "/core/helpers/protocol/base/event-bus.js",
                "$on"
            ]
        ]
    ],
    "$once": [
        "/platforms/h5/service/api/base/event-bus.js",
        [
            [
                "/core/helpers/protocol/base/event-bus.js",
                "$once"
            ]
        ]
    ],
    "$off": [
        "/platforms/h5/service/api/base/event-bus.js",
        [
            [
                "/core/helpers/protocol/base/event-bus.js",
                "$off"
            ]
        ]
    ],
fxy060608's avatar
fxy060608 已提交
916 917
    "getFileInfo": [
        "/platforms/h5/service/api/file/file.js",
Q
qiang 已提交
918 919 920 921 922 923
        [
            [
                "/core/helpers/protocol/file/file.js",
                "getFileInfo"
            ]
        ]
fxy060608's avatar
fxy060608 已提交
924
    ],
fxy060608's avatar
fxy060608 已提交
925 926 927 928 929 930 931 932 933 934
    "openDocument": [
        "/platforms/h5/service/api/file/open-document.js",
        [
            [
                "/core/helpers/protocol/file/open-document.js",
                "openDocument"
            ]
        ]
    ],
    "createCanvasContext": [
fxy060608's avatar
fxy060608 已提交
935
        "/core/service/api/context/canvas.js",
fxy060608's avatar
fxy060608 已提交
936 937 938 939 940 941 942 943
        [
            [
                "/core/helpers/protocol/context/context.js",
                "createCanvasContext"
            ]
        ]
    ],
    "canvasToTempFilePath": [
fxy060608's avatar
fxy060608 已提交
944
        "/core/service/api/context/canvas.js",
fxy060608's avatar
fxy060608 已提交
945 946 947 948 949 950 951 952
        [
            [
                "/core/helpers/protocol/context/canvas.js",
                "canvasToTempFilePath"
            ]
        ]
    ],
    "canvasPutImageData": [
fxy060608's avatar
fxy060608 已提交
953
        "/core/service/api/context/canvas.js",
fxy060608's avatar
fxy060608 已提交
954 955 956 957 958 959 960 961
        [
            [
                "/core/helpers/protocol/context/canvas.js",
                "canvasPutImageData"
            ]
        ]
    ],
    "canvasGetImageData": [
fxy060608's avatar
fxy060608 已提交
962
        "/core/service/api/context/canvas.js",
fxy060608's avatar
fxy060608 已提交
963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987
        [
            [
                "/core/helpers/protocol/context/canvas.js",
                "canvasGetImageData"
            ]
        ]
    ],
    "getProvider": [
        "/platforms/h5/service/api/plugin/get-provider.js",
        [
            [
                "/core/helpers/protocol/plugin/get-provider.js",
                "getProvider"
            ]
        ]
    ],
    "upx2px": [
        "/core/service/api/base/upx2px.js",
        [
            [
                "/core/helpers/protocol/base/upx2px.js",
                "upx2px"
            ]
        ],
        true
988 989 990 991
    ],
    "setPageMeta": [
        "/core/service/api/ui/set-page-meta.js",
        []
fxy060608's avatar
fxy060608 已提交
992 993 994 995 996 997 998 999 1000
    ],
    "preloadPage": [
        "/platforms/h5/service/api/route/route.js",
        [
            [
                "/core/helpers/protocol/route/route.js",
                "preloadPage"
            ]
        ]
fxy060608's avatar
fxy060608 已提交
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
    ],
    "invokePushCallback": [
        "/core/service/api/plugin/push.js",
        []
    ],
    "getPushCid": [
        "/core/service/api/plugin/push.js",
        []
    ],
    "onPushMessage": [
        "/core/service/api/plugin/push.js",
        []
    ],
    "offPushMessage": [
        "/core/service/api/plugin/push.js",
        []
fxy060608's avatar
fxy060608 已提交
1017 1018
    ]
}