Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
marketing
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
marketing-web
marketing
Commits
62026614
Commit
62026614
authored
Aug 01, 2022
by
crushh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: dist
parent
ccd66466
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
form.vue
src/views/game/cmh/form.vue
+1
-1
info.vue
src/views/game/cmh/info.vue
+4
-1
prize-config.vue
src/views/game/cmh/prize-config.vue
+1
-1
No files found.
src/views/game/cmh/form.vue
View file @
62026614
...
...
@@ -418,7 +418,7 @@ export default {
if
(
this
.
isAdd
)
{
this
.
$route
.
meta
.
refresh
=
true
;
}
this
.
$router
.
push
(
'/game/cmh'
);
this
.
$router
.
go
(
'/game/cmh'
);
}
}
};
...
...
src/views/game/cmh/info.vue
View file @
62026614
...
...
@@ -71,7 +71,9 @@
<
/div
>
<
/td
>
<
td
class
=
"cell"
>
<
div
>
{{
item
.
prizeName
}}
<
/div
>
<
el
-
tooltip
:
content
=
"item.prizeName"
placement
=
"top"
>
<
div
class
=
"ellips"
:
style
=
"desW ? `width:${desW / 2
}
px` : ''"
>
{{
item
.
prizeName
}}
<
/div
>
<
/el-tooltip
>
<
/td
>
<
td
class
=
"cell"
>
<
img
:
src
=
"item.prizeImageUrl"
v
-
if
=
"item.prizeType != 0"
/>
...
...
@@ -307,6 +309,7 @@ export default {
overflow
-
x
:
hidden
;
background
:
#
ffffff
;
}
.
invalid
{
color
:
#
909399
;
}
...
...
src/views/game/cmh/prize-config.vue
View file @
62026614
...
...
@@ -344,7 +344,7 @@ export default {
sendItem
(
selectedData
)
{
const
data
=
this
.
prizeForm
.
gamePrizeList
[
this
.
index
];
data
.
prizeRelationId
=
selectedData
.
coupCardId
;
data
.
prizeName
=
selectedData
.
cardName
.
length
>
10
?
selectedData
.
cardName
.
slice
(
0
,
1
0
)
:
selectedData
.
cardName
;
data
.
prizeName
=
selectedData
.
cardName
.
length
>
30
?
selectedData
.
cardName
.
slice
(
0
,
3
0
)
:
selectedData
.
cardName
;
data
.
prizeNameStr
=
data
.
prizeName
;
data
.
prizeImageUrl
=
{
imgUrl
:
this
.
imgeType
[
selectedData
.
cardType
],
code
:
this
.
imgeType
[
selectedData
.
cardType
]
};
data
.
prizeNumber
=
1
;
...
...
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