edit.html 2.61 KB
<!DOCTYPE HTML>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<meta charset="utf-8">
<head th:include="include :: header"></head>
<body class="white-bg">
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
    <form class="form-horizontal m" id="form-address-edit" th:object="${address}">
        <input id="id" name="id" th:field="*{id}" type="hidden">
        <div class="form-group">
            <label class="col-sm-3 control-label">参数名称:</label>
            <div class="col-sm-8">
                <input class="form-control" id="param" name="param" placeholder="请输入参数名称" th:field="*{param}" type="text">
            </div>
        </div>
        <!--<div class="form-group">
            <label class="col-sm-3 control-label">区域:</label>
            <div class="col-sm-8">
                <input id="area" name="area" th:field="*{area}" class="form-control" type="text">
            </div>
        </div>-->
        <div class="form-group">
            <label class="col-sm-3 control-label">URL地址:</label>
            <div class="col-sm-8">
                <input class="form-control" id="url" name="url" placeholder="请输入URL地址" th:field="*{url}" type="text">
            </div>
        </div>
        <div class="form-group">
            <div class="form-control-static col-sm-offset-9">
                <button class="btn btn-primary" type="submit">提交</button>
                <button class="btn btn-danger" onclick="$.modal.close()" type="button">关闭</button>
            </div>
        </div>
    </form>
</div>
<div th:include="include::footer"></div>
<script type="text/javascript">
    var prefix = ctx + "config/address"
    $("#form-address-edit").validate({
        rules: {
            param: {
                required: true,
            },
            url: {
                required: true,
            },
        },
        submitHandler: function (form) {
            $.ajax({
                cache: true,
                type: "POST",
                url: prefix + "/edit",
                data: {
                    "id": $("input[name='id']").val(),
                    "param": $("input[name='param']").val(),
                    "url": $("input[name='url']").val(),
                    "area": $("input[name='area']").val(),
                },
                async: false,
                error: function (request) {
                    $.modal.alertError("请求失败!");
                },
                success: function (data) {
                    $.operate.saveSuccess(data);
                }
            });
        }
    });
</script>
</body>
</html>