Commit b8eb7e2d by huaying

Merge branch 'feature/act-code' into dev

parents dc47daab 564141d7
...@@ -177,7 +177,7 @@ export default { ...@@ -177,7 +177,7 @@ export default {
inserted(el, binding) { inserted(el, binding) {
const SELECTDOWN_DOM = el.querySelector('.el-select-dropdown .el-select-dropdown__wrap'); const SELECTDOWN_DOM = el.querySelector('.el-select-dropdown .el-select-dropdown__wrap');
SELECTDOWN_DOM.addEventListener('scroll', function() { SELECTDOWN_DOM.addEventListener('scroll', function() {
const CONDITION = this.clientHeight + this.scrollTop >= this.scrollHeight; const CONDITION = this.scrollHeight - this.scrollTop <= this.clientHeight;
if (CONDITION) { if (CONDITION) {
binding.value(); binding.value();
} }
...@@ -498,7 +498,6 @@ export default { ...@@ -498,7 +498,6 @@ export default {
this.selectHmIds = val.map(item => { this.selectHmIds = val.map(item => {
return item.hmId; return item.hmId;
}); });
console.log(this.selectHmIds, 'this.selectHmIds');
}, },
// 批量分组 // 批量分组
batchGoupEvent() { batchGoupEvent() {
...@@ -543,8 +542,6 @@ export default { ...@@ -543,8 +542,6 @@ export default {
this.shopList = []; this.shopList = [];
}, },
searchList(e) { searchList(e) {
console.log(e);
this.pageParam.pageNo = 1; this.pageParam.pageNo = 1;
this.getTableList(); this.getTableList();
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment