LargeList.js
612 Bytes
define(['mec/plugin/model/List'], function (List) {
'use strict';
var listPt = List.prototype;
function LargeList() {
this.store = {
normalSearch: {
hide: true,
tip: ""
},
advancedSearch: {},
options: {
selectable: false
}
};
}
LargeList.prototype = {
transferToVM: function (dm) {
var vm = listPt.transferToVM(dm);
vm.istop = true; // 大图列表 样式始终是top方向
return vm;
}
};
return LargeList;
});