12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <div class="input-group col-xs-12 address-wrap">
- <input
- class="form-control allrid"
- ng-model="model[options.key]"
- ng-click="AddressClickHandle()"
- ng-change="ksChangeHandle()"
- id="bx_address"
- autocomplete="off"
- />
- <ul id="bx_address_ul" ng-show="addressFlag">
- <li ng-repeat="item in address_arr" ng-click="addressItemClick(item)">
- {{item.place?item.area.area+item.place:item.area}}
- </li>
- </ul>
- </div>
- <style>
- /* 故障地点 */
- .address-wrap {
- position: relative;
- }
- #bx_address_ul {
- position: absolute;
- top: 30px;
- left: 0;
- width: 100%;
- max-height: 170px;
- overflow-y: auto;
- background-color: #fff;
- border: 1px solid #d1d1d1;
- border-top: none;
- z-index: 9999;
- }
- #bx_address_ul li {
- height: 34px;
- border-bottom: 1px solid #d1d1d1;
- line-height: 32px;
- padding: 0 16px;
- cursor: pointer;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- #bx_address_ul li:hover {
- /* background-color: #005395; */
- /* color: #fff; */
- }
- #bx_address_ul li:last-child {
- border-bottom: none;
- }
- </style>
|