1234567891011121314151617181920212223 |
- /**
- * Created by Mai on 2017/4/1.
- */
- var Rations = {
- createNew: function (project) {
- // 用户定义private方法
- var tools = {};
- // 所有通过this访问的属性,都不应在此单元外部进行写入操作
- var rations = function (proj) {
- this.project = proj;
- this.datas = null;
- };
- // prototype用于定义public方法
- rations.prototype.loadDatas = function (datas) {
- this.datas = datas;
- };
- return new rations(project);
- }
- };
|