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
  • positionstation.js
  • 1.
      b070e462
    王通 authored
    2024-04-17 11:08:01 +0800  
    Browse Code »
positionstation.js 251 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
var PositionsStationObj = function () {
	/** 定义新增站点对象 */
	var station={};
	var stationObj = {
			getAddStation : function() {
				return station;
			},
			setAddStation : function(r) {
				station = r;
			}
	}

	return stationObj;
}();