From ef04ce57881e6a338b10d596c5eb76b2220598bf Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期四, 31 八月 2023 11:16:49 +0800 Subject: [PATCH] 更新版本 --- management/guns-admin/src/main/webapp/WEB-INF/view/system/tSystemBulletin/tSystemBulletin_edit.html | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/management/guns-admin/src/main/webapp/WEB-INF/view/system/tSystemBulletin/tSystemBulletin_edit.html b/management/guns-admin/src/main/webapp/WEB-INF/view/system/tSystemBulletin/tSystemBulletin_edit.html index 6fe813d..c978f4e 100644 --- a/management/guns-admin/src/main/webapp/WEB-INF/view/system/tSystemBulletin/tSystemBulletin_edit.html +++ b/management/guns-admin/src/main/webapp/WEB-INF/view/system/tSystemBulletin/tSystemBulletin_edit.html @@ -8,6 +8,7 @@ <div class="ibox-content" id="systemBulletinInfoForm"> <div class="row row-lg"> <div class="col-sm-12"> + <input hidden id="id" value="${item.id}"> <div class="col-sm-12" style="cursor: pointer;text-align: left;"> <div class="initialLevel col-sm-12 control-label form-group"> @@ -31,7 +32,8 @@ <div class="initialLevel col-sm-12 control-label form-group"> <div class="initialLevel col-sm-6 control-label form-group" > - <textarea type="text/plain" id="content" name="content" value="${item.content}" style="width:100%;height:350px;"></textarea> + <input hidden id="contentHtml" value="${item.content}"> + <textarea type="text/plain" id="content" name="content" style="width:100%;height:350px;">${item.content}</textarea> </div> </div> @@ -43,7 +45,7 @@ <div class="row btn-group-m-t"> <div class="col-sm-10" style="text-align: center"> <#button btnCss="info" name="保存" id="ensure" icon="fa-check" clickFun="TSystemBulletinInfoDlg.editSubmit()"/> - <#button btnCss="danger" name="发送" id="send" icon="fa-check" clickFun="TSystemBulletinInfoDlg.send()"/> + <#button btnCss="danger" name="发送" id="send" icon="fa-check" clickFun="TSystemBulletinInfoDlg.editSend()"/> </div> </div> </div> -- Gitblit v1.7.1