记得上下班打卡 | 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
922db2e0
Commit
922db2e0
authored
Dec 01, 2021
by
胡佳晨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
admin 详情
parent
eac77ea3
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
5 deletions
+14
-5
details.html
...ources/templates/zhengzai/kylin/performances/details.html
+6
-0
performances.html
...s/templates/zhengzai/kylin/performances/performances.html
+5
-5
PerformanceAdminListDao.java
.../liquidnet/service/kylin/dao/PerformanceAdminListDao.java
+1
-0
KylinPerformancesMapper.xml
...iquidnet.service.kylin.mapper/KylinPerformancesMapper.xml
+2
-0
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/performances/details.html
View file @
922db2e0
...
@@ -67,6 +67,12 @@
...
@@ -67,6 +67,12 @@
<div
class=
"panel-body"
th:width=
"max"
style=
"margin-top: 10px"
>
<div
class=
"panel-body"
th:width=
"max"
style=
"margin-top: 10px"
>
<form
class=
"form-horizontal m"
id=
"form-performances-edit"
<form
class=
"form-horizontal m"
id=
"form-performances-edit"
th:object=
"${kylinPerformanceMisVo}"
>
th:object=
"${kylinPerformanceMisVo}"
>
<div>
<h4>
场地核进度:
</h4>
<span
th:if=
"*{fieldAuditStatus==0}"
>
通过
</span>
<span
th:if=
"*{fieldAuditStatus==1}"
style=
"color: red"
>
待审核
</span>
<span
th:if=
"*{fieldAuditStatus==2}"
style=
"color: red"
>
拒绝
</span>
</div>
<div>
<div>
<h4>
演出封面:
</h4>
<h4>
演出封面:
</h4>
<img
class=
"img-details"
name=
"img"
th:src=
"*{imgPoster}"
<img
class=
"img-details"
name=
"img"
th:src=
"*{imgPoster}"
...
...
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/kylin/performances/performances.html
View file @
922db2e0
...
@@ -96,8 +96,8 @@
...
@@ -96,8 +96,8 @@
exportUrl
:
prefix
+
"/export"
,
exportUrl
:
prefix
+
"/export"
,
// sortName: "sort",
// sortName: "sort",
modalName
:
"演出"
,
modalName
:
"演出"
,
orderSc
:
"desc"
,
orderSc
:
"desc"
,
orderItem
:
"created_at"
,
orderItem
:
"created_at"
,
columns
:
[{
columns
:
[{
checkbox
:
true
checkbox
:
true
},
},
...
@@ -147,9 +147,9 @@
...
@@ -147,9 +147,9 @@
align
:
'center'
,
align
:
'center'
,
formatter
:
function
(
value
,
row
,
index
)
{
formatter
:
function
(
value
,
row
,
index
)
{
var
actions
=
[];
var
actions
=
[];
if
(
row
.
auditStatus
==
0
)
{
if
(
row
.
auditStatus
==
0
&&
row
.
fieldAuditStatus
==
0
)
{
actions
.
push
(
'<a class="btn btn-success btn-xs '
+
detailFlag
+
'" href="javascript:void(0)" onclick="$.operate.detailTab(
\'
'
+
row
.
performancesId
+
'
\'
)"><i class="fa fa-edit"></i>管理</a> '
);
actions
.
push
(
'<a class="btn btn-success btn-xs '
+
detailFlag
+
'" href="javascript:void(0)" onclick="$.operate.detailTab(
\'
'
+
row
.
performancesId
+
'
\'
)"><i class="fa fa-edit"></i>管理</a> '
);
}
else
{
}
else
{
actions
.
push
(
'<a class="btn btn-success btn-xs '
+
detailFlag
+
'" href="javascript:void(0)" onclick="$.operate.detailTab(
\'
'
+
row
.
performancesId
+
'
\'
)"><i class="fa fa-edit"></i>查看</a> '
);
actions
.
push
(
'<a class="btn btn-success btn-xs '
+
detailFlag
+
'" href="javascript:void(0)" onclick="$.operate.detailTab(
\'
'
+
row
.
performancesId
+
'
\'
)"><i class="fa fa-edit"></i>查看</a> '
);
}
}
if
(
row
.
syncDamai
==
1
)
{
if
(
row
.
syncDamai
==
1
)
{
...
@@ -163,7 +163,7 @@
...
@@ -163,7 +163,7 @@
});
});
function
f
(
id
)
{
function
f
(
id
)
{
$
.
post
(
prefix
+
"/sync/damai"
,
{
performancesId
:
id
},
function
(
res
)
{
$
.
post
(
prefix
+
"/sync/damai"
,
{
performancesId
:
id
},
function
(
res
)
{
alert
(
res
.
msg
)
alert
(
res
.
msg
)
});
});
}
}
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/java/com/liquidnet/service/kylin/dao/PerformanceAdminListDao.java
View file @
922db2e0
...
@@ -14,6 +14,7 @@ public class PerformanceAdminListDao {
...
@@ -14,6 +14,7 @@ public class PerformanceAdminListDao {
private
String
timeEnd
;
private
String
timeEnd
;
private
String
sponsor
;
private
String
sponsor
;
private
Integer
status
;
private
Integer
status
;
private
Integer
fieldAuditStatus
;
private
String
statusName
;
private
String
statusName
;
private
String
auditTime
;
private
String
auditTime
;
private
String
timeSell
;
private
String
timeSell
;
...
...
liquidnet-bus-do/liquidnet-service-kylin-do/src/main/resources/com.liquidnet.service.kylin.mapper/KylinPerformancesMapper.xml
View file @
922db2e0
...
@@ -37,6 +37,7 @@
...
@@ -37,6 +37,7 @@
<result
column=
"reject_txt"
property=
"rejectTxt"
/>
<result
column=
"reject_txt"
property=
"rejectTxt"
/>
<result
column=
"sort"
property=
"sort"
/>
<result
column=
"sort"
property=
"sort"
/>
<result
column=
"audit_time"
property=
"auditTime"
/>
<result
column=
"audit_time"
property=
"auditTime"
/>
<result
column=
"field_audit_status"
property=
"fieldAuditStatus"
/>
<result
column=
"sponsor"
property=
"sponsor"
/>
<result
column=
"sponsor"
property=
"sponsor"
/>
<result
column=
"sync_damai"
property=
"syncDamai"
/>
<result
column=
"sync_damai"
property=
"syncDamai"
/>
<result
column=
"created_at"
property=
"createdAt"
/>
<result
column=
"created_at"
property=
"createdAt"
/>
...
@@ -249,6 +250,7 @@
...
@@ -249,6 +250,7 @@
) AS 'surplus_general' ,
) AS 'surplus_general' ,
ps.`status` ,
ps.`status` ,
ps.audit_status ,
ps.audit_status ,
ps.field_audit_status,
p.reject_txt ,
p.reject_txt ,
p.created_at
p.created_at
FROM
FROM
...
...
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