Files
SRCMS/Application/Application/Admin/View/Order/update.html
Martin Zhou d14b358b31 SRCMS·轻响应V1.9正式版
修复 管理后台管理用户搜索失效的问题
修复 前端页面CSS样式远程资源失效问题
修复 用户积分兑换逻辑问题(Issued By 藏形匿影)
修复 后台积分扣除导致排行榜错乱的问题
改动 改动了涉及用户积分相关的数据表结构
新增 后台报告审核筛选功能
新增 前台用户个人中心订单查看功能
2016-12-26 21:11:19 +08:00

66 lines
3.3 KiB
HTML

<include file="Public/header" title="订单详情" />
<div id="page-wrapper">
<form method="post" action="{:U('order/jifen')}">
<div class="form-group">
<label for="bb">用户目前积分: </label>
<label><foreach name="userM" item="v">{$v.jinbi}</foreach></label>
</div>
<div class="form-group">
<label for="bb">扣除积分: </label>
<input type="text" name="amount" class="form-control" id="ee" value="" placeholder="填写扣除积分" value="100">
</div>
<input type="hidden" name="user_id" value="{$model.username}">
<div class="form-group">
<input type="hidden" name="id" value="{$model.id}">
<button type="submit" class="btn btn-default">执行</button>
</div>
</form>
</div>
<div id="page-wrapper">
<form method="post" action="{:U('order/update')}">
<div class="form-group">
<label for="aa">礼品名称</label>
<input type="text" name="gid" class="form-control" id="aa" value="{$model.gid}" placeholder="输入礼品名称">
</div>
<div class="form-group">
<label for="bb">真实姓名</label>
<input type="text" name="realname" class="form-control" id="bb" value="{$model.realname}" placeholder="填写真实姓名">
</div>
<div class="form-group">
<label for="cc">住址</label>
<input type="text" name="location" class="form-control" id="cc" value="{$model.location}" placeholder="填写住址" value="100">
</div>
<div class="form-group">
<label for="cc">联系方式</label>
<input type="text" name="tel" class="form-control" id="dd" value="{$model.tel}" placeholder="填写联系方式" value="100">
</div>
<div class="form-group">
<label for="cc">邮编</label>
<input type="text" name="zipcode" class="form-control" id="ee" value="{$model.zipcode}" placeholder="填写邮编" value="100">
</div>
<div class="form-group">
<label for="cc">支付宝帐号</label>
<input type="text" name="alipay" class="form-control" id="ee" value="{$model.alipay}" placeholder="填写支付宝账号" value="100">
</div>
<div class="form-group">
<label>订单状态: </label>
<label class="radio-inline">
<input type="radio" name="finish" id="finish" value="0" <if condition="$post.day eq 0">checked="checked"</if> > 待处理
</label>
<label class="radio-inline">
<input type="radio" name="finish" id="finish" value="1" <if condition="$post.day eq 1">checked="checked"</if>> 已发货
</label>
<label class="radio-inline">
<input type="radio" name="finish" id="finish" value="0" <if condition="$post.day eq 2">checked="checked"</if> > 发货中
</label>
<label class="radio-inline">
<input type="radio" name="finish" id="finish" value="1" <if condition="$post.day eq 3">checked="checked"</if>> 已关闭
</label>
</div>
<div class="form-group">
<input type="hidden" name="id" value="{$model.id}">
<button type="submit" class="btn btn-default">更新</button>
</div>
</form>
</div>
<include file="Public/footer" />