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
ac1b061e
Commit
ac1b061e
authored
Sep 23, 2021
by
chenyu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 修复卡券空格bug
parent
57e39e5c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
tag-config-options.vue
src/components/tag/tag-config-options.vue
+1
-1
index.js
src/components/tagDetail/mixin/index.js
+1
-1
tags-group.vue
src/view/memberGroup/tags-group.vue
+2
-2
No files found.
src/components/tag/tag-config-options.vue
View file @
ac1b061e
...
...
@@ -1920,7 +1920,7 @@ export default {
this
.
cardRadioType
=
tagValue
.
val
[
0
].
data
.
compute
==
'in'
?
1
:
0
;
if
(
this
.
cardRadioType
)
{
// 全部商品不回显tag列表
value
=
tagValue
.
val
[
0
].
data
.
value
.
split
(
' '
);
selectVal
=
tagParams
.
selectedVal
.
split
(
'
'
);
selectVal
=
tagParams
.
selectedVal
.
split
(
'
$^
'
);
selectVal
.
forEach
((
el
,
ix
)
=>
{
this
.
tagList
.
push
({
cardName
:
el
,
...
...
src/components/tagDetail/mixin/index.js
View file @
ac1b061e
...
...
@@ -1072,7 +1072,7 @@ export default {
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
(
' '
);
this
.
postTemplateData
.
selectedVal
=
this
.
cardListData
.
map
(
el
=>
el
.
cardName
).
join
(
'
'
);
this
.
postTemplateData
.
selectedVal
=
this
.
cardListData
.
map
(
el
=>
el
.
cardName
).
join
(
'
$^
'
);
}
code
===
'com024'
&&
(
tagValue
=
{
...
...
src/view/memberGroup/tags-group.vue
View file @
ac1b061e
...
...
@@ -21,8 +21,8 @@
<draggable
v-model=
"tagsData"
group=
"article"
style=
"height: 100%"
@
end=
"dragTag"
:move=
"checkMove"
:sort=
"false"
:data-index=
"tagsGroupIndex"
>
<div
class=
"tags-group__tag"
v-for=
"(item, index) in tagsData"
:key=
"item.tagId"
>
<el-tooltip>
<span>
{{
item
.
tagName
}}
【选择:
{{
item
.
newTagVal
}}
】
</span>
<div
style=
"max-width: 400px;font-size: 14px"
slot=
"content"
>
{{
item
.
tagName
}}
【选择:
{{
item
.
newTagVal
}}
】
</div>
<span>
{{
item
.
tagName
}}
【选择:
{{
item
.
newTagVal
.
replace
(
/
\$\^
/g
,
' '
)
}}
】
</span>
<div
style=
"max-width: 400px;font-size: 14px"
slot=
"content"
>
{{
item
.
tagName
}}
【选择:
{{
item
.
newTagVal
.
replace
(
/
\$\^
/g
,
' '
)
}}
】
</div>
</el-tooltip>
<i
class=
"iconfont icon-bianji1 edit"
@
click=
"editTags(index)"
></i>
<i
class=
"iconfont icon-guanbi"
@
click=
"delTags(index)"
></i>
...
...
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