123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- <template>
- <div class="maintenance-supervision">
- <div class="maintenance-supervision_header">
- <el-input v-model="search" placeholder="请输入建筑名"></el-input>
- <el-select style="width: 140px;" v-model="value" placeholder="选择警情类型">
- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
- </el-option>
- </el-select>
- <el-select style="width: 100px;" v-model="value" placeholder="处置状态">
- <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
- </el-option>
- </el-select>
- <el-button style="width: 100px; margin: 0;">搜索</el-button>
- </div>
- <div>
- <div class="row header">
- <span class="time">警情类型</span>
- <span class="person">地址</span>
- <span class="result">主站单位</span>
- <span class="result1">处置状态</span>
- <span class="result2">报警时间</span>
- </div>
- <VueSeamlessScroll :data="list" :class-option="classOption" class="warp">
- <ul class="item">
- <li class="row" v-for="(item, index) in list" :key="index">
- <span class="time">{{ item[0] }}</span>
- <span class="person">{{ item[1] }}</span>
- <span class="result">{{ item[2] }}</span>
- <span class="result1">{{ item[3] }}</span>
- <span class="result2">{{ item[4] }}</span>
- </li>
- </ul>
- </VueSeamlessScroll>
- </div>
- </div>
- </template>
- <script>
- import VueSeamlessScroll from "vue-seamless-scroll";
- export default {
- name: "MaintenanceSupervision",
- data() {
- return {
- search: "",
- options: [{
- value: '1',
- label: '1111'
- },
- {
- value: '2',
- label: '2222'
- },
- {
- value: '3',
- label: '3333'
- }
- ],
- list: [
- ["火灾扑救", "金融大厦", "渝北支队", "处置状态", "12:30:01 5/11"],
- ["火灾扑救", "金融大厦", "渝北支队", "处置状态", "12:30:01 5/11"],
- ["火灾扑救", "金融大厦", "渝北支队", "处置状态", "12:30:01 5/11"],
- ["火灾扑救", "金融大厦", "渝北支队", "处置状态", "12:30:01 5/11"],
- ["火灾扑救", "金融大厦", "渝北支队", "处置状态", "12:30:01 5/11"],
- ],
- value: "",
- checked: 0,
- };
- },
- components: {
- VueSeamlessScroll,
- },
- computed: {
- classOption() {
- return {
- singleHeight: 43,
- };
- },
- },
- methods: {
- change(idx) {
- this.checked = idx;
- console.log("切换索引", idx);
- },
- resultType(text) {
- return {
- 合格: "#23f59d",
- 不合格: "#df575b",
- 是: "#23f59d",
- 否: "#df575b",
- } [text];
- },
- },
- };
- </script>
- <style scoped lang="less">
- .el-input{
- width: 120px !important;
- }
- .maintenance-supervision {
- // padding: 10px 10px 0px 20px;
- ::v-deep(.el-input__inner) {
- border: none;
- background: linear-gradient(360deg, rgba(0, 148, 255, .5) 0%, rgba(0, 148, 255, .31) 100%);
- color: #fff;
- }
- ::v-deep(.el-button) {
- border: none;
- background: linear-gradient(360deg, #0094ff90 0%, #0094ff10 100%);
- color: #fff;
- }
- .maintenance-supervision_header {
- display: flex;
- justify-content: space-around;
- border-bottom: 1px solid #154956;
- padding-bottom: 2px;
- margin-top: 15px;
- font-size: 12px;
- color: rgb(79, 149, 186);
- }
- .warp {
- margin: 0 auto;
- overflow: hidden;
- .item {
- list-style: none;
- padding: 0;
- margin: 0 auto;
- cursor: pointer;
- }
- }
- .header {
- color: #fff;
- height: 33px !important;
- line-height: 33px !important;
- background-color: rgba(0, 163, 255, 0.3) !important;
- color: #61dbff;
- margin-top: 15px;
- margin-bottom: 6px;
- }
- .row {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-left: 12px;
- padding-right: 70px;
- box-sizing: border-box;
- }
- li,
- a {
- height: 39px;
- line-height: 39px;
- margin-bottom: 4px;
- display: flex;
- font-size: 12px;
- background-color: rgba(0, 0, 0, 0.2);
- }
- }
- /deep/.el-input__inner {
- background-color: #184254;
- // width: 10px;
- height: 30px;
- margin-bottom: 5px;
- }
- /deep/.el-button {
- width: 160px;
- height: 32px;
- font-size: 14px;
- line-height: 2px;
- background: #184254;
- margin: 0 20px 0 30px;
- color: #fff;
- border-radius: 5px;
- border: none;
- }
- // /deep/.el-select-dropdown{
- // background-color:#184254 !important;
- // position: fixed;
- // }
- /deep/.select_btn {
- position: absolute;
- top: 225px;
- right: 320px;
- //下拉框
- }
- // /deep/.el-select-dropdown{
- // border: none;
- // background-color: #184254 ;
- // }
- //输入框
- // /deep/.el-input__inner{
- // color:#eee;
- // border-color: #00fff6;
- // background-color: rgba(1, 28, 82, 0.8);
- // }
- // //聚焦时的样式
- // /deep/.el-select .el-input.is-focus .el-input__inner{
- // border-color: #0B61AA;
- // background-color: rgba(1, 28, 82, 0.8);
- // color:#00D3E9;
- // }
- // //下拉框选中
- // /deep/.el-select-dropdown__item{
- // color: #eee;
- // }
- // //鼠标经过下拉框
- // /deep/.el-select-dropdown__item.hover,
- // /deep/.el-select-dropdown__item:hover{
- // color:#00D3E9;
- // background-color: #0F3360;
- // }
- </style>
- <style>
- .el-select-dropdown.el-popper {
- background-color: #4167a0;
- }
- .el-popper[x-placement^=bottom] .popper__arrow::after {
- border-bottom-color: #4167a0 !important;
- }
- .el-select-dropdown.el-popper {
- border: 1px solid rgba(0, 213, 255, 0.6) !important;
- }
- .el-select-dropdown.el-popper li.el-select-dropdown__item span {
- color: #fff;
- }
- .el-select-dropdown.el-popper li.el-select-dropdown__item.selected span {
- color: #2f7df2;
- }
- .el-select-dropdown.el-popper .el-select-dropdown__item.hover {
- background-color: #2f7df2;
- }
- .el-select-dropdown.el-popper li.el-select-dropdown__item.hover.selected span {
- color: #fff !important;
- }
- </style>
|