From 466fff2dc251cc78da0a95dc9db5e2f782bcde75 Mon Sep 17 00:00:00 2001 From: hwh <332078369@qq.com> Date: 星期二, 02 七月 2024 17:00:12 +0800 Subject: [PATCH] 接口 --- HTML/js/public.js | 67 +++++++++++++++++++++++++++++++-- 1 files changed, 63 insertions(+), 4 deletions(-) diff --git a/HTML/js/public.js b/HTML/js/public.js index a15a788..b1ca696 100644 --- a/HTML/js/public.js +++ b/HTML/js/public.js @@ -13,7 +13,7 @@ { sendData(IP + "/Basis/GetFunSettingByNo?funSetNo="+"Fun013", {}, 'get', function (res) { console.log(res.data.SetValue) - if (res.code == 0) { //鎴愬姛 + if (res.code == 200) { //鎴愬姛 if(res.data.IsEnable == 'NO') { pageCnt = parseInt(res.data.SetValue); @@ -55,13 +55,12 @@ success: function (res, status, xhr) { // console.log(res); // console.log(status); - callbackFun(res); }, error: function (res, status, error) { // console.log(res); // console.log(status); - callbackFun(res, status, error); + callbackFun(res.responseJSON, status, error); // layer.msg(res.statusText, { // icon: 2, // time: 2000 //2绉掑叧闂紙濡傛灉涓嶉厤缃紝榛樿鏄�3绉掞級 @@ -245,7 +244,7 @@ function GetIsSetColW() { sendData(IP + "/Basis/GetFunSettingByNo?funSetNo="+"Fun014", {}, 'get', function (res) { - if (res.code == 0) { //鎴愬姛 + if (res.code == 200) { //鎴愬姛 if(res.data.IsEnable == 'NO') { isSetColW=true; @@ -282,4 +281,64 @@ }); }); } +} +//娣辨嫹璐� +function deepClone(source) { + if (typeof source !== 'object' || source == null) { + return source; + } + const target = Array.isArray(source) ? [] : {}; + for (const key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + if (typeof source[key] === 'object' && source[key] !== null) { + target[key] = deepClone(source[key]); + } else { + target[key] = source[key]; + } + } + } + return target; +} +/** + * 灏嗚〃鍗曡祴鍊间负鎸囧畾鐨勫璞� + * @param {Object} data - 鍖呭惈琛ㄥ崟鏁版嵁鐨勫璞� + * @param {String} formSelector - 琛ㄥ崟鐨勯�夋嫨鍣紝渚嬪 '#myForm' 鎴� '.myForm' + */ +function setFormData(data, formSelector) { + var $form = $(formSelector); + + $.each(data, function(key, value) { + var $field = $form.find('[name=' + key + ']'); + + if ($field.length > 0) { + var fieldType = $field.attr('type'); + + switch (fieldType) { + case 'checkbox': + if (Array.isArray(value)) { + $field.each(function() { + $(this).prop('checked', value.includes($(this).val())); + }); + } else { + $field.prop('checked', value); + } + break; + case 'radio': + $field.filter('[value=' + value + ']').prop('checked', true); + break; + default: + $field.val(value); + break; + } + } + }); +} + +var FnParseData = function (res) { + return { + "code": res.code == 200 ? 0 : res.code, // 瑙f瀽鎺ュ彛鐘舵�� + "msg": res.msg, // 瑙f瀽鎻愮ず鏂囨湰 + "count": res.data.Total, // 瑙f瀽鏁版嵁闀垮害 + "data": res.data.Items // 瑙f瀽鏁版嵁鍒楄〃 + }; } \ No newline at end of file -- Gitblit v1.8.0