import { Component } from '@angular/core'; import { KstConfig } from '../chat/config/chat.config'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.less'] }) export class AppComponent { constructor() { KstConfig.url = 'http://192.168.31.137:8818'; KstConfig.websocket.url = 'ws://192.168.31.137:8818/websocket'; KstConfig.file.uploadUrl = 'http://oss.kingsmartech.com/api/kstfile/files/upload'; KstConfig.file.getFileUrl = 'http://oss.kingsmartech.com/api/kstfile/files/www/{fileid}'; } currentUser: any = { appUserName: '张三', username: 'wsl', userId: 23, chatpwd: '123456' }; }