Sign in

潘钊 / bsth_control · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • bsth_control
  • ..
  • js
  • outboundline.js
  • 浦东调度的异常功能,表格默认只显示当日信息。
    d84eb3f0
    zb authored
    2017-07-03 09:29:00 +0800  
    Browse Code »
outboundline.js 428 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/**
 * 线路类
 * 
 */

var LineObj = function () {
	
	/** 定义线路对象 */
	
	var line={};
	
	var lineObj = {
			
			/** 初始化线路对象属性值 */
			init : function(id) {
				// 线路Id
				line.id = id;
				return line;
			},
			
			/** 获取线路对象 @return:<line:线路对象> */
			getLineObj : function() {
				
				return line;
			}
			
	}
	
	return lineObj;
	
}();