Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gxpt_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
pseer
gxpt_web
Commits
0d0b3b5a
Commit
0d0b3b5a
authored
Nov 26, 2024
by
吕明尚
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改抽奖日志
parent
1c05f202
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
index.vue
src/views/system/lotteryRecordsLog/index.vue
+18
-4
No files found.
src/views/system/lotteryRecordsLog/index.vue
View file @
0d0b3b5a
...
@@ -140,7 +140,11 @@
...
@@ -140,7 +140,11 @@
<
dict
-
tag
:
options
=
"dict.type.store_is_use_coupon"
:
value
=
"scope.row.isHit"
/>
<
dict
-
tag
:
options
=
"dict.type.store_is_use_coupon"
:
value
=
"scope.row.isHit"
/>
<
/template
>
<
/template
>
<
/el-table-column
>
<
/el-table-column
>
<
el
-
table
-
column
align
=
"center"
label
=
"中奖奖品"
prop
=
"hitPrize"
/>
<
el
-
table
-
column
align
=
"center"
label
=
"中奖奖品"
prop
=
"hitPrize"
>
<
template
slot
-
scope
=
"scope"
>
<
dict
-
tag
:
options
=
"dict.type.prize_type"
:
value
=
"scope.row.hitPrize"
/>
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
align
=
"center"
label
=
"是否发放"
prop
=
"isSend"
>
<
el
-
table
-
column
align
=
"center"
label
=
"是否发放"
prop
=
"isSend"
>
<
template
slot
-
scope
=
"scope"
>
<
template
slot
-
scope
=
"scope"
>
<
dict
-
tag
:
options
=
"dict.type.store_is_use_coupon"
:
value
=
"scope.row.isSend"
/>
<
dict
-
tag
:
options
=
"dict.type.store_is_use_coupon"
:
value
=
"scope.row.isSend"
/>
...
@@ -203,8 +207,18 @@
...
@@ -203,8 +207,18 @@
<
/el-radio
>
<
/el-radio
>
<
/el-radio-group
>
<
/el-radio-group
>
<
/el-form-item
>
<
/el-form-item
>
<!--
<
el
-
form
-
item
label
=
"中奖奖品"
prop
=
"hitPrize"
>-->
<!--
<
el
-
input
v
-
model
=
"form.hitPrize"
disabled
placeholder
=
"请输入中奖奖品"
/>-->
<!--
<
/el-form-item>--
>
<
el
-
form
-
item
label
=
"中奖奖品"
prop
=
"hitPrize"
>
<
el
-
form
-
item
label
=
"中奖奖品"
prop
=
"hitPrize"
>
<
el
-
input
v
-
model
=
"form.hitPrize"
disabled
placeholder
=
"请输入中奖奖品"
/>
<
el
-
select
v
-
model
=
"form.hitPrize"
disabled
>
<
el
-
option
v
-
for
=
"dict in dict.type.prize_type"
:
key
=
"parseInt(dict.value)"
:
label
=
"dict.label"
:
value
=
"parseInt(dict.value)"
><
/el-option
>
<
/el-select
>
<
/el-form-item
>
<
/el-form-item
>
<
el
-
form
-
item
label
=
"是否发放"
prop
=
"isSend"
>
<
el
-
form
-
item
label
=
"是否发放"
prop
=
"isSend"
>
<
el
-
radio
-
group
v
-
model
=
"form.isSend"
>
<
el
-
radio
-
group
v
-
model
=
"form.isSend"
>
...
@@ -242,7 +256,7 @@ import {
...
@@ -242,7 +256,7 @@ import {
export
default
{
export
default
{
name
:
"LotteryRecordsLog"
,
name
:
"LotteryRecordsLog"
,
dicts
:
[
'store_is_use_coupon'
,],
dicts
:
[
'store_is_use_coupon'
,
'prize_type'
,
],
data
()
{
data
()
{
return
{
return
{
// 遮罩层
// 遮罩层
...
@@ -361,7 +375,7 @@ export default {
...
@@ -361,7 +375,7 @@ export default {
if
(
valid
)
{
if
(
valid
)
{
if
(
this
.
form
.
id
!=
null
)
{
if
(
this
.
form
.
id
!=
null
)
{
updateLotteryRecordsLog
(
this
.
form
).
then
(
response
=>
{
updateLotteryRecordsLog
(
this
.
form
).
then
(
response
=>
{
this
.
$modal
.
msgSuccess
(
"
修改成功
"
);
this
.
$modal
.
msgSuccess
(
"
确认发放
"
);
this
.
open
=
false
;
this
.
open
=
false
;
this
.
getList
();
this
.
getList
();
}
);
}
);
...
...
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