Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
memberTag-web
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
memberTag
memberTag-web
Commits
877f6fb4
Commit
877f6fb4
authored
Oct 24, 2022
by
huaying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 客户分组批量修改分类滚动加载高度修改
parent
20e6f8f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
batch-list.vue
src/components/tag/batch-list.vue
+2
-2
No files found.
src/components/tag/batch-list.vue
View file @
877f6fb4
...
...
@@ -12,7 +12,7 @@
<p
class=
"batch-txt"
>
{{
list
.
length
?
'存在分组正在被以下模块使用,请先删除对应的内容后再来删除分组。'
:
'删除后无法恢复,确认要删除该分组吗?'
}}
</p>
</div>
<div
v-if=
"operNum == 2"
>
选择分类:
<el-select
v-model=
"groupId"
placeholder=
"
清
选择分类"
v-loadmore=
"loadMoreGroupList"
filterable
remote
:remote-method=
"searchGroupList"
class=
"select-classify"
>
选择分类:
<el-select
v-model=
"groupId"
placeholder=
"
请
选择分类"
v-loadmore=
"loadMoreGroupList"
filterable
remote
:remote-method=
"searchGroupList"
class=
"select-classify"
>
<el-option
v-for=
"el in groupList"
:key=
"el.memberTagGroupClassifyId"
:value=
"el.memberTagGroupClassifyId"
:label=
"el.classifyName"
></el-option>
<i
class=
"el-icon-search"
slot=
"prefix"
></i>
</el-select>
...
...
@@ -78,7 +78,7 @@ export default {
inserted
(
el
,
binding
)
{
const
SELECTDOWN_DOM
=
el
.
querySelector
(
'.el-select-dropdown .el-select-dropdown__wrap'
);
SELECTDOWN_DOM
.
addEventListener
(
'scroll'
,
function
()
{
const
CONDITION
=
this
.
scrollHeight
-
this
.
scrollTop
<=
this
.
clientHeight
;
const
CONDITION
=
this
.
scrollHeight
-
this
.
scrollTop
-
100
<=
this
.
clientHeight
;
if
(
CONDITION
)
{
binding
.
value
();
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment