| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 | <!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-SDtpYypzVerbalTrickt-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>话术ID:</label>                <input name="scriptId" placeholder="话术ID" th:value="${scriptId}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>话术主题:</label>                <input name="scriptTheme" placeholder="话术主题" th:value="${scriptTheme}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>话术摘要:</label>                <input name="scriptSummary" placeholder="话术摘要" th:value="${scriptSummary}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>话术内容:</label>                <input name="scriptContent" placeholder="话术内容" th:value="${scriptContent}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>关键词:</label>                <input name="keywords" placeholder="关键词,可以存储多个关键词,用逗号分隔" th:value="${keywords}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>权重:</label>                <input name="weight" placeholder="权重" th:value="${weight}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>状态:</label>                <input name="status" placeholder="状态:" th:value="${status}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>最后操作时间:</label>                <input name="lastOperationTime" placeholder="最后操作时间" th:value="${lastOperationTime}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>最后操作人:</label>                <input name="lastOperator" placeholder="最后操作人" th:value="${lastOperator}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>话术主题ID:</label>                <input name="themeId" placeholder="话术主题ID" th:value="${themeId}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>话术主题:</label>                <input name="theme" placeholder="话术主题" th:value="${theme}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>适用药品类型:</label>                <input name="applicableDrugType" placeholder="适用药品类型" th:value="${applicableDrugType}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>适用随访类型:</label>                <input name="applicableFollowUpType" placeholder="适用随访类型" th:value="${applicableFollowUpType}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>任务主题:</label>                <input name="taskTheme" placeholder="任务主题" th:value="${taskTheme}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>最后编辑时间:</label>                <input name="lastEditTime" placeholder="最后编辑时间" th:value="${lastEditTime}" class="styled-input" type="text">            </div>            <div class="customize-form-group">                <label>最后编辑人:</label>                <input name="lastEditor" placeholder="最后编辑人" th:value="${lastEditor}" class="styled-input" type="text">            </div>        </div>    </form></div><div class="main-content">    <div class="col-sm-offset-5 col-sm-10">    </div></div><th:block th:include="include :: footer" /></body></html><script>    function edit() {        var data = $("#form-SDtpYypzVerbalTrickt-edit").serializeArray();        $.ajax({            cache : true,            type : "POST",            url : ctx + "dtp/sdtpyypzverbaltrickt/sDtpYypzVerbalTricktEdit",            data : data,            async : false,            error : function(request) {                $.modal.alertError("系统错误");            },            success : function(data) {                $.operate.successCallback(data);            }        });    }    function submitHandler() {        if ($.validate.form()) {            edit();        }    }</script>
 |