From 9600194e37b21bf5445d3cc843cbd1895ae0c476 Mon Sep 17 00:00:00 2001 From: hdw <hdw@192.168.7.127> Date: 星期三, 09 一月 2019 17:39:11 +0800 Subject: [PATCH] 批量系统参数设置 --- gx_tieta/WebRoot/pages/js/mylayui.js | 64 ++++++++++++++++++++++++++++++++ 1 files changed, 64 insertions(+), 0 deletions(-) diff --git a/gx_tieta/WebRoot/pages/js/mylayui.js b/gx_tieta/WebRoot/pages/js/mylayui.js index e1a8557..63b4f22 100644 --- a/gx_tieta/WebRoot/pages/js/mylayui.js +++ b/gx_tieta/WebRoot/pages/js/mylayui.js @@ -543,3 +543,67 @@ } }; +//鑾峰彇layui鐨刦orm琛ㄥ崟鐨勫��(鏀寔input鍜宻elect) +var LayuiForm = function(ele) { + this.ele = ele; +}; +// 瀹氫箟鍘熷瀷鏂规硶 +LayuiForm.prototype = { + get: function(callback) { + var ele = $('#'+this.ele); + var isGood = this._checkForm(ele); + if(isGood) { + var iptsVals = this._getIpts(ele); + var selVals = this._getSels(ele); + // 鑾峰彇鎵�鏈夌殑form鍊� + var rs = $.extend({}, iptsVals, selVals); + callback(rs); + } + } + ,_getIpts: function(ele) { + var ipts = ele.find('input'); + var iptVals = {}; + ipts.each(function() { + var name = $(this).attr('name'); + if(name) { + iptVals[name] = $(this).val(); + } + }); + + return iptVals; + } + ,_getSels: function(ele) { + var sels = ele.find('select'); + var selVals = {}; + sels.each(function() { + var name = $(this).attr('name'); + if(name) { + selVals[name] = $(this).val(); + } + }); + + return selVals; + } + + ,_checkForm: function(ele) { + var isGood = true; + var ipts = ele.find('input'); + var sels = ele.find('select'); + // 閬嶅巻鎵�鏈夌殑input鏌ヨ鏄惁鏈夋暟鎹笉姝g‘鐨� + ipts.each(function() { + if($(this).hasClass('layui-form-danger')) { + isGood = false; + } + }); + + // 閬嶅巻鎵�鏈夌殑select鏌ヨ鏄惁鏈夋暟鎹笉姝g‘鐨� + sels.each(function() { + if($(this).hasClass('layui-form-danger')) { + isGood = false; + } + }); + + // 杩斿洖缁撴灉 + return isGood; + } +}; -- Gitblit v1.9.1