From 7bfa9060b502cb47a02b0ed830bc333141f9f50d Mon Sep 17 00:00:00 2001
From: zhangc <zc@123>
Date: 星期五, 14 二月 2025 13:19:30 +0800
Subject: [PATCH] 兼容四期

---
 src/main/webapp/static/js/basSte/basSte.js |   13 ++++++++++++-
 1 files changed, 12 insertions(+), 1 deletions(-)

diff --git a/src/main/webapp/static/js/basSte/basSte.js b/src/main/webapp/static/js/basSte/basSte.js
index 90cc02f..4c4fa4b 100644
--- a/src/main/webapp/static/js/basSte/basSte.js
+++ b/src/main/webapp/static/js/basSte/basSte.js
@@ -38,7 +38,8 @@
             ,{field: 'hisLev', align: 'center',title: '鍘嗗彶灞�', hide: true}
             ,{field: 'idleLoc', align: 'center',title: '鏆傚瓨搴撲綅'}
             ,{field: 'steErr', align: 'center',title: '閿欒鐮�'}
-            ,{field: 'pakMk', align: 'center',title: '鏍囪', hide: true}
+            ,{field: 'chargeLine', align: 'center',title: '鏈�浣庣數閲�%'}
+            ,{field: 'autoCharge', align: 'center',title: '鑷姩鍏呯數', templet: '#autoChargeTpl'}
             // ,{field: 'status$', align: 'center',title: '鐘舵��'}
             // ,{field: 'createBy$', align: 'center',title: '娣诲姞浜哄憳'}
             // ,{field: 'createTime$', align: 'center',title: '娣诲姞鏃堕棿'}
@@ -105,6 +106,15 @@
         })
     })
 
+    form.on('switch(autoChargeSwitch)', function (obj) {
+        let index  = obj.othis.parents('tr').attr("data-index");
+        let data = tableData[index];
+        data[this.name] = obj.elem.checked?'Y':'N';
+        http.post(baseUrl+"/basSte/update/auth", {steNo: data.steNo, autoCharge: data[this.name]}, function (res) {
+            layer.msg(res.msg, {icon: 1});
+        })
+    })
+
     // 鐩戝惉澶村伐鍏锋爮浜嬩欢
     table.on('toolbar(basSte)', function (obj) {
         var checkStatus = table.checkStatus(obj.config.id).data;
@@ -123,6 +133,7 @@
                break;
             case 'exportData':
                 admin.confirm('纭畾瀵煎嚭Excel鍚�', {shadeClose: true}, function(){
+                    layer.load(2, {time: 600*1000});
                     var titles=[];
                     var fields=[];
                     obj.config.cols[0].map(function (col) {

--
Gitblit v1.9.1