From cdfe4b8d8ae918fe8118e72d970f99e58fdc6b83 Mon Sep 17 00:00:00 2001 From: helloxujingliang <3225043@qq.com> Date: Sat, 26 Aug 2023 11:08:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E5=90=88=E5=B9=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/home/index.vue | 12 +- src/views/home/widget/onebuttoncall.vue | 172 +++++++++++++++++++++++- 2 files changed, 179 insertions(+), 5 deletions(-) diff --git a/src/views/home/index.vue b/src/views/home/index.vue index 0c6c155..937f2d7 100644 --- a/src/views/home/index.vue +++ b/src/views/home/index.vue @@ -217,7 +217,10 @@ -
@@ -344,7 +347,8 @@ export default { friePointLayer: null, layerPlugVisible: true, rightDiaVisible: true, - callCenterVisible: true + callCenterVisible: true, + oneButtonCallShow:true, } }, @@ -1422,8 +1426,8 @@ export default { } .one-button-container{ - width:800px; - height:500px; + width:1000px; + height:600px; position: absolute; top:50%; left:50%; diff --git a/src/views/home/widget/onebuttoncall.vue b/src/views/home/widget/onebuttoncall.vue index e0bdeb9..22e4aec 100644 --- a/src/views/home/widget/onebuttoncall.vue +++ b/src/views/home/widget/onebuttoncall.vue @@ -1,13 +1,94 @@ @@ -26,5 +107,94 @@ height:60px; line-height:60px; text-indent:36px; + } + .filter-container{ + padding:15px; + } + .box-container{ + width: calc( 100% - 0px); + padding:0px 12px; + height: calc( 100% - 120px); + } + .table-header{ + width: calc( 100% - 10px); + height:25px; + color:#fff; + text-align: center; + } + .table-header div{ + float:left; + width:25%; + border-bottom:1px dashed #00FFF0; + padding-bottom:8px; + } + .table-body{ + width:100%; + height: calc( 100% - 70px); + overflow-y: auto; + } + + .table-body .table-li{ + width: calc( 50% - 20px); + margin:0px 10px; + float:left; + height:99px; + background: #082929; + margin-bottom: 8px; + padding: 10px 10px; + } + + .img-box{ + width:42px; + } + + + + + ::-webkit-scrollbar-track, ::-webkit-scrollbar-thumb { + border: 0 + } + + ::-webkit-scrollbar { + height: 10px; + width: 10px; + background: transparent; + border-radius: 5px + } + + ::-webkit-scrollbar-thumb { + padding-top: 100px; + -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1), inset -1px -1px 0 rgba(0, 0, 0, .07); + background-color: #797979; + min-height: 28px; + border-radius: 4px; + background-clip: padding-box + } + + ::-webkit-scrollbar-track, ::-webkit-scrollbar-thumb { + border: 0 + } + + ::-webkit-scrollbar-thumb:hover { + -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .25); + background-color: rgba(0, 0, 0, .4) + } + + ::-webkit-scrollbar-thumb:active { + -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, .35); + background-color: rgba(0, 0, 0, .5) + } + + .checkbox-container{ + width:18px; + height:18px; + position:relative; + top:12px; + margin-right:10px; + float:left; + background: rgba(2,0,77,0.4); + box-shadow: inset 0px 0px 34px 0px #A15E01; + border: 1px solid #F18B00; + cursor: pointer; }