2018-05-20 09:25:01 +08:00
|
|
|
<!DOCTYPE html>
|
2018-05-27 14:58:13 +08:00
|
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
2018-05-20 09:25:01 +08:00
|
|
|
<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-config-add">
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label">参数名称:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<input id="configName" name="configName" class="form-control" type="text">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label">参数键名:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<input id="configKey" name="configKey" class="form-control" type="text">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label">参数键值:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<input id="configValue" name="configValue" class="form-control" type="text">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label">系统内置:</label>
|
2018-05-26 14:27:56 +08:00
|
|
|
<div class="col-sm-8" th:with="type=${@dictService.selectDictData('sys_yes_no')}">
|
|
|
|
<div th:each="dict : ${type}" th:class="${dict['cssClass']}">
|
2018-05-23 22:33:18 +08:00
|
|
|
<input type="radio" th:id="${dict['dictCode']}" name="configType" th:value="${dict['dictValue']}" th:checked="${dict['isDefault'] == 'Y' ? true : false}">
|
|
|
|
<label th:for="${dict['dictCode']}" th:text="${dict['dictLabel']}"></label>
|
2018-05-20 09:25:01 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label">备注:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<textarea id="remark" name="remark" class="form-control"></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-control-static col-sm-offset-9">
|
|
|
|
<button type="submit" class="btn btn-primary">提交</button>
|
|
|
|
<button th:onclick="'javascript:layer_close()'" class="btn btn-danger" type="button">关闭</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div th:include="include::footer"></div>
|
2018-06-15 15:25:59 +08:00
|
|
|
<script th:src="@{/ruoyi/system/config/add.js}"></script>
|
2018-05-20 09:25:01 +08:00
|
|
|
</body>
|
|
|
|
</html>
|