index.php
5.19 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php $this->_extends('layout/admin_layout');?>
<?php $this->_block('main');?>
<h4>主理人列表</h4>
<table class="table">
<caption style="text-align:left; padding-bottom:5px;">
<button class="btn" style="float:left;" id="add_star" href="javascript:void(0)">添加主理人</button>
<form method="post" class="form-search search_panel" style="text-align:right;">
<select class="span2" name="state" id="state_from">
<option value="1" <?php if($this->view->state=='1'){echo 'selected="selected"';}?>>展示</option>
<option value="0" <?php if($this->view->state=='0'){echo 'selected="selected"';}?>>关闭</option>
</select>
<div class="input-append">
<button type="submit" class="btn">搜索</button>
</div>
</form>
</caption>
<thead>
<td>编号</td>
<td>主理人名字</td>
<td>图片组</td>
<td style="width:300px">描述</td>
<td>品牌ID</td>
<td>新闻ID组</td>
<td>一句话</td>
<td>排序</td>
<td>操作</td>
</thead>
<?php if (empty($this->view->data)) :?>
<tr><td colspan="10" style="text-align: center">无记录</td></tr>
<?php else :?>
<?php foreach ($this->view->data as $star) :?>
<tr>
<td><?php echo $star['id']?></td>
<td><?php echo $star['name'];?></td>
<td title='<?php echo $star['pics']?>'>
<?php
$pics = json_decode($star['pics'],true);
foreach($pics as $pic)
{
if($pic['type']=='video')
{
echo '<button class="btn look_video">查看视频</button><span style="display:none">'.
'<embed src="'.$pic['url'].'" allowFullScreen="true" quality="high" width="390" height="294" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash"></embed>'.
'</span>';
}
elseif($pic['type']=='pic')
{
$url = Lib_Images::getImageUrl($pic['url'],'0200x0150','fragmentimg');
echo '<img src="'.$url.'" width="40" height="30">';
}
}
?>
</td>
<td><?php echo $star['description'];?></td>
<td><?php echo $star['brand_id']?></td>
<td><?php echo $star['news_ids']?></td>
<td><?php echo $star['say']?></td>
<td><?php echo $star['seq']?></td>
<td><button id="look_one_<?php echo $star['id'];?>" class="btn look">编辑</button></td>
</tr>
<?php endforeach;?>
<?php endif;?>
</table>
<?php $this->_component('Common_Pagination',array(
'pagination' => $this->view->pagination,'show_count' =>true,
));?>
<div id="form_pan" admin="<?php echo $this->view->admin?>" style="display:none">
<table class="table table-bordered">
<tbody>
<tr>
<td>名字<span class="text-error"> * </span></td>
<td>
<input type="text" id="name" name="name" value=""/>
<input type="hidden" id="id" name="id"/>
</td>
<td>排序<span class="text-error"> * </span></td>
<td>
<input type="text" id="seq" name="seq" value=""/>
</td>
</tr>
<tr>
<td>图片组</td>
<td>
<span id="upload_pics" key="<?php echo $this->view->key;?>"></span>
<button class="btn btn-info" type="button">上传</button>
<input type="hidden" id="pics_val" name="pics_val" value=""/>
</td>
<td>视频</td>
<td>
<textarea rows="2" style="width:300px;" id="pics" name="pics" value=""></textarea>
</td>
</tr>
<tr>
<td>描述</td>
<td colspan="3">
<textarea rows="1" style="margin-left: 0px; margin-right: 0px; width: 605px;" id="description" name="description"></textarea>
</td>
</tr>
<tr >
<td>品牌ID</td>
<td>
<input type="text" id="brand_id" name="brand_id" />
</td>
<td>新闻ID组</td>
<td>
<input type="text" id="news_ids" name="news_ids" />
</td>
</tr>
<tr>
<td>状态</td>
<td>
<select class="span2" id="state">
<option value="1" selected="selected">展示</option>
<option value="0">关闭</option>
</select>
</td>
<td>一句话</td>
<td>
<input type="text" id="say"/>
</td>
</tr>
</tbody>
</table>
</div>
<?php $this->_endblock();?>
<?php $this->_block('js');?>
<?php $this->_js('star.js', array(
SITE_JS . '/lib/seajs.js',
));?>
<script type="text/javascript">
seajs.use('admin/star');
</script>
<?php $this->_endblock();?>