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
|
}
|
}
|