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
0268a0c6
Commit
0268a0c6
authored
Jul 25, 2019
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导出按钮可配置
parent
e2682b3b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
memberGroupDetail.vue
src/view/memberGroup/memberGroupDetail.vue
+11
-2
No files found.
src/view/memberGroup/memberGroupDetail.vue
View file @
0268a0c6
...
...
@@ -10,7 +10,7 @@
<span>
{{
separator
(
total
)
}}
</span>
人
</span>
<el-button
type=
"primary"
class=
"down-member-list__btn"
@
click=
"downMemberListPop.show = true"
>
人群导出
</el-button>
<el-button
type=
"primary"
class=
"down-member-list__btn"
@
click=
"downMemberListPop.show = true"
v-if=
"downMemberListPop.canDown"
>
人群导出
</el-button>
</div>
<div
class=
"memberGroupDetail-wrap__head"
>
<span
class=
"tag-selected-title"
>
筛选标签
</span>
...
...
@@ -323,7 +323,8 @@ export default {
show
:
false
,
loading
:
false
,
// 去报告中心
toReport
:
false
toReport
:
false
,
canDown
:
false
},
groupName
:
'分组名称'
,
...
...
@@ -414,6 +415,13 @@ export default {
},
methods
:
{
canDownMemberList
()
{
getRequest
(
'/gic-member-tag-web/member-tag-member/isExportEnterprise'
).
then
(
res
=>
{
if
(
res
.
data
.
errorCode
===
1
)
{
this
.
downMemberListPop
.
canDown
=
res
.
data
.
result
===
'true'
||
res
.
data
.
result
===
true
;
}
})
},
createMemberExcel
()
{
this
.
downMemberListPop
.
loading
=
true
;
let
memberTagGroupId
=
this
.
$route
.
query
.
memberTagGroupId
;
...
...
@@ -669,6 +677,7 @@ export default {
}
},
mounted
()
{
this
.
canDownMemberList
();
this
.
getTagValueDtoList
();
// 获取自定义字段
this
.
getFieldsList
();
...
...
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