69 lines
2.0 KiB
HTML
69 lines
2.0 KiB
HTML
{extend name="public/base" /}
|
|
{block name="body"}
|
|
<style>
|
|
.clinhei{width:100%;height:20px;}
|
|
.inp{width:200px;}
|
|
.md-list{
|
|
width: 100%;
|
|
height: 120px;
|
|
background: #fff;
|
|
border-radius:5px;
|
|
}
|
|
.md-list p{
|
|
float: left;
|
|
margin-top: 42px;
|
|
font-size: 18px;
|
|
color: #000;
|
|
margin-left:20px;
|
|
letter-spacing: 1px;
|
|
}
|
|
.md-list img{
|
|
float: left;
|
|
width: 165px;
|
|
height: 100px;
|
|
margin-top: 9px;
|
|
margin-left: 40px;
|
|
}
|
|
.bot{
|
|
float:right;
|
|
margin-right: 20px;
|
|
margin-top: 40px;
|
|
}
|
|
.bot a{
|
|
|
|
}
|
|
</style>
|
|
<div class="main-box-body clearfix">
|
|
<form method="get">
|
|
<div class="col-sm-12 col-md-3">
|
|
<input type="text" class="form-control" name="keyword" value="" placeholder="请输公众号名称">
|
|
</div>
|
|
<div class="col-sm-12 col-md-3">
|
|
<button class="btn btn-primary" type="submit">搜索</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="clinhei"></div>
|
|
{volist name="list" id="v"}
|
|
<div class="md-list">
|
|
<p>公众号编号:<font color="red">{$v.id}</font></p>
|
|
<p>公众号名称:<font style="color: seagreen;">{$v.title}</font></p>
|
|
<div class="bot">
|
|
<a href="{:url('Wxpushall/wxpushhistory',array('id'=>$v.id))}" class="btn btn-success">高级群发记录</a>
|
|
<a href="{:url('Wxpushall/index',array('id'=>$v.id))}" class="btn btn-warning" style="background: #fc5531;">高级群发</a>
|
|
<a href="{:url('Wxpushall/template',array('id'=>$v.id))}"><button type="button" class="btn btn-danger">模板消息</button></a>
|
|
<a href="{:url('Wxpushall/reply',array('id'=>$v.id))}" class="btn btn-primary" style="background: #2c76ff;">关注回复</a>
|
|
<a href="{:url('Wxpushall/menu',array('id'=>$v.id))}" class="btn btn-primary">菜单设置</a>
|
|
<a href="{:url('Wxpushall/menu_text',array('id'=>$v.id))}" class="btn btn-primary" style="background: #2c76ff;">菜单回复</a>
|
|
</div>
|
|
</div>
|
|
<div class="clinhei"></div>
|
|
{/volist}
|
|
|
|
{/block}
|
|
{block name="script"}
|
|
<script>
|
|
|
|
</script>
|
|
{/block}
|