正在显示
1 个修改的文件
包含
27 行增加
和
0 行删除
application/api/view/orderinfo.html
0 → 100644
1 | +<style> | ||
2 | + .table-adminlog tr td { | ||
3 | + word-break: break-all; | ||
4 | + } | ||
5 | +</style> | ||
6 | +<table class="table table-striped table-adminlog"> | ||
7 | + <thead> | ||
8 | + <tr> | ||
9 | + <th width="100">{:__('Title')}</th> | ||
10 | + <th>{:__('Content')}</th> | ||
11 | + </tr> | ||
12 | + </thead> | ||
13 | + <tbody> | ||
14 | + {volist name="row" id="vo" } | ||
15 | + <tr> | ||
16 | + <td>{:__($key)}</td> | ||
17 | + <td>{if $key=='createtime'}{$vo|datetime}{else/}{$vo|htmlentities}{/if}</td> | ||
18 | + </tr> | ||
19 | + {/volist} | ||
20 | + </tbody> | ||
21 | +</table> | ||
22 | +<div class="hide layer-footer"> | ||
23 | + <label class="control-label col-xs-12 col-sm-2"></label> | ||
24 | + <div class="col-xs-12 col-sm-8"> | ||
25 | + <button type="reset" class="btn btn-primary btn-embossed btn-close" onclick="Layer.closeAll();">{:__('Close')}</button> | ||
26 | + </div> | ||
27 | +</div> |
-
请 注册 或 登录 后发表评论