记得上下班打卡 | 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
05b28e0e
Commit
05b28e0e
authored
Jul 31, 2021
by
张国柄
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev' into dev
parents
84d2055b
8b8de87e
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
83 additions
and
39 deletions
+83
-39
KylinPerformancesRecommendController.java
.../zhengzai/kylin/KylinPerformancesRecommendController.java
+4
-4
KylinRoadShowController.java
...eb/controller/zhengzai/kylin/KylinRoadShowController.java
+8
-8
log.png
...et-client-admin-web/src/main/resources/static/img/log.png
+0
-0
profile.jpg
...lient-admin-web/src/main/resources/static/img/profile.jpg
+0
-0
index.html
...-client-admin-web/src/main/resources/templates/index.html
+8
-2
login.html
...-client-admin-web/src/main/resources/templates/login.html
+61
-23
logo.png
...et-client-admin-web/src/main/resources/templates/logo.png
+0
-0
main.html
...t-client-admin-web/src/main/resources/templates/main.html
+1
-1
KylinCheckUserPartnerController.java
...m/controller/partner/KylinCheckUserPartnerController.java
+1
-1
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/java/com/liquidnet/client/admin/web/controller/zhengzai/kylin/KylinPerformancesRecommendController.java
View file @
05b28e0e
...
...
@@ -36,7 +36,7 @@ public class KylinPerformancesRecommendController extends BaseController {
@Autowired
private
IKylinPerformancesAdminService
kylinPerformancesService
;
@RequiresPermissions
(
"kylin:performances:recommend"
)
//
@RequiresPermissions("kylin:performances:recommend")
@GetMapping
()
public
String
recommend
()
{
return
prefix
+
"/recommend"
;
...
...
@@ -45,7 +45,7 @@ public class KylinPerformancesRecommendController extends BaseController {
/**
* 查询演出列表
*/
@RequiresPermissions
(
"kylin:performances:recommend:list"
)
//
@RequiresPermissions("kylin:performances:recommend:list")
@PostMapping
(
"/list"
)
@ResponseBody
public
TableDataInfo
list
()
{
...
...
@@ -64,7 +64,7 @@ public class KylinPerformancesRecommendController extends BaseController {
/**
* 修改
*/
@RequiresPermissions
(
"kylin:performances:recommend:change"
)
//
@RequiresPermissions("kylin:performances:recommend:change")
@PostMapping
(
"/change"
)
@ResponseBody
public
AjaxResult
setRecommend
(
@RequestParam
(
value
=
"ids"
)
String
performancesId
,
@RequestParam
(
value
=
"isRecommend"
,
required
=
false
)
Integer
isRecommend
)
{
...
...
@@ -82,7 +82,7 @@ public class KylinPerformancesRecommendController extends BaseController {
return
prefix
+
"/edit"
;
}
@RequiresPermissions
(
"kylin:performances:recommend:change"
)
//
@RequiresPermissions("kylin:performances:recommend:change")
@GetMapping
(
value
=
"/performance/status"
)
@ResponseBody
public
AjaxResult
listByStatus
(
@RequestParam
(
value
=
"status"
)
String
status
,
@RequestParam
(
value
=
"title"
,
required
=
false
)
String
title
)
{
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/java/com/liquidnet/client/admin/web/controller/zhengzai/kylin/KylinRoadShowController.java
View file @
05b28e0e
...
...
@@ -41,13 +41,13 @@ public class KylinRoadShowController extends BaseController {
@Autowired
private
IKylinPerformancesAdminService
kylinPerformancesService
;
@RequiresPermissions
(
"kylin:performances:roadShow"
)
//
@RequiresPermissions("kylin:performances:roadShow")
@GetMapping
()
public
String
roadShow
()
{
return
prefix
+
"/roadShow"
;
}
@RequiresPermissions
(
"kylin:performances:roadShow:list"
)
//
@RequiresPermissions("kylin:performances:roadShow:list")
@PostMapping
(
"/list"
)
@ResponseBody
public
TableDataInfo
listRoadShow
(
@RequestParam
(
value
=
"title"
,
required
=
false
)
String
title
,
...
...
@@ -66,7 +66,7 @@ public class KylinRoadShowController extends BaseController {
return
prefix
+
"/add"
;
}
@RequiresPermissions
(
"kylin:performances:roadShow:add"
)
//
@RequiresPermissions("kylin:performances:roadShow:add")
@Log
(
title
=
"巡演"
,
businessType
=
BusinessType
.
INSERT
)
@PostMapping
(
"/add"
)
@ResponseBody
...
...
@@ -74,7 +74,7 @@ public class KylinRoadShowController extends BaseController {
return
toAjax
(!
kylinRoadShowsAdminService
.
createRoadShow
(
createRoadShowParam
).
equals
(
""
));
}
@RequiresPermissions
(
"kylin:performances:roadShow:details"
)
//
@RequiresPermissions("kylin:performances:roadShow:details")
@GetMapping
(
value
=
"/details/{roadShowId}"
)
public
String
detailsRoadShow
(
@PathVariable
(
"roadShowId"
)
String
roadShowId
,
ModelMap
mmap
)
{
KylinRoadShowAdminVo
result
=
kylinRoadShowsAdminService
.
detailsRoadShow
(
roadShowId
);
...
...
@@ -82,7 +82,7 @@ public class KylinRoadShowController extends BaseController {
return
prefix
+
"/edit"
;
}
@RequiresPermissions
(
"kylin:performances:roadShow:edit"
)
//
@RequiresPermissions("kylin:performances:roadShow:edit")
@Log
(
title
=
"巡演"
,
businessType
=
BusinessType
.
UPDATE
)
@PostMapping
(
"/edit"
)
@ResponseBody
...
...
@@ -100,7 +100,7 @@ public class KylinRoadShowController extends BaseController {
return
prefix
+
"/details"
;
}
@RequiresPermissions
(
"kylin:performances:roadShow:addPerformance"
)
//
@RequiresPermissions("kylin:performances:roadShow:addPerformance")
@GetMapping
(
value
=
"/performance/{roadShowId}"
)
@ResponseBody
public
TableDataInfo
listByRoadShowId
(
@PathVariable
(
"roadShowId"
)
String
roadShowId
)
{
...
...
@@ -109,7 +109,7 @@ public class KylinRoadShowController extends BaseController {
}
@RequiresPermissions
(
"kylin:performances:roadShow:change:performance"
)
//
@RequiresPermissions("kylin:performances:roadShow:change:performance")
@PostMapping
(
value
=
"/roadShow/relation"
)
@ResponseBody
public
AjaxResult
changeRoadShowId
(
@RequestParam
(
value
=
"ids"
)
String
performancesId
,
@RequestParam
(
value
=
"roadShowId"
,
required
=
false
)
String
roadShowId
)
{
...
...
@@ -126,7 +126,7 @@ public class KylinRoadShowController extends BaseController {
return
prefix
+
"/addPerformances"
;
}
@RequiresPermissions
(
"kylin:performances:roadShow:change:performance"
)
//
@RequiresPermissions("kylin:performances:roadShow:change:performance")
@GetMapping
(
value
=
"/performance/status"
)
@ResponseBody
public
AjaxResult
listByStatus
(
@RequestParam
(
value
=
"status"
)
String
status
,
@RequestParam
(
value
=
"title"
,
required
=
false
)
String
title
)
{
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/static/img/log.png
0 → 100644
View file @
05b28e0e
6.1 KB
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/static/img/profile.jpg
View replaced file @
84d2055b
View file @
05b28e0e
79.2 KB
|
W:
|
H:
33 KB
|
W:
|
H:
2-up
Swipe
Onion skin
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/index.html
View file @
05b28e0e
...
...
@@ -4,7 +4,7 @@
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
>
<meta
name=
"renderer"
content=
"webkit"
>
<title>
正在映画系统首页
</title>
<title>
摩登天空信息管理系统
</title>
<!-- 避免IE使用兼容模式 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<link
th:href=
"@{favicon.ico}"
rel=
"shortcut icon"
/>
...
...
@@ -16,6 +16,12 @@
<link
th:href=
"@{/css/skins.css}"
rel=
"stylesheet"
/>
<link
th:href=
"@{/ruoyi/css/ry-ui.css?v=4.6.1}"
rel=
"stylesheet"
/>
</head>
<style>
.logo-lg
{
font-size
:
17px
;
font-weight
:
bold
;
}
</style>
<body
class=
"fixed-sidebar full-height-layout gray-bg"
style=
"overflow: hidden"
>
<div
id=
"wrapper"
>
...
...
@@ -26,7 +32,7 @@
</div>
<a
th:href=
"@{/index}"
>
<li
class=
"logo hidden-xs"
>
<span
class=
"logo-lg"
>
Modernsky IMS
</span>
<span
class=
"logo-lg"
>
摩登天空信息管理系统
</span>
</li>
</a>
<div
class=
"sidebar-collapse"
>
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/login.html
View file @
05b28e0e
...
...
@@ -3,8 +3,8 @@
<head>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0, maximum-scale=1.0"
>
<title>
登录正在映画
系统
</title>
<meta
name=
"description"
content=
"
正在映画后台管理框架
"
>
<title>
摩登天空信息管理
系统
</title>
<meta
name=
"description"
content=
"
摩登天空信息管理系统
"
>
<link
href=
"../static/css/bootstrap.min.css"
th:href=
"@{/css/bootstrap.min.css}"
rel=
"stylesheet"
/>
<link
href=
"../static/css/font-awesome.min.css"
th:href=
"@{/css/font-awesome.min.css}"
rel=
"stylesheet"
/>
<link
href=
"../static/css/style.css"
th:href=
"@{/css/style.css}"
rel=
"stylesheet"
/>
...
...
@@ -15,7 +15,42 @@
<!-- 避免IE使用兼容模式 -->
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<link
rel=
"shortcut icon"
href=
"../static/favicon.ico"
th:href=
"@{favicon.ico}"
/>
<style
type=
"text/css"
>label
.error
{
position
:
inherit
;
}
</style>
<style
type=
"text/css"
>
label
.error
{
position
:
inherit
;
}
.signinpanel
{
width
:
400px
;
margin-top
:
17%
;
}
.col-sm-5
{
color
:
#666666
;
width
:
100%
!important
;
}
.pull-left
{
float
:
none
!important
;
}
.signup-footer
{
margin-top
:
0
;
border-top
:
0
;
text-align
:
center
;
color
:
#000000
;
font-size
:
14px
;
}
body
.signin
{
background
:
#d2d6de
!important
;
}
.signinpanel
form
{
background
:
#fff
;
}
.index_title
{
padding-bottom
:
10px
;
font-size
:
24px
;
color
:
#000000
;
text-align
:
center
;
}
.index_title
p
{
margin
:
0
;
}
</style>
<script>
if
(
window
.
top
!==
window
.
self
){
alert
(
'未登录或登录超时。请重新登录'
);
window
.
top
.
location
=
window
.
location
};
</script>
...
...
@@ -23,29 +58,32 @@
<body
class=
"signin"
>
<div
class=
"signinpanel"
>
<div
class=
"row"
>
<div
class=
"col-sm-7"
>
<div
class=
"signin-info"
>
<div
class=
"logopanel m-b"
>
<h1><img
alt=
"[ 正在映画 ]"
src=
"../static/ruoyi.png"
th:src=
"@{/ruoyi.png}"
></h1>
</div>
<div
class=
"m-b"
></div>
<h4>
欢迎使用
<strong>
正在映画 后台管理系统
</strong></h4>
<ul
class=
"m-b"
>
<li><i
class=
"fa fa-arrow-circle-o-right m-r-xs"
></i>
SpringBoot
</li>
<li><i
class=
"fa fa-arrow-circle-o-right m-r-xs"
></i>
Mybatis
</li>
<li><i
class=
"fa fa-arrow-circle-o-right m-r-xs"
></i>
Shiro
</li>
<li><i
class=
"fa fa-arrow-circle-o-right m-r-xs"
></i>
Thymeleaf
</li>
<li><i
class=
"fa fa-arrow-circle-o-right m-r-xs"
></i>
Bootstrap
</li>
</ul>
<strong
th:if=
"${@config.getKey('sys.account.registerUser')}"
>
还没有账号?
<a
th:href=
"@{/register}"
>
立即注册
»
</a></strong>
</div>
<!-- <div class="col-sm-7">-->
<!-- <div class="signin-info">-->
<!-- <div class="logopanel m-b">-->
<!-- <h1><img alt="[ 正在映画 ]" src="../static/ruoyi.png" th:src="@{/ruoyi.png}"></h1>-->
<!-- </div>-->
<!-- <div class="m-b"></div>-->
<!-- <h4>欢迎使用 <strong>摩登天空信息管理系统</strong></h4>-->
<!-- <ul class="m-b">-->
<!-- <li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> SpringBoot</li>-->
<!-- <li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Mybatis</li>-->
<!-- <li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Shiro</li>-->
<!-- <li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Thymeleaf</li>-->
<!-- <li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> Bootstrap</li>-->
<!-- </ul>-->
<!-- <strong th:if="${@config.getKey('sys.account.registerUser')}">还没有账号? <a th:href="@{/register}">立即注册»</a></strong>-->
<!-- </div>-->
<!-- </div>-->
<div
class=
"index_title"
>
<p><img
th:src=
"@{/img/log.png}"
alt=
"User Image"
></p>
摩登天空信息管理系统
</div>
<div
class=
"col-sm-5"
>
<form
id=
"signupForm"
autocomplete=
"off"
>
<h4
class=
"no-margins"
>
登录:
</h4>
<p
class=
"m-t-md"
>
你若不离不弃,我必生死相依
</p>
<input
type=
"text"
name=
"username"
class=
"form-control uname"
placeholder=
"用户名"
value=
"admin"
/>
<input
type=
"password"
name=
"password"
class=
"form-control pword"
placeholder=
"密码"
value=
"admin123"
/>
<input
type=
"text"
name=
"username"
class=
"form-control uname"
placeholder=
"用户名"
value=
""
/>
<input
type=
"password"
name=
"password"
class=
"form-control pword"
placeholder=
"密码"
value=
""
/>
<div
class=
"row m-t"
th:if=
"${captchaEnabled==true}"
>
<div
class=
"col-xs-6"
>
<input
type=
"text"
name=
"validateCode"
class=
"form-control code"
placeholder=
"验证码"
maxlength=
"5"
/>
...
...
@@ -65,7 +103,7 @@
</div>
<div
class=
"signup-footer"
>
<div
class=
"pull-left"
>
Copyright ©
2018-2021 ruoyi.vip All Rights Reserved.
<br>
Copyright ©
1997-2020 Modernsky All rights reserved
<br>
</div>
</div>
</div>
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/logo.png
0 → 100644
View file @
05b28e0e
6.1 KB
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/main.html
View file @
05b28e0e
...
...
@@ -15,7 +15,7 @@
<body
class=
"gray-bg"
>
<div
class=
"row border-bottom white-bg dashboard-header"
>
<div
class=
"col-sm-12"
>
<h2>
LiquidNet后台管理框架
</h2>
<h2>
推荐使用Chrome浏览器
</h2>
</div>
</div>
<script
th:src=
"@{/js/jquery.min.js}"
></script>
...
...
liquidnet-bus-service/liquidnet-service-platform/liquidnet-service-platform-impl/src/main/java/com/liquidnet/service/platform/controller/partner/KylinCheckUserPartnerController.java
View file @
05b28e0e
...
...
@@ -58,7 +58,7 @@ public class KylinCheckUserPartnerController {
public
ResponseDto
<
String
>
change
(
@RequestParam
(
"merchantId"
)
@NotNull
String
merchantId
,
@RequestParam
(
"checkUserId"
)
@NotNull
String
checkUserId
,
@RequestParam
(
"name"
)
@NotNull
String
name
,
@RequestParam
(
value
=
"pwd"
,
required
=
false
)
@NotNull
String
pwd
,
@RequestParam
(
value
=
"pwd"
,
required
=
false
)
String
pwd
,
@RequestParam
(
"mobile"
)
@Length
(
max
=
11
)
String
mobile
)
{
return
checkUserPartnerService
.
change
(
merchantId
,
checkUserId
,
name
,
pwd
,
mobile
);
}
...
...
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