Files
backend-code/source/application/store/view/wxapp/help/index.php
2023-08-21 14:46:51 +08:00

81 lines
4.0 KiB
PHP

<div class="row-content am-cf">
<div class="row">
<div class="am-u-sm-12 am-u-md-12 am-u-lg-12">
<div class="widget am-cf">
<div class="widget-head am-cf">
<div class="widget-title am-cf">轮播图</div>
</div>
<div class="widget-body am-fr">
<div class="am-u-sm-12 am-u-md-6 am-u-lg-6">
<div class="am-form-group">
<div class="am-btn-toolbar">
<?php if (checkPrivilege('wxapp.help/add')): ?>
<div class="am-btn-group am-btn-group-xs">
<a class="am-btn am-btn-default am-btn-success am-radius"
href="<?= url('wxapp.help/add') ?>">
<span class="am-icon-plus"></span> 新增
</a>
</div>
<?php endif; ?>
</div>
</div>
</div>
<div class="am-u-sm-12">
<table width="100%" class="am-table am-table-compact am-table-striped tpl-table-black ">
<thead>
<tr>
<th>图片</th>
<th>添加时间</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<?php if (!$list->isEmpty()): foreach ($list as $item): ?>
<tr>
<td class="am-text-middle">
<a href="<?= $item['title'] ?>" title="点击查看大图" target="_blank">
<img src="<?= $item['title'] ?>" style="width: 150px" alt="">
</a>
</td>
<td class="am-text-middle"><?= $item['create_time'] ?></td>
<td class="am-text-middle">
<div class="tpl-table-black-operation">
<?php if (checkPrivilege('wxapp.help/edit')): ?>
<a href="<?= url('wxapp.help/edit',
['help_id' => $item['help_id']]) ?>">
<i class="am-icon-pencil"></i> 编辑
</a>
<?php endif; ?>
<?php if (checkPrivilege('wxapp.help/delete')): ?>
<a href="javascript:;" class="item-delete tpl-table-black-operation-del"
data-id="<?= $item['help_id'] ?>">
<i class="am-icon-trash"></i> 删除
</a>
<?php endif; ?>
</div>
</td>
</tr>
<?php endforeach; else: ?>
<tr>
<td colspan="5" class="am-text-center">暂无记录</td>
</tr>
<?php endif; ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
$(function () {
// 删除元素
var url = "<?= url('wxapp.help/delete') ?>";
$('.item-delete').delete('help_id', url);
});
</script>