| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <include file="Public:header"/>
- <div id="main-content">
- <div id="top-alert" class="fixed alert alert-error" style="display: none;">
- <button class="close fixed" style="margin-top: 4px;">×</button>
- <div class="alert-content">警告内容</div>
- </div>
- <div id="main" class="main">
- <div class="main-title-h" style="height:70px;line-height:70px;">
- <div class="search-form fl cf">
- <div class="sleft">
- <span class="h1-title">币种管理</span>
- </div>
- </div>
- <div class="fr">
- <a class="btn btn-success" href="{:U('Config/coinEdit')}">新 增</a>
- <button class="btn ajax-post btn-info" url="{:U('Config/coinStatus',array('type'=>'resume'))}" target-form="ids">启 用</button>
- <button class="btn ajax-post btn-warning" url="{:U('Config/coinStatus',array('type'=>'forbid'))}" target-form="ids">禁 用</button>
- <button class="btn ajax-post confirm btn-danger" url="{:U('Config/coinStatus',array('type'=>'delt'))}" target-form="ids">删 除</button>
- </div>
- </div>
- <div class="data-table table-striped">
- <table class="">
- <thead>
- <tr>
- <th class="row-selected"><input class="check-all" type="checkbox"/></th>
- <th width="5%" class="">ID</th>
- <th class="">代码</th>
- <th class="">名称</th>
- <th class="">类型</th>
- <th class="">合约地址</th>
- <th class="">状态</th>
- <th class="">充币</th>
- <th class="">提币</th>
- <th class="">手续费类型</th>
- <th class="">币币手续费</th>
- <th class="">合约手续费</th>
- <th class="">操作</th>
- </tr>
- </thead>
- <tbody>
- <notempty name="list">
- <volist name="list" id="vo">
- <tr>
- <td><input class="ids" type="checkbox" name="id[]" value="{$vo.id}"/></td>
- <td>{$vo.id}</td>
- <td style="text-transform:uppercase">{$vo.name}</td>
- <td style="text-transform:uppercase">{$vo.title}</td>
- <td>
- <if condition="$vo.type eq 1">
- <span>钱包币</span>
- <elseif condition="$vo.type eq 2" />
- <span>平台币</span>
- <elseif condition="$vo.type eq 3" />
- <span>认购币</span>
- </if>
- </td>
- <td>{$vo.czaddress}</td>
- <td>
- <eq name="vo.status" value="1">
- <b style="color: #028E16;">可用</b>
- <else/>
- <b style="color: #F70408">禁用</b>
- </eq>
- </td>
-
- <td>
- <eq name="vo.czstatus" value="1">
- <b style="color: #028E16;">正常</b>
- <else/>
- <b style="color: #F70408">禁用</b>
- </eq>
- </td>
-
- <td>
- <eq name="vo.txstatus" value="1">
- <b style="color: #028E16;">正常</b>
- <else/>
- <b style="color: #F70408">禁用</b>
- </eq>
- </td>
- <td>
- <?php if($vo['sxftype'] == 1){ ?>
- <span>按比例:<?php echo $vo['txsxf']."%";?></span>
-
- <?php }elseif($vo['sxftype'] == 2){?>
- <span>按数量:<?php echo $vo['txsxf_n'];?></span>
- <?php }?>
- </td>
-
- <td><span><?php echo $vo['bbsxf']."%";?></span></td>
- <td><span><?php echo $vo['hysxf']."%";?></span></td>
- <td>
- <neq name="vo.name" value="cny">
- <a href="{:U('Config/coinEdit?id='.$vo['id'])}" class="btn btn-primary btn-xs">编辑</a>
- </neq>
- </td>
- </tr>
- </volist>
- <else/>
- <td colspan="12" class="text-center empty-info">Oh! 暂时还没有内容!</td>
- </notempty>
- </tbody>
- </table>
- <div class="page">
- <div>{$page}</div>
- </div>
- </div>
- </div>
- </div>
- <include file="Public:footer"/>
- <block name="script">
- <script type="text/javascript" charset="utf-8">
- //导航高亮
- highlight_subnav("{:U('Config/coin')}");
- </script>
- </block>
|