123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- {include file="common/header"/}
- <style>
- .upload-wrap {
- position: relative;
- display: inline-block;
- overflow: hidden;
- border: 1px solid #2d78f4;
- border-radius: 3px;
- }
- .upload-wrap .file-ele {
- position: absolute;
- top: 0;
- right: 0;
- opacity: 0;
- height: 100%;
- width: 100%;
- cursor: pointer;
- }
- .upload-wrap .file-open {
- width: 90px;
- height: 30px;
- line-height: 30px;
- text-align: center;
- color: #fff;
- background: #3385ff;
- }
- </style>
- <div class="LM-container">
- <div class="LM-main">
- <fieldset class="layui-elem-field layui-field-title">
- <legend>财务统计</legend>
- <blockquote class="layui-elem-quote">
- <div class="LM-table">
- </div>
- </blockquote>
- </fieldset>
- <table class="layui-table" id="list" lay-filter="list">
- </table>
- </div>
- </div>
- <script type="text/html" id="barDemo">
- {{# if(d.status ===0 ){ }}
- <input type="button" class="layui-btn layui-btn-xs" lay-event="tongguo" value="审核通过">
- <input type="button" class="layui-btn layui-btn-danger layui-btn-xs" lay-event="jujue" value="拒绝">
- {{# }}}
- </script>
- <script type="text/html" id="avatar">
- <img src="/static/admin/images/image.gif"
- onmouseover="layer.tips('<img src={{d.image}}>',this,{tips: [1, '#fff']});"
- onmouseout="layer.closeAll();">
- </script>
- {include file="common/footer"/}
- <script src="/static/plugins/jquery-3.4.1/jquery-3.4.1.min.js"></script>
- <script>
- layui.use(['form', 'table'], function () {
- var $ = layui.jquery,
- form = layui.form,
- table = layui.table;
- var tableIn = table.render({
- elem: '#list',
- url: '{:url("shenhe")}',
- method: 'post',
- title: '反馈意见',
- loading: true,
- toolbar: '#toolbar', //开启头部工具栏,并为其绑定左侧模板
- defaultToolbar: ['filter', 'exports', 'print', "excel", { //自定义头部工具栏右侧图标。如无需自定义,去除该参数即可
- title: '提示'
- , layEvent: 'LAYTABLE_TIPS'
- , icon: 'layui-icon-tips'
- }],
- cols: [[
- // {checkbox: true, fixed: true},
- {field: 'id', title: 'ID', width: 80, fixed: true, sort: true},
- {field: 'user_id', title: '用户id', width: 120, sort: true},
- {field: 'user_name', title: '用户', width: 120, sort: true},
- {field: 'money', title: '充值数量', width: 120, sort: true},
- {field: 'actual_money', title: '实际充值金额', width: 200, sort: true},
- {field: 'charge_money', title: '优惠金额', width: 120, sort: true},
- {field: 'statuss', title: '状态', width:200, sort: true},
- {field: 'image', title: '上传凭证', width:200, sort: true,templet: "#avatar"},
- {title: '操作', width: 300, align: "center", toolbar: "#barDemo"},
- ]],
- limits: [10, 15, 20, 25, 50, 100],
- limit: 10,
- page: true
- });
- table.on('tool(list)', function (obj) {
- var data = obj.data;
- let event = obj.event;
- switch (event) {
- case "jujue":
- layer.confirm('您确定要拒绝吗', function (index) {
- loading = layer.load(1, {shade: [0.1, '#fff']});
- $.post("{:url('jujue')}", {id: data.id}, function (res) {
- layer.close(loading);
- layer.close(index);
- if (res.code == 200) {
- layer.msg(res.msg, {time: 1000, icon: 1});
- tableIn.reload();
- } else {
- layer.msg(res.msg, {time: 1000, icon: 2});
- }
- }, "json")
- })
- break;
- case "tongguo":
- // layer.confirm('确定要进行这样的操作码', function (index) {
- loading = layer.load(1, {shade: [0.1, '#fff']});
- $.post("{:url('czcg')}", {id: data.id}, function (res) {
- layer.close(loading);
- // layer.close(index);
- if (res.code == 200) {
- layer.msg(res.msg, {time: 1000, icon: 1});
- tableIn.reload();
- } else {
- layer.msg(res.msg, {time: 1000, icon: 2});
- }
- }, "json")
- // })
- break;
- }
- });
- form.on('switch(status)', function (data) {
- });
- $('#search').click(function () {
- var $keys = $('#name').val();
- if (!$keys) {
- return layer.msg('请输入关键词');
- }
- tableIn.reload({page: {page: 1}, where: {name: $keys}});
- })
- // setInterval(function () {
- // tableIn.reload();
- // }, 50000)
- });
- </script>
|