123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <div className="p-3 bg-white">
- <table className="layui-hide" id="reports" lay-filter="reports"></table>
- </div>
- <script>
- function report() {
- console.log("我已经执行了")
- let tool = layui.tool, table = layui.table;
- //项目任务
- var allcount;
- parent.layui.reportTable = table.render({
- elem: '#reports',
- title: '文档列表',
- toolbar: '#toolbarreports',
- cellMinWidth: 80,
- parseData: function (res) { // 数据解析回调函数
- // 在这里可以获取数据总数
- allcount = res.data.length;
- return {
- code: res.code, // 数据状态码
- msg: res.msg, // 状态信息
- count: res.count, // 数据总数
- data: res.data // 当前页数据
- };
- },
- url: "/admin/project.report/datalist_company",
- where: {'project_id': project_id},
- page: true, //开启分页
- limit: 20,
- cols: [[
- {field: 'id', title: '序号', width: 80, align: 'center',
- templet: function (d) {
- console.log(allcount,d.LAY_NUM)
- return allcount - (d.LAY_NUM - 1);
-
- }
- },
- {
- field: 'title', title: '报告名称', align: 'center',
- templet: function (d) {
- var html = "";
- if (d.status == 4 || d.status == 7) {
- html = '<a class="side-a" lay-event="detail" style="color: grey;text-decoration:line-through" lay-event="detail">' + d.title + '</a>';
- } else {
- html = '<a class="side-a" lay-event="detail" lay-event="detail">' + d.title + '</a>';
- }
- return '<div style="text-align:left">' + html + '</div>'
- }
- },
- {
- field: 'type', title: '报告类型', align: 'center', width: 100, templet: function (item) {
- var html = '';
- if (item.type === 0) {
- html = "<span>初审报告</span>";
- } else if (item.type === 1) {
- html = "<span>对数报告</span>";
- } else if (item.type === 2) {
- html = "<span>审定报告</span>";
- }
- return html;
- }
- },
- {
- field: 'status', title: '审批状态', align: 'center', width: 150, templet: function (d) {
- var abc = '';
- if (d.status == 0) {
- abc = "<span>未审核(新建)</span>";
- } else if (d.status == 1) {
- abc = "<span>已通过(新建)</span>";
- } else if (d.status == 2) {
- abc = "<span>已拒绝(新建)</span>";
- } else if (d.status == 3) {
- abc = "<span>未审核(删除)</span>";
- } else if (d.status == 4) {
- abc = "<span>已通过(删除)</span>";
- } else if (d.status == 5) {
- abc = "<span>已拒绝(删除)</span>";
- } else if (d.status == 6) {
- abc = "<span>未审核(内部)</span>";
- } else if (d.status == 7) {
- abc = "<span>已拒绝(内部)</span>";
- }
- return abc;
- }
- },
- {field: 'create_time', title: '创建时间', align: 'center', width: 150},
- {field: 'admin_name', title: '创建人', align: 'center', width: 100},
- {
- field: 'right', fixed: 'right', title: '操作', width: 150, align: 'center',
- templet: function (d) {
- var html = '<div class="layui-btn-group">';
- var btn3 = `<a class="layui-btn layui-btn-xs" lay-event="progress">进度</a>`;
- var btn1 = `<a class="layui-btn layui-btn-xs" href=${d.filepath} download=${d.name} lay-event="">下载</a>`;
- return html + btn1 + btn3 + '</div>';
- }
- }
- ]]
- });
- //触发事件
- table.on('toolbar(reports)', function (obj) {
- var checkStatus = table.checkStatus(obj.config.id);
- switch (obj.event) {
- case 'add':
- parent.layui.tool.side('/admin/project.report/add?project_id=' + project_id); // 项目id
- break;
- }
- });
- table.on('tool(reports)', function (obj) {
- var data = obj.data; //获得当前行数据
- if (obj.event === 'detail') { //查看
- let url = '/admin/project.report/view_company?id=' + data.id;// 项目id
- parent.layui.tool.side(url);
- }
- if (obj.event === 'del') {
- layer.prompt({
- title: '请输入<span style="color: red">删除</span>原因',
- formType: 2,
- area: ['35vw', '15vw']
- }, function (text, index) {
- let callback = function (e) {
- window.location.reload()
- layer.msg(e.msg);
- setTimeout(function () {
- layer.close(index);
- }, 2000)
- }
- tool.post("/admin/project.report/delete", {id: data.id, remark: text}, callback);// 项目id
- });
- }
- if (obj.event === 'progress') { //查看
- let url = '/admin/project.report/progress?id=' + data.id;
- parent.layui.tool.side(url);
- }
- })
- }
- </script>
|