add.html
4.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<include file="public@header"/>
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li><a href="{:url('SlideItem/index',['slide_id'=>$slide_id])}">幻灯片页面列表</a></li>
<li class="active"><a href="{:url('SlideItem/add',['slide_id'=>$slide_id])}">添加幻灯片页面</a></li>
</ul>
<form action="{:url('SlideItem/addPost')}" method="post" class="form-horizontal js-ajax-form margin-top-20">
<div class="row">
<div class="col-md-9">
<table class="table table-bordered">
<tr>
<th>标题<span class="form-required">*</span></th>
<td>
<input class="form-control" type="text" style="width:400px;" name="post[title]" id="title"
required value="" placeholder="请输入标题"/>
</td>
</tr>
<tr>
<th>关联活动<span class="form-required">*</span></th>
<td>
<select class="form-control" name="activity_id">
<foreach name="$activity" item="a">
<option value='{$a.id}'>{$a.activity_name}</option>
</foreach>
</select>
</td>
</tr>
<!--<tr>-->
<!--<th>链接</th>-->
<!--<td>-->
<!--<input class="form-control" type="text" name="post[url]" id="keywords" value=""-->
<!--style="width: 400px" placeholder="请输入链接">-->
<!--</td>-->
<!--</tr>-->
<!--<tr>-->
<!--<th>描述</th>-->
<!--<td><input class="form-control" type="text" name="post[description]" id="source" value=""-->
<!--style="width: 400px" placeholder="请输入描述"></td>-->
<!--</tr>-->
<!--<tr>-->
<!--<th>幻灯片内容</th>-->
<!--<td>-->
<!--<textarea class="form-control" name="post[content]" id="description"-->
<!--style="width: 47%; height: 100px;" placeholder="请填写幻灯片内容"></textarea>-->
<!--</td>-->
<!--</tr>-->
</table>
</div>
<div class="col-md-3">
<table class="table table-bordered">
<tr>
<th><b>缩略图</b></th>
</tr>
<tr>
<td>
<div style="text-align: center;">
<input type="hidden" name="post[image]" id="thumb" value="">
<a href="javascript:uploadOneImage('图片上传','#thumb');">
<img src="__TMPL__/public/assets/images/default-thumbnail.png" id="thumb-preview"
width="135" style="cursor: hand"/>
</a>
<input type="button" class="btn btn-sm"
onclick="$('#thumb-preview').attr('src','__TMPL__/public/assets/images/default-thumbnail.png');$('#thumb').val('');return false;"
value="取消图片">
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<input type="hidden" name="post[slide_id]" value="{$slide_id}">
<button type="submit" class="btn btn-primary js-ajax-submit">{:lang('ADD')}</button>
<a class="btn btn-default" href="{:url('SlideItem/index',['slide_id'=>$slide_id])}">{:lang('BACK')}</a>
</div>
</div>
</form>
</div>
<script type="text/javascript" src="__STATIC__/js/admin.js"></script>
</body>
</html>