随手精灵小程序,单独为了获取WIFI信息加强围栏告警功能能力
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /* pages/home/home.wxss.wxss */
- .home-container {
- position: relative;
- height: 100vh;
- overflow: hidden;
- background-color: #f2f4f5;
- }
- .header {
- height: 80px;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 0 20px;
- background-color: #fff;
- font-size: 14px;
- color: gray;
- }
- .disable-wlan {
- height: 50px;
- line-height: 50px;
- margin-top: 15px;
- padding: 0 20px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: white;
- }
- .disable-wlan-btn {
- width: 120px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .refresh-img {
- height: 25px;
- width: 25px;
- }
- .body {
- height: calc(100vh - 205px);
- overflow: auto;
- background-color: #f2f4f5;
- }
- .wlan-list {
- flex: 1;
- background-color: #f2f4f5;
- overflow: auto;
- }
- .wlan-list-empty {
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .no_wifi {
- height: 80px;
- width: 80px;
- margin-bottom: 10px;
- opacity: .6;
- }
- button {
- width: 120px;
- margin: 10px 0;
- }
- .wlan-item {
- height: 65px;
- line-height: 65px;
- padding-left: 20px;
- margin: 5px 0;
- background-color: #fff;
- white-space: nowrap;
- overflow-y: hidden;
- }
- .wlan-item-text {
- font-size: 14px;
- }
- .isConnect {
- color: #2599ff;
- }
- .footer {
- height: 55px;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #2599ff;
- background-color: #fff;
- position: absolute;
- bottom: 5px;
- left: 0;
- right: 0;
- }
- .help {
- height: 25px;
- width: 25px;
- margin-right: 5px;
- }
|