Commit dc59ca2f660c47ebfcd6e5139450f2a404f5aaeb

Authored by mahuandong
1 parent 5230fa9a

修改搜索栏时间初始化值

src/main/resources/static/huaheng/css/huahengUI.css
... ... @@ -309,9 +309,24 @@ label{
309 309 margin-top: 5px;
310 310 }
311 311 .time span{
312   - display: block;
  312 + display: block;
313 313 margin: 5px 5px;
314 314 }
  315 +
  316 +.select-list .time2 input{
  317 + width:133px;
  318 +}
  319 +
  320 +.time2 label,.time2 span,.time2 input{
  321 + float:left;
  322 +}
  323 +.time2 label{
  324 + margin-top: 5px;
  325 +}
  326 +.time2 span{
  327 + display: block;
  328 + margin: 5px 5px;
  329 +}
315 330 .search-btn{
316 331 background-color: #1ab394;
317 332 border-color: #1ab394;
... ...
src/main/resources/templates/config/location/location.html
... ... @@ -48,7 +48,7 @@
48 48 <option th:each="e : ${locationTypes}" th:text="${e['name']}" th:value="${e['code']}"></option>
49 49 </select>
50 50 </li>
51   - <li class="time">
  51 + <li class="time2">
52 52 <label>创建时间: </label>
53 53 <input type="text" class="time-input" id="startTime" placeholder="开始时间" name="createdBegin"/>
54 54 <span>-</span>
... ...