| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <include file="public@header"/>
- <style type="text/css">
- .pic-list li {
- margin-bottom: 5px;
- }
-
- </style>
- </head>
- <body>
- <div class="wrap js-check-wrap">
- <ul class="nav nav-tabs">
- <li class="active"><a href="#" color="blue">充值详情</a></li>
- </ul>
- <form action="" method="post" class="form-horizontal js-ajax-form margin-top-20">
- <div class="row">
- <div class="col-md-9">
- <table class="table table-bordered">
-
- <tr>
- <th style="width:120px;">昵称</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="{$user_nickname}" readonly="readonly" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th style="width:120px;">充值类型</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="<switch name="type">
- <case value="1">爱心充值</case>
- <case value="2">余额充值</case>
- <case value="3">积分充值</case>
- <case value="4">VIP充值购买</case>
- <case value="5">购买人工牵线服务</case>
-
- </switch>" readonly="readonly" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th style="width:120px;">单号</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="{$order_sn}" readonly="readonly" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th style="width:120px;">交易单号</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="{$transaction_id}" readonly="readonly" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th style="width:120px;">支付方式</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="<switch name="pay_type">
- <case value="1">微信支付</case>
- <default />其他支付
- </switch>" readonly="readonly" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th style="width:120px;">更改金额</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="{$money}" readonly="readonly" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th style="width:120px;">实付金额</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="{$pay_money}" readonly="readonly" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th style="width:120px;">更改前账户</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="{$balance}" readonly="readonly" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th style="width:120px;">支付时间</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="{$pay_at}" readonly="readonly" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th style="width:120px;">是否已读</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="<switch name="is_read">
- <case value="1">是</case>
- <case value="2">否</case>
- </switch>" readonly="readonly" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th style="width:120px;">状态</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="<switch name="status">
- <case value="1">待支付</case>
- <case value="2">已完成</case>
- </switch>" readonly="readonly" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th style="width:120px;">备注</th>
- <td>
- <input class="form-control" type="text" name="title"
- id="title" required value="{$remark}" readonly="readonly" placeholder=""/>
- </td>
- </tr>
-
-
-
- </table>
-
- <!-- <div class="form-group">
- <div class="col-sm-offset-2 col-sm-10">
-
- <button type="submit" class="btn btn-primary js-ajax-submit">{:lang('SAVE')}</button>
- <a class="btn btn-default" href="{:url('Activity/index')}">{:lang('BACK')}</a>
- </div>
- </div> -->
- </div>
-
- </div>
- </form>
- </div>
- </body>
- </html>
|