| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <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">
- <span class="h1-title">永续合约持仓详情</span>
- </div>
- <div class="tab-wrap">
- <div class="tab-content">
- <div id="tab" class="tab-pane in tab">
- <div class="form-item cf">
- <table>
-
- <tr class="controls" style="height: 40px;line-height:40px;">
- <td class="item-label" style="width:100px;">会员账号 :</td>
- <td style="width:200px;">
- <span>{$info.username}</span>
- </td>
- </tr>
-
- <tr class="controls" style="height: 40px;line-height:40px;">
- <td class="item-label" style="width:100px;">合约交易对 :</td>
- <td style="width:200px;">
- <span>{$info.symbol}</span>
- </td>
- </tr>
-
- <tr class="controls" style="height: 40px;line-height:40px;">
- <td class="item-label" style="width:100px;">合约交易方向 :</td>
- <td style="width:200px;">
- <if condition="$info.direction eq 1">
- <span style="color:#0ecb81;">做多</span>
- <elseif condition="$info.direction eq 2" />
- <span style="color:#f5465c;">做空</span>
- </if>
- </td>
- </tr>
- <tr class="controls" style="height: 40px;line-height:40px;">
- <td class="item-label" style="width:100px;">委托单价 :</td>
- <td style="width:200px;">
- <span>{$info.wt_price}</span>
- </td>
- </tr>
- <tr class="controls" style="height: 40px;line-height:40px;">
- <td class="item-label" style="width:100px;">开仓单价 :</td>
- <td style="width:200px;">
- <span>{$info.price}</span>
- </td>
- </tr>
- <tr class="controls" style="height: 40px;line-height:40px;">
- <td class="item-label" style="width:100px;">止盈止损单价 :</td>
- <td style="width:200px;">
- <span>{$info.zyprice}/{$info.zsprice}</span>
- </td>
- </tr>
- <tr class="controls" style="height: 40px;line-height:40px;">
- <td class="item-label" style="width:100px;">合约手数 :</td>
- <td style="width:200px;">
- <span>{$info.num}</span>
- </td>
- </tr>
- <tr class="controls" style="height: 40px;line-height:40px;">
- <td class="item-label" style="width:100px;">杠杆倍数 :</td>
- <td style="width:200px;">
- <span>{$info.ggan}</span>
- </td>
- </tr>
- <tr class="controls" style="height: 40px;line-height:40px;">
- <td class="item-label" style="width:100px;">手续费 :</td>
- <td style="width:200px;">
- <span>{$info.fee}</span>
- </td>
- </tr>
-
- <tr class="controls" style="height: 40px;line-height:40px;">
- <td class="item-label" style="width:100px;">委托时间 :</td>
- <td style="width:200px;">
- <span>{$info.wttime}</span>
- </td>
- </tr>
- <tr class="controls" style="height: 40px;line-height:40px;">
- <td class="item-label" style="width:100px;">开仓时间 :</td>
- <td style="width:200px;">
- <span>{$info.addtime}</span>
- </td>
- </tr>
- <tr class="controls">
- <td class="item-label"></td>
- <td>
- <div class="form-item cf">
- <a class="btn btn-return" href="{$Think.server.HTTP_REFERER}">返 回</a>
- </div>
- </td>
- </tr>
- </table>
- </div>
- </div>
- <script type="text/javascript">
- //提交表单
- $('#submit').click(function(){
- $('#form').submit();
- });
- </script>
- </div>
- </div>
- </div>
- </div>
- <include file="Public:footer" />
- <block name="script">
- <script type="text/javascript" charset="utf-8">
- //导航高亮
- highlight_subnav("{:U('Levertade/ccinfo')}");
- </script>
- </block>
|