1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import CallApp from 'callapp-lib';
- export default function (c, i) {
- i(
- 'callSzxApp',
- new CallApp({
- scheme: {
- protocol: 'SZXIosAPP',
- host: 'web',
- port: 80,
- },
- // intent: {
- // package: 'com.gemini.cloud.client',
- // action: undefined,
- // category: undefined,
- // component: undefined,
- // scheme: 'weixin',
- // },
- fallback: 'https://www.androidscloud.com',
- }),
- );
- i(
- 'callWechat',
- new CallApp({
- scheme: {
- protocol: 'weixin',
- host: 'web',
- port: 80,
- },
- // intent: {
- // package: 'com.gemini.cloud.client',
- // action: undefined,
- // category: undefined,
- // component: undefined,
- // scheme: 'weixin',
- // },
- fallback: 'https://weixin.qq.com',
- }),
- );
- }
|