记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
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
董敬伟
liquidnet-bus-v1
Commits
3674358a
Commit
3674358a
authored
Oct 13, 2021
by
liuran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改会员基础信息
parent
607b73fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
18 deletions
+56
-18
info.html
...c/main/resources/templates/zhengzai/adam/member/info.html
+56
-18
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/adam/member/info.html
View file @
3674358a
...
@@ -425,17 +425,17 @@
...
@@ -425,17 +425,17 @@
</div>
</div>
<div
class=
"radio-box"
>
<div
class=
"radio-box"
>
<label
for=
"radio2"
onclick=
"radioType(this)"
>
<label
for=
"radio2"
onclick=
"radioType(this)"
>
<input
type=
"radio"
id=
"coupeAdd2"
class=
"coupeAddVal"
onclick=
"radioType(this)"
name=
"coupeAdd_type"
value=
"1"
/>
演出
<input
type=
"radio"
id=
"coupeAdd2"
class=
"coupeAddVal"
name=
"coupeAdd_type"
value=
"1"
/>
演出
</label>
</label>
</div>
</div>
<div
class=
"radio-box"
>
<div
class=
"radio-box"
>
<label
for=
"radio2"
onclick=
"radioType(this)"
>
<label
for=
"radio2"
onclick=
"radioType(this)"
>
<input
type=
"radio"
id=
"coupeAdd3"
class=
"coupeAddVal"
onclick=
"radioType(this)"
name=
"coupeAdd_type"
value=
"2"
/>
商品
<input
type=
"radio"
id=
"coupeAdd3"
class=
"coupeAddVal"
name=
"coupeAdd_type"
value=
"2"
/>
商品
</label>
</label>
</div>
</div>
<div
class=
"radio-box"
>
<div
class=
"radio-box"
>
<label
for=
"radio2"
onclick=
"radioType(this)"
>
<label
for=
"radio2"
onclick=
"radioType(this)"
>
<input
type=
"radio"
id=
"coupeAdd4"
class=
"coupeAddVal"
onclick=
"radioType(this)"
name=
"coupeAdd_type"
value=
"3"
/>
优先购买
<input
type=
"radio"
id=
"coupeAdd4"
class=
"coupeAddVal"
name=
"coupeAdd_type"
value=
"3"
/>
优先购买
</label>
</label>
</div>
</div>
</div>
</div>
...
@@ -560,17 +560,29 @@
...
@@ -560,17 +560,29 @@
}
else
{
}
else
{
var
coupeTitle
=
$
(
'#coupeAdd_title'
).
val
();
var
coupeTitle
=
$
(
'#coupeAdd_title'
).
val
();
var
busiType
=
this
.
typeRadio
;
var
busiType
=
this
.
typeRadio
;
if
(
this
.
typeRadio
==
0
||
this
.
typeRadio
==
1
||
this
.
typeRadio
==
3
)
{
if
(
this
.
typeRadio
==
0
)
{
var
couponRuleList
=
[{
var
couponRuleList
=
[{
useScope
:
100
,
useScope
:
100
,
busiName
:
'全部演出'
busiName
:
'全场'
}]
}
else
if
(
this
.
typeRadio
==
1
)
{
var
couponRuleList
=
[{
useScope
:
90
,
busiName
:
'演出'
}]
}
else
if
(
this
.
typeRadio
==
2
)
{
var
couponRuleList
=
[{
useScope
:
80
,
busiName
:
'商品'
}]
}]
}
else
{
}
else
{
var
couponRuleList
=
[{
var
couponRuleList
=
[{
useScope
:
10
0
,
useScope
:
9
0
,
busiName
:
'
全部商品
'
busiName
:
'
优先购
'
}]
}]
}
}
if
(
this
.
typeRadio
==
3
)
{
if
(
this
.
typeRadio
==
3
)
{
var
eventAmt
=
$
(
'#eventAmt'
).
val
();
var
eventAmt
=
$
(
'#eventAmt'
).
val
();
var
overlay
=
this
.
overlay
;
var
overlay
=
this
.
overlay
;
...
@@ -617,7 +629,11 @@
...
@@ -617,7 +629,11 @@
// 类别
// 类别
function
radioType
(
obj
)
{
function
radioType
(
obj
)
{
console
.
log
(
obj
)
var
typeRadio
=
$
(
obj
).
find
(
'input'
).
val
();
var
typeRadio
=
$
(
obj
).
find
(
'input'
).
val
();
$
(
obj
).
parent
().
parent
().
find
(
'input'
).
removeAttr
(
'checked'
);
$
(
obj
).
find
(
'input'
).
attr
(
'checked'
,
true
);
this
.
typeRadio
=
typeRadio
;
this
.
typeRadio
=
typeRadio
;
if
(
typeRadio
==
3
)
{
if
(
typeRadio
==
3
)
{
$
(
'.alltrack'
).
hide
();
$
(
'.alltrack'
).
hide
();
...
@@ -664,17 +680,29 @@
...
@@ -664,17 +680,29 @@
var
valOver
=
thisVal
.
find
(
'#mrcvalOver'
).
val
();
var
valOver
=
thisVal
.
find
(
'#mrcvalOver'
).
val
();
var
valMinus
=
thisVal
.
find
(
'#mrcvalMinus'
).
val
();
var
valMinus
=
thisVal
.
find
(
'#mrcvalMinus'
).
val
();
// var mrightsId =
// var mrightsId =
if
(
busiType
==
0
||
busiType
==
1
||
busiType
==
3
)
{
var
couponRuleList
=
[{
if
(
busiType
==
0
)
{
var
couponRuleList
=
[{
useScope
:
100
,
useScope
:
100
,
busiName
:
'全部演出'
busiName
:
'全场'
}]
}
else
if
(
busiType
==
1
)
{
var
couponRuleList
=
[{
useScope
:
90
,
busiName
:
'演出'
}]
}
else
if
(
busiType
==
3
)
{
var
couponRuleList
=
[{
useScope
:
80
,
busiName
:
'商品'
}]
}]
}
else
{
}
else
{
var
couponRuleList
=
[{
var
couponRuleList
=
[{
useScope
:
10
0
,
useScope
:
9
0
,
busiName
:
'
全部商品
'
busiName
:
'
优先购
'
}]
}]
}
}
var
MembercoupenData
=
{
var
MembercoupenData
=
{
busiType
:
busiType
,
busiType
:
busiType
,
couType
:
couType
==
3
?
101
:
couType
,
couType
:
couType
==
3
?
101
:
couType
,
...
@@ -750,15 +778,25 @@
...
@@ -750,15 +778,25 @@
$
(
'.coupetypr_discount'
).
show
();
$
(
'.coupetypr_discount'
).
show
();
}
}
if
(
this
.
typeRadio
==
0
||
this
.
typeRadio
==
1
||
this
.
typeRadio
==
3
)
{
if
(
this
.
typeRadio
==
0
)
{
var
couponRuleList
=
[{
var
couponRuleList
=
[{
useScope
:
100
,
useScope
:
100
,
busiName
:
'全部演出'
busiName
:
'全场'
}]
}
else
if
(
this
.
typeRadio
==
1
)
{
var
couponRuleList
=
[{
useScope
:
90
,
busiName
:
'演出'
}]
}
else
if
(
this
.
typeRadio
==
2
)
{
var
couponRuleList
=
[{
useScope
:
80
,
busiName
:
'商品'
}]
}]
}
else
{
}
else
{
var
couponRuleList
=
[{
var
couponRuleList
=
[{
useScope
:
10
0
,
useScope
:
9
0
,
busiName
:
'
全部商品
'
busiName
:
'
优先购
'
}]
}]
}
}
...
...
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