记得上下班打卡 | 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
5e3a8ce0
Commit
5e3a8ce0
authored
Oct 25, 2021
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
活动html
parent
86f9196b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
153 additions
and
0 deletions
+153
-0
form.html
...urces/templates/zhengzai/sweet/integralActivity/form.html
+22
-0
list.html
...urces/templates/zhengzai/sweet/integralActivity/list.html
+131
-0
No files found.
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/sweet/integralActivity/form.html
0 → 100644
View file @
5e3a8ce0
<!DOCTYPE html>
<html
lang=
"zh"
xmlns:th=
"http://www.thymeleaf.org"
>
<head>
<th:block
th:include=
"include :: header('添加活动')"
/>
</head>
<body
class=
"white-bg"
>
<div
class=
"wrapper wrapper-content animated fadeInRight ibox-content"
>
<form
class=
"form-horizontal m"
id=
"form-post-add"
>
<div
class=
"form-group"
>
<label
class=
"col-sm-2 control-label is-required"
>
标题:
</label>
<div
class=
"col-sm-10"
>
<input
class=
"form-control"
type=
"text"
name=
"activityTitle"
required
>
</div>
</div>
</form>
</div>
<th:block
th:include=
"include :: footer"
/>
<script
type=
"text/javascript"
>
var
prefix
=
ctx
+
"sweet/sweetIntegralActivity"
;
</script>
</body>
</html>
\ No newline at end of file
liquidnet-bus-client/liquidnet-client-admin/liquidnet-client-admin-web/src/main/resources/templates/zhengzai/sweet/integralActivity/list.html
0 → 100644
View file @
5e3a8ce0
<!DOCTYPE html>
<html
lang=
"zh"
xmlns:th=
"http://www.thymeleaf.org"
xmlns:shiro=
"http://www.pollix.at/thymeleaf/shiro"
>
<head>
<th:block
th:include=
"include :: header('积分活动列表')"
/>
</head>
<body
class=
"gray-bg"
>
<div
class=
"container-div"
>
<div
class=
"row"
>
<div
class=
"col-sm-12 search-collapse"
>
<form
id=
"formId"
>
<div
class=
"select-list"
>
<ul>
<li>
<label>
活动名称:
</label>
<input
type=
"text"
name=
"activityTitle"
/>
</li>
<li>
<a
class=
"btn btn-primary btn-rounded btn-sm"
onclick=
"$.table.search()"
><i
class=
"fa fa-search"
></i>
搜索
</a>
<a
class=
"btn btn-warning btn-rounded btn-sm"
onclick=
"$.form.reset()"
><i
class=
"fa fa-refresh"
></i>
重置
</a>
</li>
</ul>
</div>
</form>
</div>
<div
class=
"btn-group-sm"
id=
"toolbar"
role=
"group"
>
<a
class=
"btn btn-success"
onclick=
"$.operate.add()"
shiro:hasPermission=
"sweet:integralActivity:create"
>
<i
class=
"fa fa-plus"
></i>
添加
</a>
</div>
<div
class=
"col-sm-12 select-table table-bordered"
>
<table
id=
"bootstrap-table"
></table>
</div>
</div>
</div>
<th:block
th:include=
"include :: footer"
/>
<script
th:inline=
"javascript"
>
var
updateFlag
=
[[
$
{@
permission
.
hasPermi
(
'sweet:integralActivity:create'
)}]];
var
isOnlineFlag
=
[[
$
{@
permission
.
hasPermi
(
'sweet:integralActivity:isOnline'
)}]];
var
drawListFlag
=
[[
$
{@
permission
.
hasPermi
(
'sweet:integralActivityDraw:list'
)}]];
var
prefix
=
ctx
+
"sweet/integralActivity"
;
$
(
function
()
{
var
options
=
{
url
:
prefix
+
"/list"
,
updateUrl
:
prefix
+
"/formView"
,
// /update/{id}
createUrl
:
prefix
+
"/formView"
,
detailUrl
:
prefix
+
"/sweet/integralActivityDraw/drawList/{id}"
,
modalName
:
"积分活动"
,
columns
:
[{
checkbox
:
true
},
{
field
:
'activityTitle'
,
title
:
'活动名称'
},
{
field
:
'activityImg'
,
title
:
'活动图片'
,
formatter
:
function
(
value
,
row
,
index
)
{
return
$
.
table
.
imageView
(
value
,
"300"
,
"600"
);
}
},
{
field
:
'activityType'
,
title
:
'活动类型'
,
formatter
:
function
(
value
,
row
)
{
var
activityType
=
row
.
activityType
;
if
(
row
.
activityType
==
1
)
{
activityType
=
"转盘"
;
}
else
{
activityType
=
"未知"
;
}
return
activityType
;
}
},
{
field
:
'prizeNum'
,
title
:
'奖品数量'
},
{
field
:
'drawNum'
,
title
:
'已发出'
},
{
field
:
''
,
title
:
'奖品剩余'
,
formatter
:
function
(
value
,
row
)
{
var
prizeNum
=
row
.
prizeNum
;
var
drawNum
=
row
.
drawNum
;
return
prizeNum
-
drawNum
;
}
},
{
field
:
'isOnline'
,
title
:
'活动状态'
,
formatter
:
function
(
value
,
row
)
{
var
isOnline
=
row
.
isOnline
;
if
(
row
.
isOnline
==
1
)
{
isOnline
=
"未上线"
;
}
else
{
isOnline
=
"已上线"
;
}
return
isOnline
;
}
},
{
field
:
'createdAt'
,
title
:
'创建时间'
},
{
title
:
'操作'
,
align
:
'center'
,
formatter
:
function
(
value
,
row
,
index
)
{
var
actions
=
[];
actions
.
push
(
'<a class="btn btn-success btn-xs '
+
drawListFlag
+
'" href="javascript:void(0)" onclick="$.operate.detailTab(
\'
'
+
row
.
integralActivityId
+
'
\'
)"><i class="fa fa-edit"></i>查看中奖名单</a> '
);
actions
.
push
(
'<a class="btn btn-success btn-xs '
+
updateFlag
+
'" href="javascript:void(0)" onclick="$.operate.edit(
\'
'
+
row
.
integralActivityId
+
'
\'
)"></i>编辑</a> '
);
actions
.
push
(
'<a class="btn btn-danger btn-xs '
+
isOnlineFlag
+
'" href="javascript:void(0)" onclick="$.operate.remove(
\'
'
+
row
.
integralActivityId
+
'
\'
)"></i>上下线</a> '
);
return
actions
.
join
(
''
);
}
}]
};
$
.
table
.
init
(
options
);
});
</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