test_service d3170b4d1c 1
2023-12-01 15:43:29 +08:00

1 line
6.3 KiB
HTML
Executable File

<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>
{if $wechat AND $wechat['status']['value'] == 1}
<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">
<div class="am-btn-group am-btn-group-sm">
<a href="javascript:void(0);" class="hema-add am-btn am-btn-primary am-radius">
<span class="am-icon-plus"></span> 添加
</a>
</div>
</div>
</div>
</div>
<div class="am-u-sm-12">
<table width="100%" class="am-table am-table-hover tpl-table-black">
<thead>
<tr>
<th>编号</th>
<th>预览</th>
<th>名称</th>
<th>MEDIA_ID</th>
<th>时间</th>
<th>操作</th>
</tr>
</thead>
<tbody>
{if !$list->isEmpty()}
{foreach $list as $item}
<tr>
<td class="am-text-middle">{$item['material_id']}</td>
<td class="am-text-middle">
<a href="{$item['file_url']}" title="点击查看大图" target="_blank">
<img src="{$item['file_url']}" width="50" height="50">
</a>
</td>
<td class="am-text-middle">{$item['name']}</td>
<td class="am-text-middle">{$item['media_id']}</td>
<td class="am-text-middle">{$item['create_time']}</td>
<td class="am-text-middle">
<div class="tpl-table-black-operation">
<a href="javascript:;" class="hema-edit" data-id="{$item['material_id']}">
<i class="am-icon-pencil"></i> 编辑
</a>
<a href="javascript:;" class="hema-del tpl-table-black-operation-del"
data-id="{$item['material_id']}">
<i class="am-icon-trash"></i> 删除
</a>
</div>
</td>
</tr>
{/foreach}
{else /}
<tr>
<td colspan="6" class="am-text-center">暂无记录</td>
</tr>
{/if}
</tbody>
</table>
</div>
<div class="am-u-lg-12 am-cf">
<div class="am-fr">{:$list->render()} </div>
<div class="am-fr pagination-total am-margin-right">
<div class="am-vertical-align-middle">总记录:{:$list->total()}</div>
</div>
</div>
</div>
{else /}
<div class="tips am-margin-bottom-sm am-u-sm-12">
<div class="pre-error">未绑定授权公众号</div>
</div>
{/if}
</div>
</div>
</div>
</div>
{include file="../../admin/view/wechat/material/image/add" /}
{include file="../../admin/view/wechat/material/image/edit" /}
<!-- 图片文件列表模板 -->
{include file="../addons/upload/view/template/tpl_file_item_id.html" /}
<!-- 文件库弹窗 -->
{include file="../addons/upload/view/template/file_library.html" /}
<script>
$(function () {
//添加
$('.hema-add').on('click', function () {
$.showAction({
title: '添加',
area: '750px',
content: template('tpl-add', {}),
uCheck: true,
success: function ($content) {
// 选择图片
$('.upload-file').selectImages({
name: 'data[file_path]'
});
$('#my-form').formPost({
url: "{:url('wechat.material.image/add')}"
});
},
btn2: function ($content) {
return true;
}
});
});
//编辑
$('.hema-edit').on('click', function () {
var data = $(this).data();
$.get("{:url('wechat.material.image/edit')}?id=" + data.id, function (result) {
if(result.code == 0){
$.show_error(result.msg);
return false;
}
$.showAction({
title: '编辑',
area: '750px',
content: template('tpl-edit', {model:result.data.model}),
uCheck: true,
success: function ($content) {
$('#my-form').formPost({
url: "{:url('wechat.material.image/edit')}?id=" + data.id
});
},
btn2: function ($content) {
return true;
}
});
});
});
// 删除元素
$('.hema-del').del('id', "{:url('wechat.material.image/delete')}");
});
</script>