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
48a4ecae
Commit
48a4ecae
authored
Oct 25, 2022
by
huaying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 客户分组批量修改分组下拉ui
parent
92286c9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
batch-list.vue
src/components/tag/batch-list.vue
+9
-2
No files found.
src/components/tag/batch-list.vue
View file @
48a4ecae
...
...
@@ -12,10 +12,11 @@
<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>
</el-select>
-->
选择分组:
<dm-select-scroller
:width=
"305"
:clearable=
"true"
:data=
"groupList"
v-model=
"groupId"
placeholder=
"请选择分类"
@
load=
"loadMoreGroupList"
@
remote-search=
"searchGroupList"
:total-count=
"totalCountGounp"
:props=
"propsGroup"
></dm-select-scroller>
</div>
<!--
<div
v-if=
"operNum == 2"
>
<p
class=
"title"
>
...
...
@@ -70,8 +71,13 @@ export default {
pageNum
:
1
,
totalPage
:
1
},
totalCountGounp
:
0
,
loading
:
false
,
loadings
:
false
,
propsGroup
:
{
label
:
'classifyName'
,
value
:
'memberTagGroupClassifyId'
}
};
},
directives
:
{
...
...
@@ -192,6 +198,7 @@ export default {
this
.
groupList
=
this
.
groupList
.
concat
(
result
.
result
.
filter
(
el
=>
el
.
classifyName
!=
'未分类'
&&
el
.
classifyName
!=
null
));
}
this
.
params
.
totalPage
=
result
.
totalPage
;
this
.
totalCountGounp
=
result
.
totalCount
||
0
;
}).
finally
(()
=>
{
this
.
loading
=
false
;
this
.
loadings
=
false
...
...
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