记得上下班打卡 | 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
341890b3
Commit
341890b3
authored
Oct 12, 2023
by
zhangguobing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+view:添加'阶段退票'标签页;
parent
95884a72
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
11 deletions
+45
-11
LocalAdminController.java
...t/admin/web/controller/zhengzai/LocalAdminController.java
+0
-5
KylinPerformancesController.java
...ontroller/zhengzai/kylin/KylinPerformancesController.java
+10
-0
ladderReturn.html
...s/templates/zhengzai/kylin/performances/ladderReturn.html
+35
-6
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/java/com/liquidnet/client/admin/web/controller/zhengzai/LocalAdminController.java
View file @
341890b3
...
...
@@ -22,7 +22,6 @@ public class LocalAdminController extends BaseController
private
final
String
activityPrefix
=
"zhengzai/sweet"
;
private
final
String
candyPrefix
=
"zhengzai/candy"
;
private
final
String
ybPrefix
=
"zhengzai/yb"
;
private
final
String
prefix
=
"zhengzai/kylin/performances"
;
@Value
(
"${liquidnet.client.admin.platformUrl}"
)
private
String
platformUrl
;
...
...
@@ -238,8 +237,4 @@ public class LocalAdminController extends BaseController
{
return
smilePrefix
+
"/userList/add"
;
}
@GetMapping
(
"/ladderReturn"
)
public
String
ladderReturn
()
{
return
prefix
+
"/ladderReturn"
;
}
}
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/java/com/liquidnet/client/admin/web/controller/zhengzai/kylin/KylinPerformancesController.java
View file @
341890b3
...
...
@@ -232,6 +232,16 @@ public class KylinPerformancesController extends BaseController {
return
prefix
+
"/refundConfig"
;
}
@GetMapping
(
value
=
"/ladderReturn/{performancesId}"
)
public
String
getLadderReturn
(
@PathVariable
(
"performancesId"
)
String
performancesId
,
ModelMap
mmap
)
{
ArrayList
<
OrderRefundPoundage
>
ladderReturnList
=
kylinPerformancesService
.
getRefundPoundageAll
(
performancesId
);
String
ladderReturnExplain
=
kylinPerformancesService
.
getPoundageExplain
(
performancesId
);
mmap
.
put
(
"performancesId"
,
performancesId
);
mmap
.
put
(
"ladderReturnList"
,
ladderReturnList
);
mmap
.
put
(
"ladderReturnExplain"
,
ladderReturnExplain
);
return
prefix
+
"/ladderReturn"
;
}
//
@PostMapping
(
value
=
"/refundConfig/explain"
)
//todo 阶梯退票
@ApiOperation
(
value
=
"设置注意事项"
)
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/performances/ladderReturn.html
View file @
341890b3
<!DOCTYPE html>
<html
lang=
"
en
"
>
<html
lang=
"
zh"
xmlns:th=
"http://www.thymeleaf.org
"
>
<head>
<meta
charset=
"UTF-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<title>
Document
</title>
<th:block
th:include=
"include :: header('阶段退票')"
/>
<th:block
th:include=
"include :: datetimepicker-css"
/>
</head>
<body>
1111
<body
class=
"white-bg"
>
<div
class=
"wrapper wrapper-content animated fadeInRight ibox-content"
>
<!--退票规则-->
<!--注意事项-->
</div>
<th:block
th:include=
"include :: footer"
/>
<th:block
th:include=
"include :: datetimepicker-js"
/>
<script
th:inline=
"javascript"
>
var
prefix
=
ctx
+
"kylin/performances"
;
/**
* 演出ID
*
* @type {*[String][]}
*/
var
performancesId
=
[[
$
{
performancesId
}]];
/**
* 退票规则列表
*
* @type {*[Array][]}
*/
var
ladderReturnList
=
[[
$
{
ladderReturnList
}]];
/**
* 注意事项
*
* @type {*[String][]}
*/
var
ladderReturnExplain
=
[[
$
{
ladderReturnExplain
}]];
</script>
</body>
</html>
\ No newline at end of file
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