| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | <!DOCTYPE html><html lang="zh" xmlns:th="http://www.thymeleaf.org" ><head>    <th:block th:include="include :: header('药学信息收集分享药学科普表修改')" /></head><body><div class="ui-layout-center">    <form id="form-SDtpZskcxPharmaceuticalShare-edit" class="customize-search-form">        <div class="customize-form-group-container">            <input type="hidden" id="id" name="id" th:value="${id}">                    <div class="customize-form-group">                            <label>创建人:</label>                        <input name="createdBy" placeholder="创建人" th:value="${createdBy}" class="styled-input" type="text">                    </div>                    <div class="customize-form-group">                            <label>创建日期:</label>                        <input name="createdDate" placeholder="创建日期" th:value="${createdDate}" class="styled-input" type="text">                    </div>                    <div class="customize-form-group">                            <label>文章标题:</label>                        <input name="articleTitle" placeholder="文章标题" th:value="${articleTitle}" class="styled-input" type="text">                    </div>                    <div class="customize-form-group">                            <label>分类:</label>                        <input name="category" placeholder="分类" th:value="${category}" class="styled-input" type="text">                    </div>                    <div class="customize-form-group">                            <label>来源门店:</label>                        <input name="sourceStore" placeholder="来源门店" th:value="${sourceStore}" class="styled-input" type="text">                    </div>                    <div class="customize-form-group">                            <label>创建时间:</label>                        <input name="createdTime" placeholder="创建时间" th:value="${createdTime}" class="styled-input" type="text">                    </div>                    <div class="customize-form-group">                            <label>更新人:</label>                        <input name="updatedBy" placeholder="更新人" th:value="${updatedBy}" class="styled-input" type="text">                    </div>                    <div class="customize-form-group">                            <label>更新时间:</label>                        <input name="updatedTime" placeholder="更新时间" th:value="${updatedTime}" class="styled-input" type="text">                    </div>        </div>    </form></div><div class="main-content">    <div class="col-sm-offset-5 col-sm-10">        <button type="button" class="btn btn-sm btn-primary" onclick="submitHandler()"><i class="fa fa-check"></i>保 存</button>         <button type="button" class="btn btn-sm btn-danger" onclick="closeItem()"><i class="fa fa-reply-all"></i>关 闭 </button>    </div></div><th:block th:include="include :: footer" /></body></html><script>    function submitHandler() {        var prefix = ctx + "dtp/sdtpzskcxpharmaceuticalshare";        if ($.validate.form()) {            var data = $("#form-SDtpZskcxPharmaceuticalShare-edit").serializeArray();            $.operate.saveTab(prefix + "/sDtpZskcxPharmaceuticalShareEdit", data);        }    }</script>
 |