app.js 490 Bytes
//app.js
let fetchApi = require('./http/fetch-api.js');
let api = require('./http/api');
let config = require('./config');
let router = require('./router/index');
let store = require('./utils/stroage');

require('./http/mock-data');

App({
	get: fetchApi.fetch,
	post: (params) => {
		params.method = 'post';
		return fetchApi.fetch(params);
	},
	api: api,
	config: config,
	router: router,
	store: store,
	onLaunch: function () {},
	globalData: {
		indexInfo: null,
		userInfo: null
	}
})