|
@@ -1,4 +1,4 @@
|
|
|
-{extend name="../../admin/view/main"}
|
|
|
+{extend name='../../admin/view/table'}
|
|
|
|
|
|
{block name="button"}
|
|
|
<!--{if auth("add")}-->
|
|
@@ -6,68 +6,90 @@
|
|
|
<!--{/if}-->
|
|
|
|
|
|
<!--{if auth("remove")}-->
|
|
|
-<button class='layui-btn layui-btn-sm layui-btn-primary' data-action='{:url("remove")}' data-confirm="确定要删除这些支付吗?" data-rule="id#{key}">删除支付</button>
|
|
|
+<button class='layui-btn layui-btn-sm layui-btn-primary' data-action='{:url("remove")}' data-confirm="确定要删除这些支付吗?" data-rule="id#{id}">删除支付</button>
|
|
|
<!--{/if}-->
|
|
|
{/block}
|
|
|
|
|
|
-{block name='content'}
|
|
|
-<div class="think-box-shadow">
|
|
|
- {include file='base/payment/index_search'}
|
|
|
- <table class="layui-table margin-top-10" lay-skin="line">
|
|
|
- {notempty name='list'}
|
|
|
- <thead>
|
|
|
- <tr>
|
|
|
- <th class='list-table-check-td think-checkbox'>
|
|
|
- <label><input data-auto-none data-check-target='.list-check-box' type='checkbox'></label>
|
|
|
- </th>
|
|
|
- <th class='list-table-sort-td'>
|
|
|
- <button class="layui-btn layui-btn-xs" data-reload type="button">刷 新</button>
|
|
|
- </th>
|
|
|
- <th class="text-left nowrap">支付名称</th>
|
|
|
- <th class="text-left nowrap">支付编号</th>
|
|
|
- <th class="text-left nowrap">支付方式</th>
|
|
|
- <th class="text-left nowrap">使用状态</th>
|
|
|
- <th class="text-left nowrap">创建时间</th>
|
|
|
- <th class="text-left nowrap"></th>
|
|
|
- </tr>
|
|
|
- </thead>
|
|
|
- {/notempty}
|
|
|
- <tbody>
|
|
|
- {foreach $list as $key=>$vo}
|
|
|
- <tr>
|
|
|
- <td class='list-table-check-td think-checkbox'>
|
|
|
- <label><input class="list-check-box" type='checkbox' value='{$vo.id}'></label>
|
|
|
- </td>
|
|
|
- <td class='list-table-sort-td'>
|
|
|
- <label><input class="list-sort-input" data-action-blur="{:sysuri()}" data-loading="false" data-value="id#{$vo.id};action#sort;sort#{value}" value="{$vo.sort}"></label>
|
|
|
- </td>
|
|
|
- <td class="text-left nowrap">
|
|
|
- <div class="headimg headimg-xs headimg-no" data-tips-hover data-tips-image data-lazy-src="{$vo.cover}"></div>
|
|
|
- {$vo.name|default=''}
|
|
|
- </td>
|
|
|
- <td class="text-left nowrap">{$vo.code|default=''}</td>
|
|
|
- <td class="text-left nowrap">{$types[$vo.type]['name']??$vo.type}</td>
|
|
|
- <td>{if $vo.status eq 0}<span class="color-red">已禁用</span>{elseif $vo.status eq 1}<span class="color-green">已激活</span>{/if}</td>
|
|
|
- <td class="text-left nowrap">{$vo.create_at|format_datetime}</td>
|
|
|
- <td class='text-left nowrap'>
|
|
|
- <!--{if auth("edit")}-->
|
|
|
- <a class="layui-btn layui-btn-sm" data-open="{:url('edit')}?id={$vo.id}">编 辑</a>
|
|
|
- <!--{/if}-->
|
|
|
+{block name="content"}
|
|
|
+<div class="layui-tab layui-tab-card">
|
|
|
+ <ul class="layui-tab-title">
|
|
|
+ {foreach ['index'=>'支付管理','recycle'=>'回 收 站'] as $k=>$v}{if isset($type) and $type eq $k}
|
|
|
+ <li data-open="{:url('index')}?type={$k}" class="layui-this color-green">{$v}</li>
|
|
|
+ {else}
|
|
|
+ <li data-open="{:url('index')}?type={$k}">{$v}</li>
|
|
|
+ {/if}{/foreach}
|
|
|
+ </ul>
|
|
|
+ <div class="layui-tab-content">
|
|
|
+ {include file='base/payment/index_search'}
|
|
|
+ <table id="PaymentTable" data-url="{:sysuri()}" data-target-search="form.form-search"></table>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+{/block}
|
|
|
|
|
|
- <!--{if auth("state") and $vo.status eq 1}-->
|
|
|
- <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('state')}" data-value="id#{$vo.id};status#0">禁 用</a>
|
|
|
- <!--{elseif auth("state") and $vo.status eq 0}-->
|
|
|
- <a class="layui-btn layui-btn-sm layui-btn-warm" data-action="{:url('state')}" data-value="id#{$vo.id};status#1">激 活</a>
|
|
|
- <!--{/if}-->
|
|
|
+{block name='script'}
|
|
|
+<script>
|
|
|
+ $(function () {
|
|
|
+ // 初始化表格组件
|
|
|
+ $('#PaymentTable').layTable({
|
|
|
+ even: true, height: 'full',
|
|
|
+ sort: {field: 'sort desc,code', type: 'desc'},
|
|
|
+ where: {type: '{$type|default="index"}'},
|
|
|
+ cols: [[
|
|
|
+ {checkbox: true, fixed: true},
|
|
|
+ {field: 'sort', title: '排序权重', align: 'center', width: 100, sort: true, templet: '#SortInputTpl'},
|
|
|
+ {field: 'code', title: '支付编号', align: "center", minWidth: 170},
|
|
|
+ {field: 'ntype', title: '支付类型', align: "center", minWidth: 170},
|
|
|
+ {
|
|
|
+ field: 'cover', title: '图片', width: 60, align: 'center', templet: function (d) {
|
|
|
+ if (!d.cover) return '';
|
|
|
+ return layui.laytpl('<div data-tips-image data-tips-hover class="headimg headimg-xs headimg-no margin-0" data-lazy-src="{{d.cover}}"></div>').render(d);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {field: 'name', title: '支付名称', align: 'left', minWidth: 140},
|
|
|
+ {field: 'status', title: '支付状态', align: 'center', minWidth: 110, templet: '#StatusSwitchTpl'},
|
|
|
+ {field: 'create_at', title: '创建时间', align: 'center', minWidth: 170, sort: true},
|
|
|
+ {toolbar: '#toolbar', title: '操作面板', align: 'center', minWidth: 80, fixed: 'right'},
|
|
|
+ ]]
|
|
|
+ });
|
|
|
|
|
|
- <!--{if auth("remove")}-->
|
|
|
- <a class="layui-btn layui-btn-sm layui-btn-danger" data-action="{:url('remove')}" data-confirm="确定要删除该支付吗?" data-value="id#{$vo.id}">删 除</a>
|
|
|
- <!--{/if}-->
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- {/foreach}
|
|
|
- </tbody>
|
|
|
- </table>
|
|
|
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
|
|
|
-</div>
|
|
|
+ // 数据状态切换操作
|
|
|
+ layui.form.on('switch(StatusSwitch)', function (obj) {
|
|
|
+ var data = {id: obj.value, status: obj.elem.checked > 0 ? 1 : 0};
|
|
|
+ $.form.load("{:url('state')}", data, 'post', function (ret) {
|
|
|
+ if (ret.code < 1) $.msg.error(ret.info, 3, function () {
|
|
|
+ $('#PaymentTable').trigger('reload');
|
|
|
+ }); else {
|
|
|
+ $('#PaymentTable').trigger('reload');
|
|
|
+ }
|
|
|
+ return false;
|
|
|
+ }, false);
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+</script>
|
|
|
+
|
|
|
+<!-- 列表排序权重模板 -->
|
|
|
+<script type="text/html" id="SortInputTpl">
|
|
|
+ <input type="number" min="0" data-blur-number="0" data-action-blur="{:sysuri()}" data-value="id#{{d.id}};action#sort;sort#{value}" data-loading="false" value="{{d.sort}}" class="layui-input text-center">
|
|
|
+</script>
|
|
|
+
|
|
|
+<!-- 数据状态切换模板 -->
|
|
|
+<script type="text/html" id="StatusSwitchTpl">
|
|
|
+ <!--{if auth("state")}-->
|
|
|
+ <input type="checkbox" value="{{d.id}}" lay-skin="switch" lay-text="已激活|已禁用" lay-filter="StatusSwitch" {{d.status>0?'checked':''}}>
|
|
|
+ <!--{else}-->
|
|
|
+ {{d.status ? '<b class="color-green">已启用</b>' : '<b class="color-red">已禁用</b>'}}
|
|
|
+ <!--{/if}-->
|
|
|
+</script>
|
|
|
+
|
|
|
+<!-- 数据操作工具条模板 -->
|
|
|
+<script type="text/html" id="toolbar">
|
|
|
+ <!--{if auth("edit") and isset($type) and $type eq 'index'}-->
|
|
|
+ <a class="layui-btn layui-btn-primary layui-btn-sm" data-open='{:url("edit")}?id={{d.id}}'>编 辑</a>
|
|
|
+ <!--{/if}-->
|
|
|
+
|
|
|
+ <!--{if auth("remove") and isset($type) and $type neq 'index'}-->
|
|
|
+ <a class="layui-btn layui-btn-danger layui-btn-sm" data-action="{:url('remove')}" data-value="id#{{d.id}}" data-confirm="确定要删除文章吗?">删 除</a>
|
|
|
+ <!--{/if}-->
|
|
|
+</script>
|
|
|
{/block}
|