123456789101112131415 |
- import { implJsapi } from './base';
- export var getSystemInfo = implJsapi({
- alipay: function (instance) {
- return new Promise(function (resolve, reject) {
- instance.getSystemInfo({
- success: function (res) {
- resolve(res);
- },
- fail: function () {
- reject();
- },
- });
- });
- },
- });
|