From 7711bbce5860c228f426a9930d4940c73f226cb5 Mon Sep 17 00:00:00 2001 From: dshclm <3321914460@qq.com> Date: Wed, 14 Aug 2024 15:44:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=BA=E6=89=80=E5=87=BA=E5=85=A5=E7=99=BB?= =?UTF-8?q?=E8=AE=B0=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/system/placeRegist/add.html | 10 ++++-- .../templates/system/placeRegist/edit.html | 9 +++-- .../system/placeRegist/placeRegist.html | 33 +++++-------------- 3 files changed, 21 insertions(+), 31 deletions(-) diff --git a/ruoyi-admin/src/main/resources/templates/system/placeRegist/add.html b/ruoyi-admin/src/main/resources/templates/system/placeRegist/add.html index 8e296c8..00c6ddb 100644 --- a/ruoyi-admin/src/main/resources/templates/system/placeRegist/add.html +++ b/ruoyi-admin/src/main/resources/templates/system/placeRegist/add.html @@ -16,7 +16,7 @@
-
@@ -150,9 +150,11 @@ } }); }); + var placeName = '' function doPlaceName(){ var selectedOption = $('#placeName option:selected'); var placeId = selectedOption.val(); + placeName = selectedOption.text(); $("input[name='placeId']").val(placeId); } function selectDeptTree() { @@ -176,8 +178,10 @@ } function submitHandler() { if ($.validate.form()) { - $.operate.save(prefix + "/add", $('#form-placeRegist-add').serialize()); - console.log($('#form-placeRegist-add').serialize()); + var data = $("#form-placeRegist-add").serializeArray(); + data.push({"name": "placeName", "value": placeName}); + $.operate.save(prefix + "/add", data); + console.log(data); } } diff --git a/ruoyi-admin/src/main/resources/templates/system/placeRegist/edit.html b/ruoyi-admin/src/main/resources/templates/system/placeRegist/edit.html index c87312a..9a4df7b 100644 --- a/ruoyi-admin/src/main/resources/templates/system/placeRegist/edit.html +++ b/ruoyi-admin/src/main/resources/templates/system/placeRegist/edit.html @@ -17,7 +17,7 @@
-
@@ -158,10 +158,11 @@ } }); }); - + var placeName = '' function doPlaceName(){ var selectedOption = $('#placeName option:selected'); var placeId = selectedOption.val(); + placeName = selectedOption.text(); $("input[name='placeId']").val(placeId); } function selectDeptTree() { @@ -185,7 +186,9 @@ } function submitHandler() { if ($.validate.form()) { - $.operate.save(prefix + "/edit", $('#form-placeRegist-edit').serialize()); + var data = $("#form-placeRegist-edit").serializeArray(); + data.push({"name": "placeName", "value": placeName}); + $.operate.save(prefix + "/edit",data); console.log($('#form-placeRegist-edit').serialize()); } } diff --git a/ruoyi-admin/src/main/resources/templates/system/placeRegist/placeRegist.html b/ruoyi-admin/src/main/resources/templates/system/placeRegist/placeRegist.html index b876bab..f5ca4f7 100644 --- a/ruoyi-admin/src/main/resources/templates/system/placeRegist/placeRegist.html +++ b/ruoyi-admin/src/main/resources/templates/system/placeRegist/placeRegist.html @@ -14,6 +14,14 @@ +
  • + + +
  • +
  • + + +
  •  搜索  重置 @@ -45,23 +53,6 @@ var editFlag = [[${@permission.hasPermi('system:placeRegist:edit')}]]; var removeFlag = [[${@permission.hasPermi('system:placeRegist:remove')}]]; var prefix = ctx + "system/placeRegist"; - var placeCache = {}; - - // 预加载数据函数 - function loadPlacesData() { - var apiUrl = ctx + 'system/place/getList'; - return $.ajax({ - url: apiUrl, - method: 'POST', - dataType: 'json' - }).done(function(data) { - data.data.forEach(function(item) { - placeCache[item.id] = item.placeName; - }); - }).fail(function(xhr, status, error) { - console.error('预加载数据失败:', error); - }); - } $(function() { var options = { url: prefix + "/list", @@ -86,9 +77,6 @@ { field: 'placeName', title: '场所名称', - formatter:function (value, row, index){ - return placeCache[value] || '加载中...'; - } }, { field: 'registName', @@ -161,11 +149,6 @@ }; $.table.init(options); }); - $(document).ready(function() { - loadPlacesData().done(function() { - $('#bootstrap-table').bootstrapTable('refresh'); - }); - });