记得上下班打卡 | 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
79045f0f
Commit
79045f0f
authored
Sep 16, 2021
by
张国柄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面调整
parent
bd6e74fd
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
47 additions
and
32 deletions
+47
-32
CandyMgtCouponAdminController.java
...troller/zhengzai/candy/CandyMgtCouponAdminController.java
+1
-1
member.html
...main/resources/templates/zhengzai/adam/member/member.html
+4
-4
detail.html
...urces/templates/zhengzai/adam/order/orderList/detail.html
+16
-7
order.html
...ources/templates/zhengzai/adam/order/orderList/order.html
+3
-3
coupon1.html
...esources/templates/zhengzai/candy/coupon/mgt/coupon1.html
+5
-5
coupon2.html
...esources/templates/zhengzai/candy/coupon/mgt/coupon2.html
+6
-4
coupon3.html
...esources/templates/zhengzai/candy/coupon/mgt/coupon3.html
+6
-4
coupon4.html
...esources/templates/zhengzai/candy/coupon/mgt/coupon4.html
+6
-4
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/java/com/liquidnet/client/admin/web/controller/zhengzai/candy/CandyMgtCouponAdminController.java
View file @
79045f0f
...
...
@@ -52,7 +52,7 @@ public class CandyMgtCouponAdminController extends BaseController {
public
TableDataInfo
list
(
CandyMgtCouponListParam
listParam
)
{
startPage
();
List
<
CandyMgtCouponInfoDto
>
list
=
candyMgtCouponAdminService
.
listForMgtCouponInfoDto
(
listParam
);
if
(
CollectionUtils
.
isEmpty
(
list
))
{
if
(
!
CollectionUtils
.
isEmpty
(
list
))
{
switch
(
listParam
.
getCouType
())
{
case
3
:
String
[]
couponIdArr
=
list
.
stream
().
map
(
CandyMgtCouponInfoDto:
:
getCouponId
).
toArray
(
String
[]::
new
);
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/adam/member/member.html
View file @
79045f0f
...
...
@@ -26,9 +26,9 @@
sortOrder
:
"asc"
,
modalName
:
"会员设置"
,
columns
:
[
//
{
//
checkbox: true
//
},
{
checkbox
:
true
},
{
field
:
'memberId'
,
title
:
'会员卡ID'
...
...
@@ -68,7 +68,7 @@
formatter
:
function
(
value
,
row
,
index
)
{
var
actions
=
[];
actions
.
push
(
'<a class="btn btn-success btn-xs '
+
editFlag
+
'" href="javascript:void(0)" onclick="$.operate.editTab(
\'
'
+
row
.
memberId
+
'
\'
)"><i class="fa fa-edit"></i>编辑</a> '
);
actions
.
push
(
'<a class="btn btn-success btn-xs '
+
editFlag
+
'" href="javascript:void(0)" onclick="memberCodeList(
\'
'
+
row
.
memberId
+
'
\'
)"><i class="fa fa-edit"></i>
兑换码列表
</a> '
);
actions
.
push
(
'<a class="btn btn-success btn-xs '
+
editFlag
+
'" href="javascript:void(0)" onclick="memberCodeList(
\'
'
+
row
.
memberId
+
'
\'
)"><i class="fa fa-edit"></i>
会员码
</a> '
);
return
actions
.
join
(
''
);
}
}]
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/adam/order/orderList/detail.html
View file @
79045f0f
...
...
@@ -117,9 +117,18 @@
</ul>
</div>
<div
class=
"text-center"
style=
"margin-top: -15px;margin-bottom: 10px;"
>
<a
data-toggle=
"modal"
class=
"btn btn-danger"
href=
"#"
onclick=
"closeItem()"
>
关
闭
</a>
<a
data-toggle=
"modal"
class=
"btn btn-primary"
href=
"#member-refund-form"
>
申请退款
</a>
<!-- <div class="text-center" style="margin-top: -15px;margin-bottom: 10px;">-->
<!-- <a data-toggle="modal" class="btn btn-danger" href="#" onclick="closeItem()">关 闭</a> -->
<!-- <a data-toggle="modal" class="btn btn-primary" href="#member-refund-form">申请退款</a>-->
<!-- </div>-->
<div
class=
"text-center"
id=
"toolbar"
role=
"group"
style=
"margin-top: -15px;margin-bottom: 10px;"
>
<a
class=
"btn btn-danger"
href=
"#"
onclick=
"closeItem()"
>
<i
class=
"fa fa-reply-all"
></i>
关
闭
</a>
<a
class=
"btn btn-primary"
style=
"margin-left: 15px;"
href=
"#member-refund-form"
shiro:hasPermission=
"adam:order:orderlist:refund"
th:if=
"${orderDetailsVo.adamMemberOrderVo.state == 1 && orderDetailsVo.adamUserMemberVo.state == 1}"
>
申请退款
</a>
</div>
<div
id=
"member-refund-form"
class=
"modal fade"
aria-hidden=
"true"
>
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/adam/order/orderList/order.html
View file @
79045f0f
...
...
@@ -93,9 +93,9 @@
detailUrl
:
prefix
+
"/detail/{id}"
,
modalName
:
"会员订单"
,
columns
:
[
//
{
//
checkbox: true,
//
},
{
checkbox
:
true
,
},
{
field
:
'orderNo'
,
title
:
'订单号'
,
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/candy/coupon/mgt/coupon1.html
View file @
79045f0f
...
...
@@ -62,9 +62,9 @@
sortName
:
"createdAt"
,
modalName
:
"代金券"
,
columns
:
[
//
{
//
checkbox: true
//
},
{
checkbox
:
true
},
{
field
:
'valFace'
,
title
:
'金额'
,
...
...
@@ -122,9 +122,9 @@
align
:
'center'
,
formatter
:
function
(
value
,
row
,
index
)
{
var
actions
=
[];
if
(
row
.
bindType
)
{
}
if
(
row
.
bindType
===
0
)
{
actions
.
push
(
'<a class="btn btn-info btn-xs" href="javascript:void(0)" onclick="couponCodeList(
\'
'
+
row
.
couponId
+
'
\'
)"><i class="fa fa-list-ul"></i>查看码列表</a> '
);
}
return
actions
.
join
(
''
);
}
}]
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/candy/coupon/mgt/coupon2.html
View file @
79045f0f
...
...
@@ -62,9 +62,9 @@
sortName
:
"createdAt"
,
modalName
:
"满减券"
,
columns
:
[
//
{
//
checkbox: true
//
},
{
checkbox
:
true
},
{
field
:
'valFace'
,
title
:
'金额'
,
...
...
@@ -122,7 +122,9 @@
align
:
'center'
,
formatter
:
function
(
value
,
row
,
index
)
{
var
actions
=
[];
if
(
row
.
bindType
===
0
)
{
actions
.
push
(
'<a class="btn btn-info btn-xs" href="javascript:void(0)" onclick="couponCodeList(
\'
'
+
row
.
couponId
+
'
\'
)"><i class="fa fa-list-ul"></i>查看码列表</a> '
);
}
return
actions
.
join
(
''
);
}
}]
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/candy/coupon/mgt/coupon3.html
View file @
79045f0f
...
...
@@ -61,9 +61,9 @@
sortName
:
"createdAt"
,
modalName
:
"兑换券"
,
columns
:
[
//
{
//
checkbox: true
//
},
{
checkbox
:
true
},
{
field
:
'couponRuleScopeName'
,
title
:
'适用演出'
...
...
@@ -104,7 +104,9 @@
align
:
'center'
,
formatter
:
function
(
value
,
row
,
index
)
{
var
actions
=
[];
if
(
row
.
bindType
===
0
)
{
actions
.
push
(
'<a class="btn btn-info btn-xs" href="javascript:void(0)" onclick="couponCodeList(
\'
'
+
row
.
couponId
+
'
\'
)"><i class="fa fa-list-ul"></i>查看码列表</a> '
);
}
return
actions
.
join
(
''
);
}
}]
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/candy/coupon/mgt/coupon4.html
View file @
79045f0f
...
...
@@ -62,9 +62,9 @@
sortName
:
"createdAt"
,
modalName
:
"折扣券"
,
columns
:
[
//
{
//
checkbox: true
//
},
{
checkbox
:
true
},
{
field
:
'discount'
,
title
:
'折扣'
,
...
...
@@ -122,7 +122,9 @@
align
:
'center'
,
formatter
:
function
(
value
,
row
,
index
)
{
var
actions
=
[];
if
(
row
.
bindType
===
0
)
{
actions
.
push
(
'<a class="btn btn-info btn-xs" href="javascript:void(0)" onclick="couponCodeList(
\'
'
+
row
.
couponId
+
'
\'
)"><i class="fa fa-list-ul"></i>查看码列表</a> '
);
}
return
actions
.
join
(
''
);
}
}]
...
...
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