| 1234567891011121314151617181920212223242526272829303132333435363738 |
- var formatDateParam,timeOutInit
- $(document).ready(function() {
- getNowFormatDateMap() //现在的时间
- documentInit()
- })
- function documentInit(){
-
- mapWorkOrder = []
- mapNum = 0;
- maxNum = []
- dataNum = [];
- series = [];
- areaCount=[]
-
- initData()
- getinitMap();
-
- // index.js
- gettraffic() //话务量
- getHotline() //热线
- getHotThings() //重大事件
- getKeyWord(); //热搜词
- getworkOrderType() //工单类型
- timeTable() //办理时限
- getHotlineAccept() //热线受理
-
- // mian.js
- agentCount();
- getPhoneCount();
- GetDistributionCount();
- // trafficData.js
- getworkOrder()
-
- timeOutInit = setTimeout(function(){
- documentInit()
- },huayi.config.indextime)
- }
|