Commit 3e5ae21a authored by 智勇's avatar 智勇

qaHome-ui.js

parent ddb3ca50
import { Injectable } from '@angular/core';
let Host = "172.30.220.22";
// let Host = "192.168.28.179";
let protocal = "http://";
@Injectable()
export class GlobalService {
bpServerHost: String = `${protocal}${Host}:3002`;
uploadServerHost: String = `${protocal}${Host}:3002`;
extend: Function = (s, t) => {
let ks = Object.keys(t)
for (let k of ks) {
s[k] = JSON.parse(JSON.stringify(t[k]))
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment