68 lines
1.4 KiB
JavaScript
68 lines
1.4 KiB
JavaScript
function inputScript(url) {
|
|
var script = '<script type="text/javascript" src="' + url + '"><' + '/script>';
|
|
document.writeln(script);
|
|
}
|
|
|
|
function inputCSS(url) {
|
|
var css = '<link rel="stylesheet" href="' + url + '">';
|
|
document.writeln(css);
|
|
}
|
|
|
|
function include() {
|
|
|
|
/**
|
|
* 基础
|
|
*/
|
|
inputScript("/assets/platform/module/basics/basics.js?v=1.0.4")
|
|
|
|
/**
|
|
* 大病互助
|
|
*/
|
|
inputScript("/assets/platform/module/medicalaid/common.js?v=1.0.0")
|
|
|
|
/**
|
|
* 职工慰问
|
|
*/
|
|
inputScript("/assets/platform/module/condolence/common.js?v=1.0.0")
|
|
/**
|
|
* 困难帮扶
|
|
*/
|
|
inputScript("/assets/platform/module/difficulty/common.js?v=1.0.0")
|
|
|
|
|
|
/**
|
|
* 提案
|
|
*/
|
|
inputScript("/assets/platform/module/proposal/common.js?v=1.0.0")
|
|
/**
|
|
* 提案api
|
|
*/
|
|
inputScript("/assets/platform/module/proposal/api.js?v=1.0.0")
|
|
|
|
|
|
/**
|
|
* 提案api
|
|
*/
|
|
inputScript("/assets/platform/module/proposal/api.js?v=1.0.0")
|
|
|
|
/**
|
|
* 会员
|
|
*/
|
|
inputScript("/assets/platform/module/member/common.js?v=1.0.0")
|
|
|
|
inputScript("/assets/platform/module/mixins/proposalMixins.js?v=1.0.0")
|
|
|
|
/**
|
|
* 体检
|
|
*/
|
|
inputScript("/assets/platform/module/physicals/common.js?v=1.0.1")
|
|
|
|
/**
|
|
* 活动
|
|
*/
|
|
inputScript("/assets/platform/module/activity/activity.js?v=1.0.0")
|
|
inputScript("/assets/platform/module/activity/site.js?v=1.0.0")
|
|
}
|
|
|
|
include()
|