提交 42469404 authored 作者: coderBryanFu's avatar coderBryanFu

update

上级 d9959d1e
...@@ -9,18 +9,13 @@ ...@@ -9,18 +9,13 @@
</div> </div>
<div class="cards-mask"> <div class="cards-mask">
<div class="item-box" :style="{ transform: `translateX(-${currentIndex * (307 + 16)}px)` }"> <div class="item-box" :style="{ transform: `translateX(-${currentIndex * (307 + 16)}px)` }">
<div <div class="header-item" :class="{
class="header-item" headerItem1: index % 5 === 0,
:class="{ headerItem2: index % 5 === 1,
headerItem1: index % 5 === 0, headerItem3: index % 5 === 2,
headerItem2: index % 5 === 1, headerItem4: index % 5 === 3,
headerItem3: index % 5 === 2, headerItem5: index % 5 === 4
headerItem4: index % 5 === 3, }" v-for="(item, index) in headerList" :key="index">
headerItem5: index % 5 === 4
}"
v-for="(item, index) in headerList"
:key="index"
>
<div class="name">{{ item.elementName }}</div> <div class="name">{{ item.elementName }}</div>
<div class="num">{{ item.num }}</div> <div class="num">{{ item.num }}</div>
</div> </div>
...@@ -37,12 +32,8 @@ ...@@ -37,12 +32,8 @@
<div class="title">{{ "最新动态" }}</div> <div class="title">{{ "最新动态" }}</div>
</div> </div>
<div class="box1-main"> <div class="box1-main">
<div <div class="box1-item" v-for="(item, index) in box1DataList" :key="index"
class="box1-item" @click="handleToDecreeDetail(item)">
v-for="(item, index) in box1DataList"
:key="index"
@click="handleToDecreeDetail(item)"
>
<div class="box1-item-left">{{ index + 1 }}</div> <div class="box1-item-left">{{ index + 1 }}</div>
<div class="box1-item-right"> <div class="box1-item-right">
<div class="title">{{ item.name }}</div> <div class="title">{{ item.name }}</div>
...@@ -53,18 +44,13 @@ ...@@ -53,18 +44,13 @@
<div class="box1-item-right-footer"> <div class="box1-item-right-footer">
<div class="time">{{ item.postDate }}</div> <div class="time">{{ item.postDate }}</div>
<div class="area-box"> <div class="area-box">
<div <div class="area" :class="{
class="area" area1: vall.status === '1',
:class="{ area2: vall.status === '2',
area1: vall.status === '1', area3: vall.status === '3',
area2: vall.status === '2', area4: vall.status === '4',
area3: vall.status === '3', area5: vall.status === '5'
area4: vall.status === '4', }" v-for="(vall, idxx) in item.areaList" :key="idxx">
area5: vall.status === '5'
}"
v-for="(vall, idxx) in item.areaList"
:key="idxx"
>
{{ vall.industryName }} {{ vall.industryName }}
</div> </div>
</div> </div>
...@@ -85,57 +71,47 @@ ...@@ -85,57 +71,47 @@
<div class="box2-main"> <div class="box2-main">
<div class="inner-box1"> <div class="inner-box1">
<div class="left"> <div class="left">
<div class="left-main"> <div class="left-main">
<div <el-empty v-if="box2DataList.length === 0" style="padding-top: 80px" description="暂无数据"
class="left-item" :image-size="100" />
:class="{ leftItemActive: box2LeftActiveIndex === index }" <div class="left-item" :class="{ leftItemActive: box2LeftActiveIndex === index }"
v-for="(item, index) in box2DataList" v-for="(item, index) in box2DataList" :key="index" @click="handleClickBox2Item(index)">
:key="index"
@click="handleClickBox2Item(index)"
>
<div class="id">{{ index + 1 }}</div> <div class="id">{{ index + 1 }}</div>
<div class="text">{{ item.name }}</div> <div class="text">{{ item.name }}</div>
</div> </div>
</div> </div>
<div class="left-footer"> <div class="left-footer" v-if="box2DataList.length !== 0">
<el-pagination <el-pagination background layout="prev, pager, next" :total="box2Total" :page-size="box2PageSize"
background v-model:current-page="box2CurrentPage" @current-change="handleGetBox2DataList" size="small"
layout="prev, pager, next" :pager-count="4" />
:total="box2Total"
:page-size="box2PageSize"
v-model:current-page="box2CurrentPage"
@current-change="handleGetBox2DataList"
size="small"
:pager-count="4"
/>
</div> </div>
</div> </div>
<div class="right" @click="handleToDecreeDetail(box2DetailInfo)"> <div class="right" @click="handleToDecreeDetail(box2DetailInfo)">
<div class="title">{{ box2DetailInfo.name }}</div> <el-empty v-if="box2DataList.length === 0 || !isShowBox2Info" style="padding-top: 80px"
<div class="tag-box"> description="暂无数据" :image-size="100" />
<div class="tag" v-for="(item, index) in box2DetailInfo.elemetList" :key="index"> <div v-else>
{{ item }} <div class="title">{{ box2DetailInfo?.name }}</div>
<div class="tag-box">
<div class="tag" v-for="(item, index) in box2DetailInfo.elemetList" :key="index">
{{ item }}
</div>
</div> </div>
</div> <div class="content">{{ box2DetailInfo?.describe }}</div>
<div class="content">{{ box2DetailInfo.describe }}</div> <div class="area-box">
<div class="area-box"> <div class="area" :class="{
<div
class="area"
:class="{
area1: item.status === '1', area1: item.status === '1',
area2: item.status === '2', area2: item.status === '2',
area3: item.status === '3', area3: item.status === '3',
area4: item.status === '4', area4: item.status === '4',
area5: item.status === '5' area5: item.status === '5'
}" }" v-for="(item, index) in box2DetailInfo.areaList" :key="index">
v-for="(item, index) in box2DetailInfo.areaList" {{ item.industryName }}
:key="index" </div>
> </div>
{{ item.industryName }} <div class="footer" v-show="box2DetailInfo?.postDate || box2DetailInfo?.orgNameList">
{{ `${box2DetailInfo?.postDate} · ${box2DetailInfo?.orgNameList?.toString()} · 行政令` }}
</div> </div>
</div>
<div class="footer">
{{ `${box2DetailInfo?.postDate} · ${box2DetailInfo?.orgNameList?.toString()} · 行政令` }}
</div> </div>
</div> </div>
</div> </div>
...@@ -156,78 +132,51 @@ ...@@ -156,78 +132,51 @@
<div class="inner-box1"> <div class="inner-box1">
<div class="left"> <div class="left">
<div class="left-main"> <div class="left-main">
<el-empty <el-empty v-if="box3DataList.length === 0" style="padding-top: 80px" description="暂无数据"
v-if="box3DataList.length === 0" :image-size="100" />
style="padding-top: 80px" <div class="left-item" :class="{ leftItemActive: box3LeftActiveIndex === index }"
description="暂无数据" v-for="(item, index) in box3DataList" :key="index" @click="handleClickBox3Item(index)">
:image-size="100"
/>
<div
class="left-item"
:class="{ leftItemActive: box3LeftActiveIndex === index }"
v-for="(item, index) in box3DataList"
:key="index"
@click="handleClickBox3Item(index)"
>
<div class="id">{{ index + 1 }}</div> <div class="id">{{ index + 1 }}</div>
<div class="text">{{ item.name }}</div> <div class="text">{{ item.name }}</div>
</div> </div>
</div> </div>
<div class="left-footer"> <div class="left-footer" v-if="box3DataList.length">
<el-pagination <el-pagination background layout="prev, pager, next" :total="box3Total" :page-size="box3PageSize"
background v-model:current-page="box3CurrentPage" @current-change="handleGetBox3DataList" size="small"
layout="prev, pager, next" :pager-count="4" />
:total="box3Total"
:page-size="box3PageSize"
v-model:current-page="box3CurrentPage"
@current-change="handleGetBox3DataList"
size="small"
:pager-count="4"
/>
</div> </div>
</div> </div>
<div class="right" @click="handleToDecreeDetail(box3DetailInfo)"> <div class="right" @click="handleToDecreeDetail(box3DetailInfo)">
<el-empty <el-empty v-if="box3DataList.length === 0 || !isShowBox3Info" style="padding-top: 80px"
v-if="box3DataList.length === 0" description="暂无数据" :image-size="100" />
style="padding-top: 80px" <div v-else>
description="暂无数据" <div class="title">{{ box3DetailInfo?.name }}</div>
:image-size="100" <div class="tag-box">
/> <div class="tag" v-for="(item, index) in box3DetailInfo?.elemetList" :key="index">
<div class="title">{{ box3DetailInfo?.name }}</div> {{ item }}
<div class="tag-box"> </div>
<div class="tag" v-for="(item, index) in box3DetailInfo?.elemetList" :key="index">
{{ item }}
</div> </div>
</div> <div class="content">{{ box3DetailInfo?.describe }}</div>
<div class="content">{{ box3DetailInfo?.describe }}</div> <div class="area-box">
<div class="area-box"> <div class="area" :class="{
<div
class="area"
:class="{
area1: item.status === '1', area1: item.status === '1',
area2: item.status === '2', area2: item.status === '2',
area3: item.status === '3', area3: item.status === '3',
area4: item.status === '4', area4: item.status === '4',
area5: item.status === '5' area5: item.status === '5'
}" }" v-for="(item, index) in box3DetailInfo?.areaList" :key="index">
v-for="(item, index) in box3DetailInfo?.areaList" {{ item.industryName }}
:key="index" </div>
> </div>
{{ item.industryName }} <div class="footer" v-if="box3DetailInfo?.postDate || box3DetailInfo?.orgNameList">
{{ `${box3DetailInfo?.postDate} · ${box3DetailInfo?.orgNameList?.toString()} · 行政令` }}
</div> </div>
</div>
<div class="footer" v-if="box3DetailInfo?.postDate || box3DetailInfo?.orgNameList">
{{ `${box3DetailInfo?.postDate} · ${box3DetailInfo?.orgNameList?.toString()} · 行政令` }}
</div> </div>
</div> </div>
</div> </div>
<div class="inner-box2"> <div class="inner-box2">
<el-empty <el-empty v-if="box3ChartData.length === 0" style="padding-top: 80px" description="暂无数据"
v-if="box3ChartData.length === 0" :image-size="100" />
style="padding-top: 80px"
description="暂无数据"
:image-size="100"
/>
<div class="chart-header">{{ "关键词云" }}</div> <div class="chart-header">{{ "关键词云" }}</div>
<div class="box3Chart" id="box3Chart"></div> <div class="box3Chart" id="box3Chart"></div>
</div> </div>
...@@ -255,6 +204,10 @@ import { ...@@ -255,6 +204,10 @@ import {
const activeDate = inject("activeDate"); const activeDate = inject("activeDate");
const isShowBox2Info = ref(true)
const isShowBox3Info = ref(true)
const getCalculatedDate = type => { const getCalculatedDate = type => {
const now = new Date(); const now = new Date();
const endDate = new Date(); const endDate = new Date();
...@@ -303,7 +256,7 @@ const handleGetHeaderList = async () => { ...@@ -303,7 +256,7 @@ const handleGetHeaderList = async () => {
if (res.code === 200 && res.data) { if (res.code === 200 && res.data) {
headerList.value = res.data; headerList.value = res.data;
} }
} catch (error) {} } catch (error) { }
}; };
// 最新动态 // 最新动态
...@@ -330,7 +283,7 @@ const handleGetBox1Data = async () => { ...@@ -330,7 +283,7 @@ const handleGetBox1Data = async () => {
if (res.code === 200 && res.data) { if (res.code === 200 && res.data) {
box1DataList.value = res.data; box1DataList.value = res.data;
} }
} catch (error) {} } catch (error) { }
}; };
const box2DataList = ref([]); const box2DataList = ref([]);
...@@ -350,8 +303,12 @@ const handleGetOrderInfo = async id => { ...@@ -350,8 +303,12 @@ const handleGetOrderInfo = async id => {
console.log("根据id获取政令详细信息1", res); console.log("根据id获取政令详细信息1", res);
if (res.code === 200 && res.data) { if (res.code === 200 && res.data) {
box2DetailInfo.value = res.data; box2DetailInfo.value = res.data;
} else {
isShowBox2Info.value = false
} }
} catch (error) {} } catch (error) {
isShowBox2Info.value = false
}
}; };
const handleGetBox2DataList = async () => { const handleGetBox2DataList = async () => {
...@@ -369,7 +326,7 @@ const handleGetBox2DataList = async () => { ...@@ -369,7 +326,7 @@ const handleGetBox2DataList = async () => {
box2Total.value = res.data.totalElements; box2Total.value = res.data.totalElements;
handleGetOrderInfo(box2DataList.value[box2LeftActiveIndex.value].id); handleGetOrderInfo(box2DataList.value[box2LeftActiveIndex.value].id);
} }
} catch (error) {} } catch (error) { }
}; };
const handleClickBox2Item = index => { const handleClickBox2Item = index => {
...@@ -394,7 +351,7 @@ const handleGetBox2ChartData = async () => { ...@@ -394,7 +351,7 @@ const handleGetBox2ChartData = async () => {
}; };
}); });
} }
} catch (error) {} } catch (error) { }
}; };
const handleBox2Chart = async () => { const handleBox2Chart = async () => {
await handleGetBox2ChartData(); await handleGetBox2ChartData();
...@@ -420,8 +377,12 @@ const handleGetOrderInfo1 = async id => { ...@@ -420,8 +377,12 @@ const handleGetOrderInfo1 = async id => {
console.log("根据id获取政令详细信息1", res); console.log("根据id获取政令详细信息1", res);
if (res.code === 200 && res.data) { if (res.code === 200 && res.data) {
box3DetailInfo.value = res.data; box3DetailInfo.value = res.data;
} else {
isShowBox3Info.value = false
} }
} catch (error) {} } catch (error) {
isShowBox3Info.value = false
}
}; };
const handleGetBox3DataList = async () => { const handleGetBox3DataList = async () => {
...@@ -446,7 +407,7 @@ const handleGetBox3DataList = async () => { ...@@ -446,7 +407,7 @@ const handleGetBox3DataList = async () => {
} else { } else {
box3DetailInfo.value = {}; box3DetailInfo.value = {};
} }
} catch (error) {} } catch (error) { }
}; };
const handleClickBox3Item = index => { const handleClickBox3Item = index => {
...@@ -472,7 +433,7 @@ const handleGetBox3ChartData = async () => { ...@@ -472,7 +433,7 @@ const handleGetBox3ChartData = async () => {
}; };
}); });
} }
} catch (error) {} } catch (error) { }
}; };
const handleBox3Chart = async () => { const handleBox3Chart = async () => {
await handleGetBox3ChartData(); await handleGetBox3ChartData();
...@@ -559,6 +520,7 @@ onUnmounted(() => { ...@@ -559,6 +520,7 @@ onUnmounted(() => {
<style lang="scss" scoped> <style lang="scss" scoped>
.content-wrapper { .content-wrapper {
width: 1600px; width: 1600px;
// height: 2132px; // height: 2132px;
.header { .header {
width: 1600px; width: 1600px;
...@@ -569,6 +531,7 @@ onUnmounted(() => { ...@@ -569,6 +531,7 @@ onUnmounted(() => {
gap: 16px; gap: 16px;
margin: 0 auto; margin: 0 auto;
position: relative; position: relative;
.header-arrow-left { .header-arrow-left {
position: absolute; position: absolute;
left: -33px; left: -33px;
...@@ -576,11 +539,13 @@ onUnmounted(() => { ...@@ -576,11 +539,13 @@ onUnmounted(() => {
width: 24px; width: 24px;
height: 48px; height: 48px;
cursor: pointer; cursor: pointer;
img { img {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
} }
.header-arrow-right { .header-arrow-right {
position: absolute; position: absolute;
right: -33px; right: -33px;
...@@ -588,6 +553,7 @@ onUnmounted(() => { ...@@ -588,6 +553,7 @@ onUnmounted(() => {
width: 24px; width: 24px;
height: 48px; height: 48px;
cursor: pointer; cursor: pointer;
img { img {
width: 100%; width: 100%;
height: 100%; height: 100%;
...@@ -612,6 +578,7 @@ onUnmounted(() => { ...@@ -612,6 +578,7 @@ onUnmounted(() => {
gap: 16px; gap: 16px;
padding: 0; padding: 0;
transition: transform 0.5s ease; // 平滑过渡动画 transition: transform 0.5s ease; // 平滑过渡动画
.header-item { .header-item {
width: 307px; width: 307px;
height: 178px; height: 178px;
...@@ -631,6 +598,7 @@ onUnmounted(() => { ...@@ -631,6 +598,7 @@ onUnmounted(() => {
letter-spacing: 0px; letter-spacing: 0px;
text-align: left; text-align: left;
} }
.num { .num {
margin-top: -8px; margin-top: -8px;
margin-left: 112px; margin-left: 112px;
...@@ -646,23 +614,29 @@ onUnmounted(() => { ...@@ -646,23 +614,29 @@ onUnmounted(() => {
text-align: left; text-align: left;
} }
} }
.headerItem1 { .headerItem1 {
background: url("./assets/images/bg1.png"); background: url("./assets/images/bg1.png");
} }
.headerItem2 { .headerItem2 {
background: url("./assets/images/bg2.png"); background: url("./assets/images/bg2.png");
} }
.headerItem3 { .headerItem3 {
background: url("./assets/images/bg3.png"); background: url("./assets/images/bg3.png");
} }
.headerItem4 { .headerItem4 {
background: url("./assets/images/bg4.png"); background: url("./assets/images/bg4.png");
} }
.headerItem5 { .headerItem5 {
background: url("./assets/images/bg5.png"); background: url("./assets/images/bg5.png");
} }
} }
} }
.main { .main {
width: 1598px; width: 1598px;
height: 884px; height: 884px;
...@@ -670,6 +644,7 @@ onUnmounted(() => { ...@@ -670,6 +644,7 @@ onUnmounted(() => {
margin-top: 14px; margin-top: 14px;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
.box { .box {
box-sizing: border-box; box-sizing: border-box;
border: 1px solid rgba(255, 255, 255, 1); border: 1px solid rgba(255, 255, 255, 1);
...@@ -677,28 +652,34 @@ onUnmounted(() => { ...@@ -677,28 +652,34 @@ onUnmounted(() => {
box-shadow: 0px 0px 20px 0px rgba(25, 69, 130, 0.1); box-shadow: 0px 0px 20px 0px rgba(25, 69, 130, 0.1);
background: rgba(255, 255, 255, 0.65); background: rgba(255, 255, 255, 0.65);
} }
.left { .left {
width: 472px; width: 472px;
.box1 { .box1 {
width: 472px; width: 472px;
height: 884px; height: 884px;
overflow: hidden; overflow: hidden;
.box1-header { .box1-header {
height: 48px; height: 48px;
display: flex; display: flex;
box-sizing: border-box; box-sizing: border-box;
border-bottom: 1px solid rgba(255, 255, 255, 1); border-bottom: 1px solid rgba(255, 255, 255, 1);
background: linear-gradient(180deg, rgba(231, 243, 255, 0.5), rgba(231, 243, 255, 0) 100%); background: linear-gradient(180deg, rgba(231, 243, 255, 0.5), rgba(231, 243, 255, 0) 100%);
.icon { .icon {
width: 22px; width: 22px;
height: 18px; height: 18px;
margin-top: 15px; margin-top: 15px;
margin-left: 16px; margin-left: 16px;
img { img {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
} }
.title { .title {
width: 89px; width: 89px;
height: 31px; height: 31px;
...@@ -714,10 +695,12 @@ onUnmounted(() => { ...@@ -714,10 +695,12 @@ onUnmounted(() => {
text-align: left; text-align: left;
} }
} }
.box1-main { .box1-main {
height: 836px; height: 836px;
overflow: hidden; overflow: hidden;
background: rgba(255, 255, 255, 0.65); background: rgba(255, 255, 255, 0.65);
.box1-item { .box1-item {
width: 430px; width: 430px;
height: 167px; height: 167px;
...@@ -728,6 +711,7 @@ onUnmounted(() => { ...@@ -728,6 +711,7 @@ onUnmounted(() => {
margin: 0 auto; margin: 0 auto;
display: flex; display: flex;
cursor: pointer; cursor: pointer;
.box1-item-left { .box1-item-left {
width: 30px; width: 30px;
height: 30px; height: 30px;
...@@ -743,9 +727,11 @@ onUnmounted(() => { ...@@ -743,9 +727,11 @@ onUnmounted(() => {
line-height: 30px; line-height: 30px;
letter-spacing: 0px; letter-spacing: 0px;
} }
.box1-item-right { .box1-item-right {
width: 388px; width: 388px;
margin-left: 12px; margin-left: 12px;
.title { .title {
height: 30px; height: 30px;
color: rgba(59, 65, 75, 1); color: rgba(59, 65, 75, 1);
...@@ -760,6 +746,7 @@ onUnmounted(() => { ...@@ -760,6 +746,7 @@ onUnmounted(() => {
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
} }
.content { .content {
height: 48px; height: 48px;
color: rgba(95, 101, 108, 1); color: rgba(95, 101, 108, 1);
...@@ -776,12 +763,14 @@ onUnmounted(() => { ...@@ -776,12 +763,14 @@ onUnmounted(() => {
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
-webkit-line-clamp: 2; -webkit-line-clamp: 2;
} }
.tag-box { .tag-box {
margin-top: 4px; margin-top: 4px;
height: 28px; height: 28px;
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
gap: 8px; gap: 8px;
.tag { .tag {
width: 80px; width: 80px;
height: 28px; height: 28px;
...@@ -797,12 +786,14 @@ onUnmounted(() => { ...@@ -797,12 +786,14 @@ onUnmounted(() => {
letter-spacing: 0px; letter-spacing: 0px;
} }
} }
.box1-item-right-footer { .box1-item-right-footer {
height: 30px; height: 30px;
margin-top: 4px; margin-top: 4px;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
.time { .time {
width: 124px; width: 124px;
height: 30px; height: 30px;
...@@ -815,11 +806,13 @@ onUnmounted(() => { ...@@ -815,11 +806,13 @@ onUnmounted(() => {
letter-spacing: 0px; letter-spacing: 0px;
text-align: left; text-align: left;
} }
.area-box { .area-box {
height: 24px; height: 24px;
display: flex; display: flex;
gap: 8px; gap: 8px;
justify-content: flex-end; justify-content: flex-end;
.area { .area {
height: 24px; height: 24px;
padding: 0 8px; padding: 0 8px;
...@@ -847,27 +840,33 @@ onUnmounted(() => { ...@@ -847,27 +840,33 @@ onUnmounted(() => {
} }
} }
} }
.right { .right {
width: 1110px; width: 1110px;
.box2 { .box2 {
width: 1110px; width: 1110px;
height: 434px; height: 434px;
.box2-header { .box2-header {
height: 48px; height: 48px;
box-sizing: border-box; box-sizing: border-box;
border-bottom: 1px solid rgba(255, 255, 255, 1); border-bottom: 1px solid rgba(255, 255, 255, 1);
background: linear-gradient(180deg, rgba(231, 243, 255, 0.5), rgba(231, 243, 255, 0) 100%); background: linear-gradient(180deg, rgba(231, 243, 255, 0.5), rgba(231, 243, 255, 0) 100%);
display: flex; display: flex;
.icon { .icon {
width: 17px; width: 17px;
height: 16.5px; height: 16.5px;
margin-left: 19px; margin-left: 19px;
margin-top: 16px; margin-top: 16px;
img { img {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
} }
.title { .title {
margin-top: 8px; margin-top: 8px;
margin-left: 13px; margin-left: 13px;
...@@ -883,12 +882,14 @@ onUnmounted(() => { ...@@ -883,12 +882,14 @@ onUnmounted(() => {
text-align: left; text-align: left;
} }
} }
.box2-main { .box2-main {
height: 386px; height: 386px;
background: rgba(255, 255, 255, 0.65); background: rgba(255, 255, 255, 0.65);
display: flex; display: flex;
justify-content: center; justify-content: center;
gap: 16px; gap: 16px;
.inner-box1 { .inner-box1 {
width: 640px; width: 640px;
height: 368px; height: 368px;
...@@ -897,21 +898,27 @@ onUnmounted(() => { ...@@ -897,21 +898,27 @@ onUnmounted(() => {
border: 1px solid rgba(234, 236, 238, 1); border: 1px solid rgba(234, 236, 238, 1);
border-radius: 10px; border-radius: 10px;
display: flex; display: flex;
.left { .left {
width: 320px; width: 320px;
border-right: 1px solid rgba(234, 236, 238, 1); border-right: 1px solid rgba(234, 236, 238, 1);
.left-main { .left-main {
margin-top: 9px; margin-top: 9px;
height: 270px; height: 270px;
.left-item { .left-item {
height: 54px; height: 54px;
border: 1px solid transparent; border: 1px solid transparent;
display: flex; display: flex;
align-items: center; align-items: center;
&:hover { &:hover {
background: rgba(246, 250, 255, 1); background: rgba(246, 250, 255, 1);
} }
cursor: pointer; cursor: pointer;
.id { .id {
margin-left: 16px; margin-left: 16px;
width: 24px; width: 24px;
...@@ -927,6 +934,7 @@ onUnmounted(() => { ...@@ -927,6 +934,7 @@ onUnmounted(() => {
letter-spacing: 0px; letter-spacing: 0px;
text-align: center; text-align: center;
} }
.text { .text {
width: 260px; width: 260px;
height: 30px; height: 30px;
...@@ -944,6 +952,7 @@ onUnmounted(() => { ...@@ -944,6 +952,7 @@ onUnmounted(() => {
white-space: nowrap; white-space: nowrap;
} }
} }
.leftItemActive { .leftItemActive {
box-sizing: border-box; box-sizing: border-box;
border: 1px solid rgba(231, 243, 255, 1); border: 1px solid rgba(231, 243, 255, 1);
...@@ -951,6 +960,7 @@ onUnmounted(() => { ...@@ -951,6 +960,7 @@ onUnmounted(() => {
background: rgba(246, 250, 255, 1); background: rgba(246, 250, 255, 1);
} }
} }
.left-footer { .left-footer {
margin-top: 30px; margin-top: 30px;
height: 60px; height: 60px;
...@@ -959,12 +969,14 @@ onUnmounted(() => { ...@@ -959,12 +969,14 @@ onUnmounted(() => {
align-items: center; align-items: center;
} }
} }
.right { .right {
width: 320px; width: 320px;
height: 368px; height: 368px;
overflow: hidden; overflow: hidden;
overflow-y: auto; overflow-y: auto;
cursor: pointer; cursor: pointer;
.title { .title {
width: 283px; width: 283px;
min-height: 24px; min-height: 24px;
...@@ -980,6 +992,7 @@ onUnmounted(() => { ...@@ -980,6 +992,7 @@ onUnmounted(() => {
letter-spacing: 0px; letter-spacing: 0px;
text-align: justify; text-align: justify;
} }
.tag-box { .tag-box {
width: 283px; width: 283px;
margin: 0 auto; margin: 0 auto;
...@@ -987,6 +1000,7 @@ onUnmounted(() => { ...@@ -987,6 +1000,7 @@ onUnmounted(() => {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
gap: 8px; gap: 8px;
.tag { .tag {
height: 28px; height: 28px;
padding: 0 8px; padding: 0 8px;
...@@ -1003,6 +1017,7 @@ onUnmounted(() => { ...@@ -1003,6 +1017,7 @@ onUnmounted(() => {
letter-spacing: 0px; letter-spacing: 0px;
} }
} }
.content { .content {
margin: 0 auto; margin: 0 auto;
margin-top: 8px; margin-top: 8px;
...@@ -1022,6 +1037,7 @@ onUnmounted(() => { ...@@ -1022,6 +1037,7 @@ onUnmounted(() => {
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
-webkit-line-clamp: 5; -webkit-line-clamp: 5;
} }
.area-box { .area-box {
width: 283px; width: 283px;
margin: 0 auto; margin: 0 auto;
...@@ -1031,6 +1047,7 @@ onUnmounted(() => { ...@@ -1031,6 +1047,7 @@ onUnmounted(() => {
flex-wrap: wrap; flex-wrap: wrap;
justify-content: flex-start; justify-content: flex-start;
gap: 8px; gap: 8px;
.area { .area {
height: 24px; height: 24px;
padding: 0 8px; padding: 0 8px;
...@@ -1048,6 +1065,7 @@ onUnmounted(() => { ...@@ -1048,6 +1065,7 @@ onUnmounted(() => {
color: rgba(245, 34, 45, 1); color: rgba(245, 34, 45, 1);
} }
} }
.footer { .footer {
width: 283px; width: 283px;
margin: 0 auto; margin: 0 auto;
...@@ -1064,6 +1082,7 @@ onUnmounted(() => { ...@@ -1064,6 +1082,7 @@ onUnmounted(() => {
} }
} }
} }
.inner-box2 { .inner-box2 {
width: 412px; width: 412px;
height: 368px; height: 368px;
...@@ -1072,6 +1091,7 @@ onUnmounted(() => { ...@@ -1072,6 +1091,7 @@ onUnmounted(() => {
border-radius: 10px; border-radius: 10px;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
.chart-header { .chart-header {
position: absolute; position: absolute;
top: 14px; top: 14px;
...@@ -1090,6 +1110,7 @@ onUnmounted(() => { ...@@ -1090,6 +1110,7 @@ onUnmounted(() => {
line-height: 26px; line-height: 26px;
letter-spacing: 0px; letter-spacing: 0px;
} }
.box2Chart { .box2Chart {
width: 412px; width: 412px;
height: 368px; height: 368px;
...@@ -1097,26 +1118,31 @@ onUnmounted(() => { ...@@ -1097,26 +1118,31 @@ onUnmounted(() => {
} }
} }
} }
.box3 { .box3 {
margin-top: 16px; margin-top: 16px;
width: 1110px; width: 1110px;
height: 434px; height: 434px;
.box3-header { .box3-header {
height: 48px; height: 48px;
box-sizing: border-box; box-sizing: border-box;
border-bottom: 1px solid rgba(255, 255, 255, 1); border-bottom: 1px solid rgba(255, 255, 255, 1);
background: linear-gradient(180deg, rgba(231, 243, 255, 0.5), rgba(231, 243, 255, 0) 100%); background: linear-gradient(180deg, rgba(231, 243, 255, 0.5), rgba(231, 243, 255, 0) 100%);
display: flex; display: flex;
.icon { .icon {
width: 17px; width: 17px;
height: 16.5px; height: 16.5px;
margin-left: 19px; margin-left: 19px;
margin-top: 16px; margin-top: 16px;
img { img {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
} }
.title { .title {
margin-top: 8px; margin-top: 8px;
margin-left: 13px; margin-left: 13px;
...@@ -1132,12 +1158,14 @@ onUnmounted(() => { ...@@ -1132,12 +1158,14 @@ onUnmounted(() => {
text-align: left; text-align: left;
} }
} }
.box3-main { .box3-main {
height: 386px; height: 386px;
background: rgba(255, 255, 255, 0.65); background: rgba(255, 255, 255, 0.65);
display: flex; display: flex;
justify-content: center; justify-content: center;
gap: 16px; gap: 16px;
.inner-box1 { .inner-box1 {
width: 640px; width: 640px;
height: 368px; height: 368px;
...@@ -1146,21 +1174,27 @@ onUnmounted(() => { ...@@ -1146,21 +1174,27 @@ onUnmounted(() => {
border: 1px solid rgba(234, 236, 238, 1); border: 1px solid rgba(234, 236, 238, 1);
border-radius: 10px; border-radius: 10px;
display: flex; display: flex;
.left { .left {
width: 320px; width: 320px;
border-right: 1px solid rgba(234, 236, 238, 1); border-right: 1px solid rgba(234, 236, 238, 1);
.left-main { .left-main {
margin-top: 9px; margin-top: 9px;
height: 270px; height: 270px;
.left-item { .left-item {
height: 54px; height: 54px;
border: 1px solid transparent; border: 1px solid transparent;
display: flex; display: flex;
align-items: center; align-items: center;
&:hover { &:hover {
background: rgba(246, 250, 255, 1); background: rgba(246, 250, 255, 1);
} }
cursor: pointer; cursor: pointer;
.id { .id {
margin-left: 16px; margin-left: 16px;
width: 24px; width: 24px;
...@@ -1176,6 +1210,7 @@ onUnmounted(() => { ...@@ -1176,6 +1210,7 @@ onUnmounted(() => {
letter-spacing: 0px; letter-spacing: 0px;
text-align: center; text-align: center;
} }
.text { .text {
width: 260px; width: 260px;
height: 30px; height: 30px;
...@@ -1193,6 +1228,7 @@ onUnmounted(() => { ...@@ -1193,6 +1228,7 @@ onUnmounted(() => {
white-space: nowrap; white-space: nowrap;
} }
} }
.leftItemActive { .leftItemActive {
box-sizing: border-box; box-sizing: border-box;
border: 1px solid rgba(231, 243, 255, 1); border: 1px solid rgba(231, 243, 255, 1);
...@@ -1200,6 +1236,7 @@ onUnmounted(() => { ...@@ -1200,6 +1236,7 @@ onUnmounted(() => {
background: rgba(246, 250, 255, 1); background: rgba(246, 250, 255, 1);
} }
} }
.left-footer { .left-footer {
margin-top: 30px; margin-top: 30px;
height: 60px; height: 60px;
...@@ -1208,12 +1245,14 @@ onUnmounted(() => { ...@@ -1208,12 +1245,14 @@ onUnmounted(() => {
align-items: center; align-items: center;
} }
} }
.right { .right {
width: 320px; width: 320px;
height: 368px; height: 368px;
overflow: hidden; overflow: hidden;
overflow-y: auto; overflow-y: auto;
cursor: pointer; cursor: pointer;
.title { .title {
width: 283px; width: 283px;
min-height: 24px; min-height: 24px;
...@@ -1229,6 +1268,7 @@ onUnmounted(() => { ...@@ -1229,6 +1268,7 @@ onUnmounted(() => {
letter-spacing: 0px; letter-spacing: 0px;
text-align: justify; text-align: justify;
} }
.tag-box { .tag-box {
width: 283px; width: 283px;
margin: 0 auto; margin: 0 auto;
...@@ -1236,6 +1276,7 @@ onUnmounted(() => { ...@@ -1236,6 +1276,7 @@ onUnmounted(() => {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
gap: 8px; gap: 8px;
.tag { .tag {
height: 28px; height: 28px;
padding: 0 8px; padding: 0 8px;
...@@ -1252,6 +1293,7 @@ onUnmounted(() => { ...@@ -1252,6 +1293,7 @@ onUnmounted(() => {
letter-spacing: 0px; letter-spacing: 0px;
} }
} }
.content { .content {
margin: 0 auto; margin: 0 auto;
margin-top: 8px; margin-top: 8px;
...@@ -1271,6 +1313,7 @@ onUnmounted(() => { ...@@ -1271,6 +1313,7 @@ onUnmounted(() => {
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
-webkit-line-clamp: 5; -webkit-line-clamp: 5;
} }
.area-box { .area-box {
width: 283px; width: 283px;
margin: 0 auto; margin: 0 auto;
...@@ -1280,6 +1323,7 @@ onUnmounted(() => { ...@@ -1280,6 +1323,7 @@ onUnmounted(() => {
flex-wrap: wrap; flex-wrap: wrap;
justify-content: flex-start; justify-content: flex-start;
gap: 8px; gap: 8px;
.area { .area {
height: 24px; height: 24px;
padding: 0 8px; padding: 0 8px;
...@@ -1297,6 +1341,7 @@ onUnmounted(() => { ...@@ -1297,6 +1341,7 @@ onUnmounted(() => {
color: rgba(245, 34, 45, 1); color: rgba(245, 34, 45, 1);
} }
} }
.footer { .footer {
width: 283px; width: 283px;
margin: 0 auto; margin: 0 auto;
...@@ -1313,6 +1358,7 @@ onUnmounted(() => { ...@@ -1313,6 +1358,7 @@ onUnmounted(() => {
} }
} }
} }
.inner-box2 { .inner-box2 {
width: 412px; width: 412px;
height: 368px; height: 368px;
...@@ -1321,6 +1367,7 @@ onUnmounted(() => { ...@@ -1321,6 +1367,7 @@ onUnmounted(() => {
border-radius: 10px; border-radius: 10px;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
.chart-header { .chart-header {
position: absolute; position: absolute;
top: 14px; top: 14px;
...@@ -1339,6 +1386,7 @@ onUnmounted(() => { ...@@ -1339,6 +1386,7 @@ onUnmounted(() => {
line-height: 26px; line-height: 26px;
letter-spacing: 0px; letter-spacing: 0px;
} }
.box3Chart { .box3Chart {
width: 412px; width: 412px;
height: 368px; height: 368px;
...@@ -1349,26 +1397,31 @@ onUnmounted(() => { ...@@ -1349,26 +1397,31 @@ onUnmounted(() => {
} }
} }
} }
.area1 { .area1 {
border: 1px solid rgba(217, 247, 190, 1) !important; border: 1px solid rgba(217, 247, 190, 1) !important;
background: rgba(246, 255, 237, 1) !important; background: rgba(246, 255, 237, 1) !important;
color: rgba(56, 158, 13, 1) !important; color: rgba(56, 158, 13, 1) !important;
} }
.area2 { .area2 {
border: 1px solid rgba(135, 232, 222, 1) !important; border: 1px solid rgba(135, 232, 222, 1) !important;
background: rgba(230, 255, 251, 1) !important; background: rgba(230, 255, 251, 1) !important;
color: rgba(19, 168, 168, 1) !important; color: rgba(19, 168, 168, 1) !important;
} }
.area3 { .area3 {
border: 1px solid rgba(145, 202, 255, 1) !important; border: 1px solid rgba(145, 202, 255, 1) !important;
background: rgba(230, 244, 255, 1) !important; background: rgba(230, 244, 255, 1) !important;
color: rgba(22, 119, 255, 1) !important; color: rgba(22, 119, 255, 1) !important;
} }
.area4 { .area4 {
border: 1px solid rgba(173, 198, 255, 1) !important; border: 1px solid rgba(173, 198, 255, 1) !important;
background: rgba(240, 245, 255, 1) !important; background: rgba(240, 245, 255, 1) !important;
color: rgba(47, 84, 235, 1) !important; color: rgba(47, 84, 235, 1) !important;
} }
.area5 { .area5 {
border: 1px solid rgba(211, 173, 247, 1) !important; border: 1px solid rgba(211, 173, 247, 1) !important;
background: rgba(249, 240, 255, 1) !important; background: rgba(249, 240, 255, 1) !important;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论