123456789101112131415161718192021222324252627282930313233343536373839 |
- <div id="actionbar">
- <a href="{:url('manage.unmarket/storeAdd',['union_id' => $union_id])}" class="button button-blue"> <i class="iconfont icon-add_icon"></i>增加联合促销商家</a>
- </div>
- <table class="table">
- <thead>
- <tr>
- <th class="w100">操作</th>
- <th>商家名称</th>
- <th>商家地址</th>
- <th class="w100">商家电话</th>
- <th class="w140">结束时间</th>
- <th class="w90 fn-tac">删除</th>
- </tr>
- </thead>
- <tbody>
- {foreach $lists as $vo}
- <tr>
- <td class="button-group">
- <a class="button" href="{:url('manage.unmarket/storeEdit',['id'=>$vo.id,'union_id' => $vo.union_id])}" title="修改"><i class="iconfont icon-edit"></i>编辑</a>
- </td>
- <td>{$vo.name}</td>
- <td>{$vo.address}</td>
- <td>{$vo.telphone}</td>
- <td>{$vo.endtime|date='Y-m-d H:i'}</td>
- <td>
- <a class="button isDel" url="{:url('manage.unmarket/storeDelete',['id'=>$vo.id,'union_id' => $vo.union_id])}" href="javascript:;" title="删除"><i class="iconfont icon-lajixiang"></i>删除</a>
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {$lists|raw}
- <script type="text/javascript">
- Do('base', 'layer','tip',function () {
- $('.isDel').isDel();
- $(".trigger").powerFloat({targetMode:"ajax"});
- })
- </script>
|