123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- const base = {
- debug: false
- }
- const im = {
- host : 'ws://he.shemic.com:8282'
- }
- const request = {
-
- host: "https://he.shemic.com/",
- host: "http://dev.shemic.com/dreamland/",
-
-
- data: {},
-
- header: {'content-type': 'application/x-www-form-urlencoded'},
-
- method: "POST",
-
- dataType: "json",
-
- responseType: "text",
-
- success() {},
-
- fail() {},
-
- complete() {},
- }
- const upload = {
- url: request.host + 'package/upload/?l=save.start',
- name: 'file',
- }
- const server = {
- }
- export default {
- base,
- request,
- server,
- upload,
- im,
- }
|