85 lines
2.4 KiB
Plaintext
85 lines
2.4 KiB
Plaintext
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>地市选择</title>
|
||
|
|
<link type="text/css" rel="stylesheet" href="../../../js/layui/css/layui.css">
|
||
|
|
<script src="../../../js/public/jquery-3.6.0.js" type="text/javascript"></script>
|
||
|
|
<script src="../../../js/public/public.js" type="text/javascript"></script>
|
||
|
|
<script src="../../../js/public/sm3.js" type="text/javascript"></script>
|
||
|
|
<script src="../../../js/layui/layui.js" type="text/javascript"></script>
|
||
|
|
</head>
|
||
|
|
<style>
|
||
|
|
html {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
width: 100%;
|
||
|
|
height: 90%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-form-select dl {
|
||
|
|
max-height: 200px;
|
||
|
|
max-width: 350px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-form-select dl dd.layui-this {
|
||
|
|
/*background-color: #253e78 !important;*/
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-form-select dl dd {
|
||
|
|
/*color: #253e78;*/
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-form-label {
|
||
|
|
/*color: #253e78 !important;*/
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-input, .layui-select {
|
||
|
|
/*color: #253E78 !important;
|
||
|
|
border: 1px solid #253E78 !important;*/
|
||
|
|
height: 32px;
|
||
|
|
font-size: 14px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-input:hover,
|
||
|
|
.layui-select:hover {
|
||
|
|
/*border: 1px solid #253E78 !important;*/
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-input:focus,
|
||
|
|
.layui-select:focus {
|
||
|
|
/* border: 1px solid #253E78 !important;*/
|
||
|
|
}
|
||
|
|
|
||
|
|
.layui-form-select .layui-edge {
|
||
|
|
/*border-top-color: #253e78 !important;*/
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<body>
|
||
|
|
<form class="layui-form" onsubmit="return false;">
|
||
|
|
<div class="layui-form-item" style="margin-top: 2%">
|
||
|
|
<div class="layui-inline">
|
||
|
|
<label class="layui-form-label">地市</label>
|
||
|
|
<div class="layui-input-block" style="width: 80%;">
|
||
|
|
<select id="cityName" class="layui-select" lay-search>
|
||
|
|
</select>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div style="width: 100%;height: 7%;margin-top: 42%">
|
||
|
|
<button class="layui-btn layui-btn-normal" style="float: left;margin-left: 34%;" lay-submit
|
||
|
|
lay-filter="formDemo">保存
|
||
|
|
</button>
|
||
|
|
<button class="layui-btn layui-btn-primary" style="float: left;margin-left: 5%;" onclick="cancel()">取消</button>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
<script type="text/javascript" charset="UTF-8" src="../../../js/riskDropRateCal/child/selCity.js"></script>
|
||
|
|
</html>
|