记得上下班打卡 | 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
16a01bbe
Commit
16a01bbe
authored
Jan 27, 2026
by
姜秀龙
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'refs/heads/250115-realNameAndinformation-optimization' into container-test
parents
332e6c38
62f40bdc
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
create.html
...in/resources/templates/zhengzai/kylin/notices/create.html
+1
-1
notices.html
...n/resources/templates/zhengzai/kylin/notices/notices.html
+1
-1
update.html
...in/resources/templates/zhengzai/kylin/notices/update.html
+1
-1
KylinBuyNoticeServiceImpl.java
...hengzai/kylin/service/impl/KylinBuyNoticeServiceImpl.java
+3
-3
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/notices/create.html
View file @
16a01bbe
...
@@ -23,7 +23,7 @@
...
@@ -23,7 +23,7 @@
<div
class=
"col-sm-10"
>
<div
class=
"col-sm-10"
>
<div
class=
"radio check-box"
>
<div
class=
"radio check-box"
>
<label>
<label>
<input
type=
"radio"
value=
"1"
name=
"noticeType"
checked=
""
>
购票
须知
<input
type=
"radio"
value=
"1"
name=
"noticeType"
checked=
""
>
购票
说明
</label>
</label>
</div>
</div>
<div
class=
"radio check-box"
>
<div
class=
"radio check-box"
>
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/notices/notices.html
View file @
16a01bbe
...
@@ -18,7 +18,7 @@
...
@@ -18,7 +18,7 @@
<label>
须知类型:
</label>
<label>
须知类型:
</label>
<select
name=
"noticeType"
>
<select
name=
"noticeType"
>
<option
value=
""
>
全部
</option>
<option
value=
""
>
全部
</option>
<option
value=
"1"
>
购票
须知
</option>
<option
value=
"1"
>
购票
说明
</option>
<option
value=
"2"
>
观演须知
</option>
<option
value=
"2"
>
观演须知
</option>
</select>
</select>
</li>
</li>
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/notices/update.html
View file @
16a01bbe
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
<div
class=
"radio check-box"
>
<div
class=
"radio check-box"
>
<label>
<label>
<input
type=
"radio"
value=
"1"
name=
"noticeType"
<input
type=
"radio"
value=
"1"
name=
"noticeType"
th:checked=
"${BuyNoticeVo.noticeType == 1}"
>
购票
须知
th:checked=
"${BuyNoticeVo.noticeType == 1}"
>
购票
说明
</label>
</label>
</div>
</div>
<div
class=
"radio check-box"
>
<div
class=
"radio check-box"
>
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-zhengzai/src/main/java/com/liquidnet/client/admin/zhengzai/kylin/service/impl/KylinBuyNoticeServiceImpl.java
View file @
16a01bbe
...
@@ -100,7 +100,7 @@ public class KylinBuyNoticeServiceImpl extends ServiceImpl<KylinBuyNoticeMapper,
...
@@ -100,7 +100,7 @@ public class KylinBuyNoticeServiceImpl extends ServiceImpl<KylinBuyNoticeMapper,
// 设置须知类型名称
// 设置须知类型名称
if
(
data
.
getNoticeType
()
!=
null
)
{
if
(
data
.
getNoticeType
()
!=
null
)
{
BuyNoticeVo
.
setNoticeTypeName
(
data
.
getNoticeType
()
==
1
?
"购票
须知
"
:
"观演须知"
);
BuyNoticeVo
.
setNoticeTypeName
(
data
.
getNoticeType
()
==
1
?
"购票
说明
"
:
"观演须知"
);
}
}
// 格式化时间显示
// 格式化时间显示
...
@@ -135,7 +135,7 @@ public class KylinBuyNoticeServiceImpl extends ServiceImpl<KylinBuyNoticeMapper,
...
@@ -135,7 +135,7 @@ public class KylinBuyNoticeServiceImpl extends ServiceImpl<KylinBuyNoticeMapper,
if
(
list
!=
null
)
{
if
(
list
!=
null
)
{
for
(
KylinBuyNotice
item
:
list
)
{
for
(
KylinBuyNotice
item
:
list
)
{
if
(
item
.
getNoticeType
()
!=
null
)
{
if
(
item
.
getNoticeType
()
!=
null
)
{
item
.
setNoticeTypeName
(
item
.
getNoticeType
()
==
1
?
"购票
须知
"
:
"观演须知"
);
item
.
setNoticeTypeName
(
item
.
getNoticeType
()
==
1
?
"购票
说明
"
:
"观演须知"
);
}
}
}
}
}
}
...
@@ -171,7 +171,7 @@ public class KylinBuyNoticeServiceImpl extends ServiceImpl<KylinBuyNoticeMapper,
...
@@ -171,7 +171,7 @@ public class KylinBuyNoticeServiceImpl extends ServiceImpl<KylinBuyNoticeMapper,
// 设置须知类型名称
// 设置须知类型名称
if
(
item
.
getNoticeType
()
!=
null
)
{
if
(
item
.
getNoticeType
()
!=
null
)
{
vo
.
setNoticeTypeName
(
item
.
getNoticeType
()
==
1
?
"购票
须知
"
:
"观演须知"
);
vo
.
setNoticeTypeName
(
item
.
getNoticeType
()
==
1
?
"购票
说明
"
:
"观演须知"
);
}
}
// 格式化时间显示
// 格式化时间显示
...
...
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