|
@@ -0,0 +1,40 @@
|
|
|
+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',
|
|
|
+ }),
|
|
|
+ );
|
|
|
+}
|