宜呗小程序--微信小程序
Lzk
2025-08-05 b7bcaf556aa2424e808b6e6426ab22df9cfe11c1
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
import App from './App.uvue'
 
import { createSSRApp } from 'vue'
export function createApp() {
 
    const app = createSSRApp(App)
 
    // 图片地址
    app.config.globalProperties.$images = 'https://test-skfq.iben-itech.com/zip'
 
    //客服联系电话
    app.config.globalProperties.$customerServicePhone = '400-1699-8160'
 
    //在线客服地址
    app.config.globalProperties.$customerServiceUrl = 'https://ykf-weixin01.7moor.com/wapchat.html?accessId=0a043e50-4a64-11ef-8b85-491e10dcec05&fromUrl=http://hhttsl&urlTitle=APP&language=ZHCN&wechatOrAppImplant=true'
 
 
 
    //Protocol接口 CODE
    app.config.globalProperties.$Protocol = {
        'about': 'ABOUT_US_KDN', //关于我们
        'user': 'REGISTRATION_AGREEMENT_APP_KDN', //用户协议
        'privacy': 'PRIVACY_POLICY_APP_KDN', //用户隐私协议
        'service': 'CUSTOMER_SERVICE_PHONE_APP_KDN', //客服热线
    }
 
    return {
        app
    }
}