Merge branch 'main' of http://139.196.74.78:10010/r/zhyq/bigScreen
| | |
| | | "vue-router": "^4.4.5" |
| | | }, |
| | | "devDependencies": { |
| | | "@dvgis/types": "^1.2.0", |
| | | "@vitejs/plugin-basic-ssl": "^1.1.0", |
| | | "@vitejs/plugin-vue": "^5.1.4", |
| | | "sass": "^1.80.4", |
| | |
| | | |
| | | |
| | | |
| | | export const getfirmInfoDetail = (params) => { |
| | | const url = `/yw/firmInfo/getDetail`; |
| | | return request({ |
| | | url, |
| | | method: 'get', |
| | | params, |
| | | }); |
| | | }; |
| | | |
| | | |
| | | export const getPage = (params) => { |
| | | const url = `/yw/firmInfo/page`; |
| | | return request({ |
| | |
| | | * |
| | | * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. |
| | | --> |
| | | |
| | | <template> |
| | | <div class="data-content w100 h100"> |
| | | |
| | | <div class="clearfix"> |
| | | <div class="content-firmIntro"> |
| | | <el-image :src="data.companyInfo.imageUrls" :zoom-rate="1.2" :max-scale="7" :min-scale="0.2" |
| | | :preview-src-list="[data.companyInfo.imageUrls]" :initial-index="4" fit="cover"> |
| | | <template #error> |
| | | <div class="image-slot"> |
| | | <el-icon><icon-picture /></el-icon> |
| | | </div> |
| | | </template> |
| | | </el-image> |
| | | <span> {{ data.companyInfo.firmIntro }} </span> |
| | | </div> |
| | | </div> |
| | | |
| | | <div class="company-info"> |
| | | <div class="company-info-item" v-for="item in companyInfoList" :key="item.id"> |
| | | <el-row> |
| | | <el-col :span="8"> |
| | | <div class="company-info-title">{{ item.title }}</div> |
| | | </el-col> |
| | | <el-col :span="16"> |
| | | <div class="company-info-content">{{ item.content }}</div> |
| | | </el-col> |
| | | </el-row> |
| | | </div> |
| | | </div> |
| | | |
| | | <div class="company-info"> |
| | | <div class="" style="text-align: center;margin-top: 10px;">救援队伍</div> |
| | | <div class="company-info-item" v-for="item in rescueTeamList" :key="item.id"> |
| | | <el-row> |
| | | <el-col :span="8"> |
| | | <div class="company-info-title">{{ item.title }}</div> |
| | | </el-col> |
| | | <el-col :span="16"> |
| | | <div class="company-info-content">{{ item.content }}</div> |
| | | </el-col> |
| | | </el-row> |
| | | </div> |
| | | </div> |
| | | |
| | | <!-- <div class="company-info-image"> |
| | | <div class="" style="text-align: center;margin-top: 10px;">企业图片</div> |
| | | </div> --> |
| | | |
| | | |
| | | </div> |
| | | </template> |
| | | |
| | | <script setup> |
| | | import publicContent from './publicContent.vue' |
| | | import { getAssetsFile } from 'utils/utils' |
| | | import { getfirmInfoDetail } from '@/api/indParkInfo' |
| | | |
| | | let data = reactive({ |
| | | companyInfo: {} |
| | | }) |
| | |
| | | } |
| | | ]) |
| | | |
| | | let rescueTeamList = ref([ |
| | | { |
| | | id: 5, |
| | | name: 'rescuePerName', |
| | | title: '姓名', |
| | | content: '', |
| | | }, |
| | | { |
| | | id: 6, |
| | | name: 'rescuePerPhone', |
| | | title: '联系电话', |
| | | content: '', |
| | | } |
| | | ]) |
| | | |
| | | |
| | | onMounted(() => { |
| | | data.companyInfo = JSON.parse(localStorage.getItem('companyInfo')) |
| | | console.log(data.companyInfo) |
| | | companyInfoList.value.forEach(item => { |
| | | data.companyInfo[item.name] && (item.content = data.companyInfo[item.name]) |
| | | |
| | | }) |
| | | getDetail() |
| | | }) |
| | | |
| | | function getDetail() { |
| | | getfirmInfoDetail({ |
| | | id: data.companyInfo.id |
| | | }).then(res => { |
| | | data.companyInfo = res.data.data |
| | | companyInfoList.value.forEach(item => { |
| | | data.companyInfo[item.name] && (item.content = data.companyInfo[item.name]) |
| | | }) |
| | | rescueTeamList.value.forEach(item => { |
| | | data.companyInfo[item.name] && (item.content = data.companyInfo[item.name]) |
| | | }) |
| | | }).catch(err => { |
| | | }) |
| | | } |
| | | |
| | | |
| | | </script> |
| | | |
| | | <template> |
| | | <div class="data-content w100 h100"> |
| | | |
| | | <div class="content-firmIntro"> |
| | | <!-- <div>{{ data.companyInfo.firmIntro }}</div> --> |
| | | <span> {{ data.companyInfo.firmIntro }}</span> |
| | | </div> |
| | | |
| | | <div class="company-info"> |
| | | <div class="company-info-item" v-for="item in companyInfoList" :key="item.id"> |
| | | <el-row> |
| | | <el-col :span="8"> |
| | | <div class="company-info-title">{{ item.title }}</div> |
| | | </el-col> |
| | | <el-col :span="16"> |
| | | <div class="company-info-content">{{ item.content }}</div> |
| | | </el-col> |
| | | </el-row> |
| | | </div> |
| | | </div> |
| | | |
| | | <div class="company-info-image"> |
| | | <img :src="data.companyInfo.image_urls" alt=""> |
| | | <!-- {{ "图片" }} --> |
| | | </div> |
| | | |
| | | |
| | | </div> |
| | | </template> |
| | | |
| | | <style lang="scss" scoped> |
| | | .data-content { |
| | |
| | | color: #fff; |
| | | } |
| | | |
| | | .clearfix::after { |
| | | content: ''; |
| | | display: block; |
| | | clear: both; |
| | | } |
| | | |
| | | .content-firmIntro { |
| | | height: 300px; |
| | | overflow-x: hidden; |
| | | // 隐藏滚动条 |
| | | scrollbar-width: none; |
| | | } |
| | | |
| | | .content-firmIntro .el-image { |
| | | float: left; |
| | | margin-right: 10px; |
| | | margin-top: 5px; |
| | | width: 90px; |
| | | height: 90px; |
| | | } |
| | | |
| | | .content-firmIntro span { |
| | |
| | | |
| | | } |
| | | |
| | | .company-info-image { |
| | | margin-top: 20px; |
| | | width: 100%; |
| | | height: 200px; |
| | | // background-color: pink; |
| | | .company-info-jydw { |
| | | margin-top: 10px; |
| | | border-top: #dfdcdc 2px solid; |
| | | } |
| | | |
| | | .company-info-jydw div { |
| | | text-align: center; |
| | | margin-top: 10px; |
| | | } |
| | | </style> |
| | |
| | | const tableData = ref([]) |
| | | const pages = { |
| | | page: 1, |
| | | pageSize: 13, |
| | | pageSize: 1000, |
| | | total: 0, |
| | | } |
| | | |
| | |
| | | // 提交查询 |
| | | const onSubmit = () => { |
| | | pages.page = 1 |
| | | pages.pageSize = 13 |
| | | pages.pageSize = 1000 |
| | | pages.total = 0 |
| | | console.log("submit!") |
| | | getLists(formInline) |
| | |
| | | formInline.name = '' |
| | | formInline.ownership = '' |
| | | pages.page = 1 |
| | | pages.pageSize = 13 |
| | | pages.pageSize = 1000 |
| | | pages.total = 0 |
| | | getLists(formInline) |
| | | } |
| | | |
| | | // 查询分页数据 |
| | | function getLists (param = {}) { |
| | | function getLists(param = {}) { |
| | | param.current = pages.page |
| | | param.size = pages.pageSize |
| | | param.firmId = data.companyInfo.id |
| | |
| | | <el-form-item label="" class="form-item-input"> |
| | | <el-input v-model="formInline.name" placeholder="请输入名称" clearable style="width: 120px" /> |
| | | </el-form-item> |
| | | <!-- <el-form-item label="归属"> |
| | | <el-select v-model="formInline.ownership" placeholder="请选择" clearable style="width: 120px"> |
| | | <el-option label="园区" value="1" /> |
| | | <el-option label="企业" value="2" /> |
| | | </el-select> |
| | | </el-form-item> --> |
| | | <el-form-item class="search-btn"> |
| | | <el-button type="primary" @click="onSubmit">查询</el-button> |
| | | <el-button type="primary" @click="clearBtn">重置</el-button> |
| | | </el-form-item> |
| | | </el-form> |
| | | <el-table :data="tableData" style="width: 100%" :header-cell-style="headerCellStyle" :cell-style="tableCellStyle" |
| | | v-loading="loading" element-loading-background="rgba(122, 122, 122, 0.1)"> |
| | | <el-table-column fixed prop="name" label="名称" /> |
| | | <el-table-column prop="numUnit" label="数量" width="100" /> |
| | | <!-- <el-table-column prop="firmName" label="单位名称" /> --> |
| | | <el-table-column prop="personInCha" label="负责人" width="100" /> |
| | | </el-table> |
| | | <div class="el-page"> |
| | | <div class="table-box"> |
| | | <el-table :data="tableData" style="width: 100%" :header-cell-style="headerCellStyle" :cell-style="tableCellStyle" |
| | | v-loading="loading" element-loading-background="rgba(122, 122, 122, 0.1)"> |
| | | <el-table-column fixed prop="name" label="名称" /> |
| | | <el-table-column prop="numUnit" label="数量" width="100" /> |
| | | <!-- <el-table-column prop="firmName" label="单位名称" /> --> |
| | | <el-table-column prop="personInCha" label="负责人" width="100" /> |
| | | </el-table> |
| | | </div> |
| | | <!-- <div class="el-page"> |
| | | <el-pagination background layout="prev, pager, next" :page-size="pages.pageSize" :total="pages.total" |
| | | @size-change="handleSizeChange" @current-change="handleCurrentChange" /> |
| | | </div> |
| | | </div> --> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | } |
| | | } |
| | | |
| | | .search-box .table-box { |
| | | height: 700px; |
| | | overflow: scroll; |
| | | // 隐藏滚动条 |
| | | scrollbar-width: none; |
| | | } |
| | | |
| | | /* 当表格没有数据时,修改表格的背景颜色 */ |
| | | .el-table--empty .el-table__body { |
| | | background-color: rgba(135, 158, 199, 0.3) !important; |
| | |
| | | <template> |
| | | <div class="page-mode"> |
| | | <div @mouseenter="item.childrenFlag = true" :class="{ active: currentUrl.indexOf(item.path) != -1 }" |
| | | <div @mouseenter="item.childrenFlag = true" :class="{ active: buttonIndex == item.value }" |
| | | @mouseleave="item.childrenFlag = false" @click="goToPath(item)" v-for="(item, index) in menuList" :key="index"> |
| | | {{ item.menuName }} |
| | | </div> |
| | |
| | | [ |
| | | { |
| | | menuName: '企业信息', |
| | | path: '/layout/sub/companyInfo' |
| | | path: '/layout/sub/companyInfo', |
| | | value: 1, |
| | | }, |
| | | { |
| | | menuName: '应急物质', |
| | | path: '/layout/sub/', |
| | | value: 2, |
| | | }, |
| | | { |
| | | menuName: '应急空间', |
| | | path: '/layout/ws' |
| | | path: '/layout/ws', |
| | | value: 3, |
| | | }, |
| | | { |
| | | menuName: '三道防线', |
| | | path: '/layout/sj' |
| | | path: '/layout/sj', |
| | | value: 4, |
| | | } |
| | | ] |
| | | ) |
| | | let { buttonIndex } = defineProps({ |
| | | buttonIndex: Number |
| | | }) |
| | | |
| | | // 父级方法 |
| | | const emit = defineEmits(['childEvent']) |
| | | |
| | | const goToPath = (params) => { |
| | | if (params.value == 1) { |
| | | emit('childEvent', params.value) |
| | | return |
| | | |
| | | } else if (params.value == 2) { |
| | | emit('childEvent', params.value) |
| | | return |
| | | } |
| | | emit('childEvent', params.value) |
| | | |
| | | if (params.children && params.children.length > 0) return |
| | | |
| | | if (params.path) { |
| | |
| | | <centerContainer :button-index="buttonIndex" @childEvent="handleChildEvent"></centerContainer> |
| | | </div> |
| | | |
| | | <div class="main-container"> |
| | | <div class="main-container" v-if="buttonIndex <= 2"> |
| | | <right-container :button-index="buttonIndex"></right-container> |
| | | </div> |
| | | <main-menu-vue></main-menu-vue> |
| | | <main-menu-vue :button-index="buttonIndex" @childEvent="handleChildEvent"></main-menu-vue> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | layerName: 'gsgw', |
| | | source: gsgw, |
| | | color: DC.Color.BLUE, |
| | | height: 1, |
| | | height: 5, |
| | | }, |
| | | { |
| | | id: '6-2', |
| | |
| | | layerName: 'wsgw', |
| | | source: wsgw, |
| | | color: DC.Color.BLACK, |
| | | height: 2, |
| | | height: 10, |
| | | }, |
| | | { |
| | | id: '6-3', |
| | |
| | | layerName: 'rqgw', |
| | | source: rqgw, |
| | | color: DC.Color.RED, |
| | | height: 3, |
| | | height: 15, |
| | | }, |
| | | { |
| | | id: '6-4', |
| | |
| | | layerName: 'ysgw', |
| | | source: ysgw, |
| | | color: DC.Color.CYAN, |
| | | height: 4, |
| | | height: 20, |
| | | }, |
| | | |
| | | ] |
| | |
| | | addTileLayers[item.layerName] = new DC.VectorLayer(item.layerName) |
| | | window.$viewer.addLayer(addTileLayers[item.layerName]) |
| | | |
| | | function computeCircle (radius) { |
| | | function computeCircle(radius) { |
| | | var positions = [] |
| | | for (var i = 0; i < 1080; i++) { |
| | | var radians = DC.Math.toRadians(i) |
| | |
| | | |
| | | item.source.features.forEach(i => { |
| | | let polylineVolume = new DC.PolylineVolume( |
| | | i.geometry.coordinates.map(d => [d[0], d[1], 0.0].join(',')).join(';'), |
| | | i.geometry.coordinates.map(d => [d[0], d[1], item.height].join(',')).join(';'), |
| | | computeCircle(0.3) |
| | | ) |
| | | |
| | |
| | | const showContent = ref(false) |
| | | const showSubLayout = ref(false) |
| | | const showSinglePage = ref(false) |
| | | |
| | | // onMounted(() => { |
| | | // store.setLoadSub(false) |
| | | // }), |
| | | |
| | | // 监听createB的变化 |
| | | watch( |
| | | [ |
| | |
| | | <script setup> |
| | | import publicContent from "./publicContent.vue"; |
| | | import { getList } from "@/api/rescueTeam/rescueTeam"; |
| | | import { getPage } from '@/api/indParkInfo' |
| | | import { reactive } from "vue"; |
| | | |
| | | const loading = ref(false); |
| | | |
| | | const tableData = ref([]); |
| | | |
| | | let currentIndex = ref(0) |
| | | // 园区 企业 |
| | | const tilteList = ref([ |
| | | { label: "吉水化工园区", value: "0", id: "1" }, |
| | | { label: "吉水化工园区企业", value: "0", id: "2" } |
| | | |
| | | ]); |
| | | const pages = { |
| | | page: 1, |
| | | pageSize: 13, |
| | | pageSize: 100, |
| | | total: 0, |
| | | }; |
| | | |
| | | onMounted(() => { |
| | | getLists(); |
| | | getLists(formInline); |
| | | // getCompanyPages(); |
| | | }); |
| | | |
| | | // function getCompanyPages(param = {}) { |
| | | // param.current = pages.page; |
| | | // param.size = pages.pageSize; |
| | | // getPage(param).then(res => { |
| | | // let companyList = res.data.data.records |
| | | // companyList.forEach(item => { |
| | | // tilteList.value.push({ |
| | | // label: item.name, |
| | | // value: item.id, |
| | | // id: item.id |
| | | // }) |
| | | // }) |
| | | // }).catch(err => { |
| | | // }) |
| | | // } |
| | | |
| | | function handleClick(item, index) { |
| | | currentIndex.value = index |
| | | pages.page = 1 |
| | | pages.pageSize = 1000 |
| | | pages.total = 0 |
| | | if (item.id == 1) { |
| | | formInline.type = 1 |
| | | } else { |
| | | formInline.type = 2 |
| | | } |
| | | getLists(formInline); |
| | | } |
| | | // 表格样式 |
| | | const tableCellStyle = ({ row, column }) => { |
| | | return { background: "#152851", color: "#fff" }; |
| | |
| | | // 搜索条件 |
| | | const formInline = reactive({ |
| | | perInCha: "", |
| | | type: '' |
| | | type: '1' |
| | | }); |
| | | |
| | | // 提交查询 |
| | |
| | | getList(param) |
| | | .then((res) => { |
| | | const data = res.data.data; |
| | | data.records.forEach((element) => { |
| | | if (element.type == 1) { |
| | | element.ownership = "园区"; |
| | | } else { |
| | | element.ownership = "企业"; |
| | | } |
| | | }); |
| | | // data.records.forEach((element) => { |
| | | // if (element.type == 1) { |
| | | // element.ownership = "园区"; |
| | | // } else { |
| | | // element.ownership = "企业"; |
| | | // } |
| | | // }); |
| | | tableData.value = data.records; |
| | | pages.total = data.total; |
| | | loading.value = false; |
| | | // pages.total = data.total; |
| | | // loading.value = false; |
| | | }) |
| | | .catch((err) => { |
| | | loading.value = false; |
| | |
| | | <template> |
| | | <public-content> |
| | | <template #content> |
| | | <div> |
| | | <el-form :inline="true" :model="formInline" class="demo-form-inline"> |
| | | <div class="content_box"> |
| | | <!-- <el-form :inline="true" :model="formInline" class="demo-form-inline"> |
| | | <el-form-item label="姓名"> |
| | | <el-input v-model="formInline.perInCha" placeholder="请输入姓名" clearable style="width: 120px" /> |
| | | </el-form-item> |
| | |
| | | <el-button type="primary" @click="onSubmit">查询</el-button> |
| | | <el-button type="" @click="clearBtn">重置</el-button> |
| | | </el-form-item> |
| | | </el-form> |
| | | <el-table :data="tableData" style="width: 100%" :header-cell-style="headerCellStyle" :cell-style="tableCellStyle" |
| | | v-loading="loading"> |
| | | <el-table-column fixed prop="perInCha" label="责任人姓名" /> |
| | | <el-table-column prop="perInChaPho" label="联系电话" /> |
| | | <!-- <el-table-column prop="firmName" label="单位名称" /> --> |
| | | <el-table-column prop="ownership" label="归属" width="100" /> |
| | | </el-table> |
| | | <div class="el-page"> |
| | | <el-pagination background layout="prev, pager, next" :page-size="pages.pageSize" :total="pages.total" |
| | | @size-change="handleSizeChange" @current-change="handleCurrentChange" /> |
| | | </el-form> --> |
| | | |
| | | <div class="list_box"> |
| | | <ul> |
| | | <li v-for="( item, index ) in tilteList " :key="index" :class="[currentIndex === index ? 'active' : '']" |
| | | @click="handleClick(item, index)"> |
| | | {{ item.label }} |
| | | </li> |
| | | </ul> |
| | | </div> |
| | | |
| | | <div class="page_box"> |
| | | |
| | | <el-table v-if="formInline.type == 1" :data="tableData" style="width: 100%" :header-cell-style="headerCellStyle" |
| | | :cell-style="tableCellStyle"> |
| | | <el-table-column prop="teamName" label="救援队伍组名称" /> |
| | | <el-table-column prop="teamJob" label="救援队伍组职务" /> |
| | | <el-table-column prop="perInCha" label="责任人姓名" /> |
| | | <el-table-column prop="job" label="园区职务" /> |
| | | <el-table-column prop="perInChaPho" label="联系电话" /> |
| | | </el-table> |
| | | |
| | | <el-table v-else :data="tableData" style="width: 100%" :header-cell-style="headerCellStyle" |
| | | :cell-style="tableCellStyle"> |
| | | <el-table-column prop="firmName" label="企业名称" /> |
| | | <el-table-column prop="perInCha" label="责任人姓名" /> |
| | | <el-table-column prop="perInChaPho" label="联系电话" /> |
| | | </el-table> |
| | | |
| | | </div> |
| | | |
| | | </div> |
| | | </template> |
| | | </public-content> |
| | | </template> |
| | | |
| | | <style lang="scss" scoped> |
| | | ::v-deep .el-table__body-wrapper { |
| | | background-color: #152851; |
| | | .content_box { |
| | | color: #fff; |
| | | } |
| | | |
| | | .el-form-item__label { |
| | | color: #fff !important; |
| | | .list_box { |
| | | overflow-x: auto; |
| | | white-space: nowrap; |
| | | // scrollbar-width: thin; |
| | | scrollbar-color: rgba(255, 255, 255, 0.3) transparent; |
| | | } |
| | | |
| | | /* 当表格没有数据时,修改表格的背景颜色 */ |
| | | .el-table--empty .el-table__body { |
| | | background-color: rgba(135, 158, 199, 0.3) !important; |
| | | /* 你想要的背景颜色 */ |
| | | } |
| | | |
| | | .el-page { |
| | | margin-top: 10px; |
| | | width: 100%; |
| | | .list_box ul { |
| | | display: flex; |
| | | align-items: center; |
| | | justify-content: center; |
| | | // margin-bottom:10px; |
| | | /* 使用 Flexbox 布局 */ |
| | | padding: 0; |
| | | margin: 0; |
| | | list-style: none; |
| | | } |
| | | |
| | | .list_box li { |
| | | padding: 10px; |
| | | margin-right: 10px; |
| | | cursor: pointer; |
| | | } |
| | | |
| | | .list_box li.active { |
| | | background-color: rgba(117, 116, 116, 0.3); |
| | | color: white; |
| | | } |
| | | |
| | | .page_box { |
| | | // overflow: scroll; |
| | | } |
| | | |
| | | |
| | | .page_box .el-table { |
| | | width: 100%; |
| | | height: 700px; |
| | | background-color: rgba(117, 116, 116, 0.3); |
| | | } |
| | | </style> |
| | |
| | | <div class="page_box"> |
| | | <div> |
| | | <el-table v-if="formInline.ownership == 1" :data="tableData" style="width: 100%" |
| | | :header-cell-style="headerCellStyle" :cell-style="tableCellStyle" v-loading="loading"> |
| | | :header-cell-style="headerCellStyle" :cell-style="tableCellStyle"> |
| | | |
| | | <el-table-column fixed prop="name" label="物资名称" /> |
| | | <el-table-column fixed prop="personInCha" label="负责人" /> |
| | |
| | | </el-table> |
| | | |
| | | <el-table v-else :data="tableData" style="width: 100%" :header-cell-style="headerCellStyle" |
| | | :cell-style="tableCellStyle" v-loading="loading"> |
| | | :cell-style="tableCellStyle"> |
| | | |
| | | <el-table-column fixed prop="firmName" label="企业名称" /> |
| | | <el-table-column fixed prop="name" label="物资名称" /> |
| | |
| | | <style lang="scss" scoped> |
| | | .content_box { |
| | | color: #fff; |
| | | overflow: hidden; |
| | | } |
| | | |
| | | .list_box { |
| | | display: flex; |
| | | overflow-x: auto; |
| | | white-space: nowrap; |
| | | // scrollbar-width: thin; |
| | | scrollbar-color: rgba(255, 255, 255, 0.3) transparent; |
| | | } |
| | | |
| | | .list_box ul { |
| | | display: flex; |
| | | /* 使用 Flexbox 布局 */ |
| | | padding: 0; |
| | | margin: 0; |
| | | list-style: none; |
| | | } |
| | | |
| | | |
| | | .list_box ul li { |
| | | display: inline-block; |
| | | .list_box li { |
| | | padding: 10px; |
| | | font-size: 15px; |
| | | text-align: center; |
| | | // background: url(/images/mode-tab-ac.png) no-repeat center / 100% 100%; |
| | | margin-right: 10px; |
| | | cursor: pointer; |
| | | } |
| | | |
| | | .list_box li.active { |
| | | background-color: rgba(117, 116, 116, 0.3); |
| | | color: white; |
| | | } |
| | | |
| | | .page_box .el-table { |
| | | width: 100%; |
| | | height: 670px; |
| | | height: 700px; |
| | | background-color: rgba(117, 116, 116, 0.3); |
| | | } |
| | | |
| | | .active { |
| | |
| | | } |
| | | |
| | | .box-content-img { |
| | | |
| | | height: 380px; |
| | | line-height: 28px; |
| | | // 隐藏滚动条 |