| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <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="{:url('Activity/editPost')}" 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="act_nums"
- id="title" required value="{:date('Y-m-d H:i:s',$create_time)}" readonly="readonly" placeholder=""/>
- </td>
- </tr>
-
- <tr>
- <th style="width:120px;"> 奖励额度</th>
- <td>
- <input class="form-control" type="text" name="price"
- id="title" required value="{$balance}" readonly="readonly" placeholder=""/>
- </td>
- </tr>
-
-
- <tr>
- <th> 变动类型</th>
- <td>
- <input class="form-control js-bootstrap-datetime" type="text" readonly="readonly" name="starttime"
- value="<switch name="type">
- <case value="31">平台奖励</case>
- <case value="32">平台扣除</case>
-
- </switch>">
-
-
-
- </td>
- </tr>
-
- <tr>
- <th style="width:120px;">操作类型</th>
- <td>
- <input class="form-control" type="text" readonly="readonly" name="address"
- id="title" value="<switch name="change_type">
- <case value="1">收入</case>
- <case value="2">支出</case>
- </switch>" placeholder=""/>
- </td>
- </tr>
-
- <tr>
- <th style="width:120px;">状态</th>
- <td>
- <input class="form-control" type="text" readonly="readonly" name="address"
- id="title" value="<switch name="status">
- <case value="1">待支付 </case>
- <case value="2">已完成 </case>
- </switch>" placeholder=""/>
- </td>
- </tr>
- <tr>
- <th>描述</th>
- <td >
- <textarea class="form-control" name="act_flow" readonly="readonly" style="height: 80px;"
- placeholder="" >{$description}</textarea>
- </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>
|