mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-30 21:15:34 +08:00
43 lines
1.6 KiB
HTML
43 lines
1.6 KiB
HTML
<!--
|
|
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<div class="tableform1">
|
|
|
|
<{if($logs)}>
|
|
<table class="gridlist" width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<thead>
|
|
<tr>
|
|
<th><{t}>快照内容<{/t}></th>
|
|
<th><{t}>操作人<{/t}></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<{foreach from=$logs item=data key=k}>
|
|
<tr>
|
|
<td style="text-align:left;">赠品规则于 <{$data.create_time}> 被更改, <a target="dialog::{title:'查看促销规则', width:800, height:400}" href="index.php?app=crm&ctl=admin_gift_rule<{if $data.type == '3'}>base<{/if}>&act=view_rule&snapshot_id=<{$data.id}>">查看快照</a></td>
|
|
<td><{$data.op_user}></td>
|
|
</tr>
|
|
<{/foreach}>
|
|
</tbody>
|
|
</table>
|
|
<{$pager}>
|
|
<{else}>
|
|
<div style="font-weight:bold;font-size:14px;padding:20px;color:#666;">没有相关快照</div>
|
|
<{/if}>
|
|
|
|
|
|
</div>
|