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
05d254b5
Commit
05d254b5
authored
Jun 30, 2020
by
Kyle_Li
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
传参bug
parent
9a02d8a3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
13 deletions
+19
-13
index.js
src/components/tagDetail/mixin/index.js
+1
-1
memberGroupList.vue
src/view/memberGroup/memberGroupList.vue
+18
-12
No files found.
src/components/tagDetail/mixin/index.js
View file @
05d254b5
...
...
@@ -1015,7 +1015,7 @@ export default {
if
(
this
.
templateData
.
length
)
{
if
(
code
===
'com023'
||
code
===
'com024'
)
{
tagValue
.
val
[
0
].
data
.
compute
=
this
[
code
].
postCompute
;
tagValue
.
val
[
0
].
data
.
compute
=
code
===
'com024'
?
'in'
:
this
[
code
].
postCompute
;
tagValue
.
val
[
0
].
data
.
dealKey
=
"card"
;
tagValue
.
val
[
0
].
data
.
key
=
this
.
currentKey
;
tagValue
.
val
[
0
].
data
.
value
=
this
.
cardListData
.
map
(
el
=>
el
.
coupCardId
).
join
(
' '
);
...
...
src/view/memberGroup/memberGroupList.vue
View file @
05d254b5
...
...
@@ -409,18 +409,24 @@ export default {
})
},
deleteGroup
(
id
)
{
const
param
=
{
requestProject
:
'gic-member-tag-web'
,
memberTagGroupIds
:
id
};
batchDeleteGroup
(
param
).
then
(
res
=>
{
if
(
res
.
errorCode
==
1
)
{
this
.
$message
.
success
({
message
:
'删除成功'
});
this
.
getGroupList
();
}
});
this
.
$confirm
(
'确认删除该分组吗?'
,
'提示'
,
{
confirmButtonText
:
'确认删除'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
}).
then
(()
=>
{
const
param
=
{
requestProject
:
'gic-member-tag-web'
,
memberTagGroupIds
:
id
};
batchDeleteGroup
(
param
).
then
(
res
=>
{
if
(
res
.
errorCode
==
1
)
{
this
.
$message
.
success
({
message
:
'删除成功'
});
this
.
getGroupList
();
}
});
})
},
getMemberGroupList
()
{
memberGroupList
({
...
...
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