2018-04-23 00:00:29 +08:00
|
|
|
<!DOCTYPE html>
|
2018-04-26 17:56:59 +08:00
|
|
|
<html xmlns:th="http://www.w3.org/1999/xhtml">
|
2018-04-23 00:00:29 +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-dict-edit">
|
|
|
|
<input name="dictCode" type="hidden" th:value="${dict.dictCode}" />
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label ">字典标签:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<input class="form-control" type="text" name="dictLabel" id="dictLabel" th:value="${dict.dictLabel}"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label ">字典键值:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<input class="form-control" type="text" name="dictValue" id="dictValue" th:value="${dict.dictValue}"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label">字典类型:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<input class="form-control" type="text" readonly="true" th:value="${dict.dictType}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label">字典排序:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<input class="form-control" type="text" name="dictSort" th:value="${dict.dictSort}">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label">状态:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<div class="radio radio-info radio-inline">
|
|
|
|
<input type="radio" id="radio1" th:field="*{dict.status}" name="status" value="0">
|
|
|
|
<label for="radio1">正常</label>
|
|
|
|
</div>
|
|
|
|
<div class="radio radio-danger radio-inline">
|
|
|
|
<input type="radio" id="radio2" th:field="*{dict.status}" name="status" value="1">
|
|
|
|
<label for="radio2">禁用</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label">备注:</label>
|
|
|
|
<div class="col-sm-8">
|
|
|
|
<input id="remark" name="remark" class="form-control" type="text" th:value="${dict.remark}">
|
|
|
|
</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-04-28 21:39:42 +08:00
|
|
|
<script src="/ruoyi/system/dict/data/edit.js" th:src="@{/ruoyi/system/dict/data/edit.js}"/>
|
2018-04-23 00:00:29 +08:00
|
|
|
</body>
|
|
|
|
</html>
|