123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559 |
- var ExcelData;
- function ConfirmImport() {
- $.ajax({
- type: "POST",
- url: "/Admin/PosMachinesTwoChange/ImportEnd?r=" + Math.random(1),
- data: "ExcelData=" + encodeURIComponent(JSON.stringify(ExcelData)),
- dataType: "text",
- success: function (data) {
- if (data == "success") {
- layer.msg("导入成功", { time: 2000 }, function () {
- window.location.reload();
- });
- } else if (data.indexOf("warning") == 0) {
- var datalist = data.split('|');
- layer.alert(datalist[0], { time: 20000 }, function () {
- window.location.reload();
- });
- } else {
- layer.msg(data);
- }
- }
- });
- }
- var excel;
- layui.config({
- base: '/layuiadmin/' //静态资源所在路径
- }).extend({
- myexcel: 'layui/lay/modules/excel',
- index: 'lib/index' //主入口模块
- }).use(['index', 'table', 'excel', 'laydate'], function () {
- var $ = layui.$
- , form = layui.form
- , table = layui.table;
- //- 筛选条件-日期
- var laydate = layui.laydate;
- var layCreateDate = laydate.render({
- elem: '#ActivationTime',
- type: 'date',
- range: true,
- trigger: 'click',
- change: function (value, date, endDate) {
- var op = true;
- if (date.year == endDate.year && endDate.month - date.month <= 1) {
- if (endDate.month - date.month == 1 && endDate.date > date.date) {
- op = false;
- layCreateDate.hint('日期范围请不要超过1个月');
- setTimeout(function () {
- $(".laydate-btns-confirm").addClass("laydate-disabled");
- }, 1);
- }
- } else {
- op = false;
- layCreateDate.hint('日期范围请不要超过1个月');
- setTimeout(function () {
- $(".laydate-btns-confirm").addClass("laydate-disabled");
- }, 1);
- }
- if (op) {
- $('#ActivationTime').val(value);
- }
- }
- });
- //- 筛选条件-日期
- var laydates = layui.laydate;
- var layCreateDate = laydates.render({
- elem: '#BindingTime',
- type: 'date',
- range: true,
- trigger: 'click',
- change: function (value, date, endDate) {
- var op = true;
- if (date.year == endDate.year && endDate.month - date.month <= 1) {
- if (endDate.month - date.month == 1 && endDate.date > date.date) {
- op = false;
- layCreateDate.hint('日期范围请不要超过1个月');
- setTimeout(function () {
- $(".laydate-btns-confirm").addClass("laydate-disabled");
- }, 1);
- }
- } else {
- op = false;
- layCreateDate.hint('日期范围请不要超过1个月');
- setTimeout(function () {
- $(".laydate-btns-confirm").addClass("laydate-disabled");
- }, 1);
- }
- if (op) {
- $('#BindingTime').val(value);
- }
- }
- });
- //excel导入
- excel = layui.excel;
- $('#ExcelFile').change(function (e) {
- var files = e.target.files;
- excel.importExcel(files, {}, function (data) {
- ExcelData = data[0].Sheet1;
- });
- });
- //监听单元格编辑
- table.on('edit(LAY-list-manage)', function (obj) {
- var value = obj.value //得到修改后的值
- , data = obj.data //得到所在行所有键值
- , field = obj.field; //得到字段
- if (field == "Sort") {
- $.ajax({
- type: "POST",
- url: "/Admin/PosMachinesTwoChange/Sort?r=" + Math.random(1),
- data: "Id=" + data.Id + "&Sort=" + value,
- dataType: "text",
- success: function (data) {
- }
- });
- }
- });
- //列表数据
- table.render({
- elem: '#LAY-list-manage'
- , url: '/Admin/PosMachinesTwoChange/IndexData' //模拟接口
- , cols: [[
- { type: 'checkbox', fixed: 'left' }
- , { field: 'PosSn', width: 200, title: 'SN编号', sort: true }
- , { field: 'BrandId', width: 200, title: '产品类型', sort: true }
- , { field: 'ActivityList', width: 200, title: '是否真实调升/降', sort: true }
- , { field: 'StoreIdCode', width: 200, title: '所在仓库编号', sort: true }
- , { field: 'StoreIdName', width: 200, title: '所在仓库名称', sort: true }
- , { field: 'UserIdMakerCode', width: 200, title: '创客编号', sort: true }
- , { field: 'UserIdRealName', width: 200, title: '创客姓名', sort: true }
- , { field: 'BindMerchantIdMerchantNo', width: 200, title: '绑定商户编号', sort: true }
- , { field: 'BindMerchantIdMerchantName', width: 200, title: '绑定商户姓名', sort: true }
- , { field: 'PosSnType', width: 200, title: '机具类型', sort: true }
- , { field: 'DeviceType', width: 200, title: '设备类型', sort: true }
- , { field: 'BindingState', width: 200, title: '绑定状态', sort: true }
- , { field: 'ActivationState', width: 200, title: '激活状态', sort: true }
- , { field: 'ActivationTime', width: 200, title: '激活时间', sort: true }
- , { field: 'BindingTime', width: 200, title: '绑定时间', sort: true }
- , { field: 'TransferTime', width: 200, title: '划拨时间', sort: true }
- , { field: 'RecycStartDate', width: 200, title: '循环开始时间', sort: true }
- , { field: 'RecycEndDate', width: 200, title: '循环截止时间', sort: true }
- , { field: 'UserInfo', width: 200, title: '大盟主券标记', sort: true }
- , { field: 'IsFirst', width: 200, title: '是否第一台机具', sort: true }
- , { field: 'SeoKeyword', width: 200, title: '押金金额', sort: true }
- , { field: 'UpFeeFlag', width: 200, title: '调升标记', sort: true }
- , { field: 'UpFeeDate', width: 200, title: '调升时间', sort: true }
- , { field: 'UpFeeMan', width: 200, title: '调升人', sort: true }
- , { field: 'DownFeeFlag', width: 200, title: '调降标记', sort: true }
- , { field: 'DownFeeDate', width: 200, title: '调降时间', sort: true }
- , { field: 'DownFeeMan', width: 200, title: '调降人', sort: true }
- , { field: 'SeoDescription', width: 500, title: '备注', sort: true }
- , { title: '操作', width: 100, align: 'center', fixed: 'right', toolbar: '#table-list-tools' }
- ]]
- , where: {
- }
- , page: true
- , limit: 30
- , height: 'full-' + String($('.layui-card-header').height() + 130)
- , text: '对不起,加载出现异常!'
- , done: function (res, curr, count) {
- $("#TotalCount").text(res.other.TotalCount);
- $("#KysCount99").text(res.other.KysCount99);
- $("#KssCount99").text(res.other.KssCount99);
- $("#KssCoun198").text(res.other.KssCoun198);
- $("#KssCount298").text(res.other.KssCount298);
- $(".layui-none").text("无数据");
- }
- });
- //监听工具条
- table.on('tool(LAY-list-manage)', function (obj) {
- var data = obj.data;
- if (obj.event === 'del') {
- var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
- $.ajax({
- type: "POST",
- url: "/Admin/PosMachinesTwoChange/Delete?r=" + Math.random(1),
- data: "Id=" + data.Id,
- dataType: "text",
- success: function (data) {
- if (data == "success") {
- obj.del();
- layer.close(index);
- } else {
- parent.layer.msg(data);
- }
- }
- });
- });
- } else if (obj.event === 'edit') {
- var tr = $(obj.tr);
- var perContent = layer.open({
- type: 2
- , title: '机具库-编辑'
- , content: 'Edit?Id=' + data.Id + ''
- , maxmin: true
- , area: ['500px', '450px']
- , btn: ['确定', '取消']
- , yes: function (index, layero) {
- var iframeWindow = window['layui-layer-iframe' + index]
- , submitID = 'LAY-list-front-submit'
- , submit = layero.find('iframe').contents().find('#' + submitID);
- setTimeout(function () {
- layero.find('iframe').contents().find('.layui-tab-item').each(function (i) {
- var errObj = $(this).find('.layui-form-danger');
- if (errObj.length > 0) {
- iframeWindow.element.tabChange('mytabbar', String(i + 1));
- submit.click();
- }
- });
- }, 300);
- //监听提交
- iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
- var field = data.field; //获取提交的字段
- var userdata = "";
- for (var prop in field) {
- userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
- }
- //提交 Ajax 成功后,静态更新表格中的数据
- //$.ajax({});
- $.ajax({
- type: "POST",
- url: "/Admin/PosMachinesTwoChange/Edit?r=" + Math.random(1),
- data: userdata,
- dataType: "text",
- success: function (data) {
- layer.close(index); //关闭弹层
- if (data == "success") {
- table.reload('LAY-list-manage'); //数据刷新
- } else {
- layer.msg(data);
- }
- }
- });
- });
- submit.trigger('click');
- }
- , success: function (layero, index) {
- }
- });
- layer.full(perContent);
- }
- });
- //监听搜索
- form.on('submit(LAY-list-front-search)', function (data) {
- var field = data.field;
- //执行重载
- table.reload('LAY-list-manage', {
- where: field,
- page: {
- curr: 1
- }
- });
- });
- form.on('submit(LAY-list-front-searchall)', function (data) {
- table.reload('LAY-list-manage', {
- where: null,
- page: {
- curr: 1
- }
- });
- });
- //事件
- var active = {
- batchdel: function () {
- var checkStatus = table.checkStatus('LAY-list-manage')
- , data = checkStatus.data; //得到选中的数据
- if (data.length < 1) {
- parent.layer.msg("请选择要删除的项");
- } else {
- var ids = "";
- $.each(data, function (index, value) {
- ids += data[index].Id + ",";
- });
- ids = ids.substring(0, ids.length - 1);
- var index = layer.confirm('确定要删除吗?删除后不能恢复!', function (index) {
- $.ajax({
- type: "POST",
- url: "/Admin/PosMachinesTwoChange/Delete?r=" + Math.random(1),
- data: "Id=" + ids,
- dataType: "text",
- success: function (data) {
- layer.close(index);
- if (data == "success") {
- table.reload('LAY-list-manage');
- } else {
- layer.msg(data);
- }
- }
- });
- });
- }
- }
- , add: function () {
- var perContent = layer.open({
- type: 2
- , title: '机具库-添加'
- , content: 'Add'
- , maxmin: true
- , area: ['500px', '450px']
- , btn: ['确定', '取消']
- , yes: function (index, layero) {
- var iframeWindow = window['layui-layer-iframe' + index]
- , submitID = 'LAY-list-front-submit'
- , submit = layero.find('iframe').contents().find('#' + submitID);
- setTimeout(function () {
- layero.find('iframe').contents().find('.layui-tab-item').each(function (i) {
- var errObj = $(this).find('.layui-form-danger');
- if (errObj.length > 0) {
- iframeWindow.element.tabChange('mytabbar', String(i + 1));
- submit.click();
- }
- });
- }, 300);
- //监听提交
- iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
- var field = data.field; //获取提交的字段
- var userdata = "";
- for (var prop in field) {
- userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
- }
- //提交 Ajax 成功后,静态更新表格中的数据
- //$.ajax({});
- $.ajax({
- type: "POST",
- url: "/Admin/PosMachinesTwoChange/Add?r=" + Math.random(1),
- data: userdata,
- dataType: "text",
- success: function (data) {
- layer.close(index); //关闭弹层
- if (data == "success") {
- table.reload('LAY-list-manage'); //数据刷新
- } else {
- layer.msg(data);
- }
- }
- });
- });
- submit.trigger('click');
- }
- });
- layer.full(perContent);
- }
- , ImportData: function () {
- layer.open({
- type: 1,
- title: '导入',
- maxmin: false,
- area: ['460px', '280px'],
- content: $('#excelForm'),
- cancel: function () {
- }
- });
- $("#excelTemp").html('<a href="/users/机具费率调整模版.xlsx">点击下载机具费率调整模板</a>');
- }
- // , ImportData: function () {
- // var perContent = layer.open({
- // type: 2
- // , title: '费率调整结果导入'
- // , content: 'Import'
- // , maxmin: true
- // , area: ['650px', '350px']
- // , btn: ['确定', '取消']
- // , yes: function (index, layero) {
- // var iframeWindow = window['layui-layer-iframe' + index]
- // , submitID = 'LAY-list-front-submit'
- // , submit = layero.find('iframe').contents().find('#' + submitID);
-
- // //监听提交
- // iframeWindow.layui.form.on('submit(' + submitID + ')', function (data) {
- // var field = data.field; //获取提交的字段
- // var userdata = "";
- // for (var prop in field) {
- // userdata += prop + "=" + encodeURIComponent(field[prop]) + "&";
- // }
- // //提交 Ajax 成功后,静态更新表格中的数据
- // //$.ajax({});
- // var loadindex = layer.load(1, {
- // shade: [0.5, '#000']
- // });
- // $.ajax({
- // type: "POST",
- // url: "/Admin/PosMachinesTwoChange/ImportPost?r=" + Math.random(1),
- // data: userdata,
- // dataType: "text",
- // success: function (data) {
- // if (data.indexOf("success") == 0) {
- // var datalist = data.split('|');
- // var key = datalist[1];
- // CheckImport(table, key, loadindex, index);
- // } else {
- // layer.msg(data);
- // }
- // }
- // });
- // });
- // submit.trigger('click');
- // }
- // });
- // }
- , ExportExcel: function () {
- var userdata = '';
- $(".layuiadmin-card-header-auto input").each(function (i) {
- userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
- });
- $(".layuiadmin-card-header-auto select").each(function (i) {
- userdata += $(this).attr('name') + '=' + encodeURIComponent($(this).val()) + '&';
- });
- var index = layer.load(1, {
- shade: [0.5, '#000']
- });
- $.ajax({
- type: "GET",
- url: "/Admin/PosMachinesTwoChange/ExportExcel?r=" + Math.random(1),
- data: userdata,
- dataType: "json",
- success: function (data) {
- data.Obj.unshift(data.Fields);
- excel.exportExcel(data.Obj, data.Info, 'xlsx');
- layer.close(index);
- }
- });
- }
- , BatchSetting: function () {
- var checkStatus = table.checkStatus('LAY-list-manage')
- , data = checkStatus.data; //得到选中的数据
- // if (data.length < 1) {
- // parent.layer.msg("请选择要设置调升费率的项");
- // } else {
- // var ids = "0";
- // $.each(data, function (index, value) {
- // ids += data[index].Id + ",";
- // });
- // ids = ids.substring(0, ids.length - 1);
- var confirmindex = layer.confirm('确定要调升吗?', function (index) {
- var layerindex = layer.load(1, {
- shade: [0.5, '#000']
- });
- $.ajax({
- type: "POST",
- url: "/Admin/PosMachinesTwoChange/BatchSetting?r=" + Math.random(1),
- dataType: "text",
- success: function (data) {
- layer.close(confirmindex);
- layer.close(layerindex);
- if (data == "success") {
- table.reload('LAY-list-manage');
- layer.msg('提交成功');
- } else if (data.indexOf("Warning") == 0) {
- var datalist = data.split('|');
- layer.alert(datalist[1], {
- time: 20000
- }, function () {
- window.location.reload();
- });
- } else {
- layer.msg(data);
- }
- }
- });
- });
- // }
- }
- , Open: function () {
- var checkStatus = table.checkStatus('LAY-list-manage')
- , data = checkStatus.data; //得到选中的数据
- if (data.length < 1) {
- parent.layer.msg("请选择要开启的项");
- } else {
- var ids = "";
- $.each(data, function (index, value) {
- ids += data[index].Id + ",";
- });
- ids = ids.substring(0, ids.length - 1);
- var index = layer.confirm('确定要开启吗?', function (index) {
- $.ajax({
- type: "POST",
- url: "/Admin/PosMachinesTwoChange/Open?r=" + Math.random(1),
- data: "Id=" + ids,
- dataType: "text",
- success: function (data) {
- layer.close(index);
- if (data == "success") {
- table.reload('LAY-list-manage');
- } else {
- layer.msg(data);
- }
- }
- });
- });
- }
- }
- , Close: function () {
- var checkStatus = table.checkStatus('LAY-list-manage')
- , data = checkStatus.data; //得到选中的数据
- if (data.length < 1) {
- parent.layer.msg("请选择要关闭的项");
- } else {
- var ids = "";
- $.each(data, function (index, value) {
- ids += data[index].Id + ",";
- });
- ids = ids.substring(0, ids.length - 1);
- var index = layer.confirm('确定要关闭吗?', function (index) {
- $.ajax({
- type: "POST",
- url: "/Admin/PosMachinesTwoChange/Close?r=" + Math.random(1),
- data: "Id=" + ids,
- dataType: "text",
- success: function (data) {
- layer.close(index);
- if (data == "success") {
- table.reload('LAY-list-manage');
- } else {
- layer.msg(data);
- }
- }
- });
- });
- }
- }
- };
- $('.layui-btn').on('click', function () {
- var type = $(this).data('type');
- active[type] ? active[type].call(this) : '';
- });
- });
|