| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- <template>
- <div class="base-container no-events">
- <fnHeader></fnHeader>
- <div class="content">
- <!-- <div class="top"></div> -->
- <div class="left yes-events">
- <div class="chart-list">
- <div class="chart-item">
- <chart-box name="地形风险" arrow="left">
- <template #title-right>
- <div>
- <el-select
- v-model="topographicValue"
- placeholder="请选择"
- style="width: 86px"
- >
- <el-option
- v-for="item in topographicOptions"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </div>
- </template>
- <div class="topographic-content">
- <bar-chart
- styleName="styleName1"
- :xData="evaluateXData"
- :yData="evaluateYData"
- ></bar-chart>
- <div class="text-list box-bg">
- <div class="text-item" v-for="item in 3" :key="item">
- <div class="circle"></div>
- <div class="txt">
- 高温Ⅰ级<span>26</span>棵
- </div>
- </div>
- </div>
- </div>
- </chart-box>
- </div>
- <div class="chart-item">
- <chart-box name="气象预警" arrow="left">
- <div class="topographic-content">
- <bar-chart
- styleName="styleName1"
- :xData="evaluateXData"
- :yData="evaluateYData"
- ></bar-chart>
- <div class="text-list box-bg">
- <div class="text-item" v-for="item in 3" :key="item">
- <div class="circle"></div>
- <div class="txt">
- 桂味<span>15626</span>棵(树龄3.5年)
- </div>
- </div>
- </div>
- </div>
- </chart-box>
- </div>
- <div class="chart-item">
- <chart-box name="气象预警" arrow="left"></chart-box>
- </div>
- <div class="chart-item">
- <chart-box name="气象预警" arrow="left"></chart-box>
- </div>
- </div>
- </div>
- <div class="home-bottom">
- <div class="file-box yes-events">
- <chart-box name="果园档案">
- <template #title-right>
- <el-icon class="arrow-icon cursor-pointer" color="#141414"
- ><DArrowLeft
- /></el-icon>
- <div class="edit-btn cursor-pointer" @click="goBack">返回</div>
- </template>
- <file-bar>
- <div class="btn-list">
- <div class="btn-item">新增</div>
- <div class="btn-item">筛选</div>
- <div class="btn-item">撤销</div>
- <div class="btn-item">保存</div>
- </div>
- </file-bar>
- </chart-box>
- </div>
- </div>
- <div class="right yes-events">
- <div class="chart-list">
- <div class="chart-item">
- <chart-box name="气象预警" arrow="arrow-left"></chart-box>
- </div>
- <div class="chart-item">
- <chart-box name="气象预警" arrow="arrow-left"></chart-box>
- </div>
- <div class="chart-item">
- <chart-box name="气象预警" arrow="arrow-left"></chart-box>
- </div>
- <div class="chart-item">
- <chart-box name="气象预警" arrow="arrow-left"></chart-box>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div ref="mapRef" class="bottom-map"></div>
- </template>
- <script setup>
- import { onMounted, ref } from "vue";
- import fnHeader from "@/components/fnHeader.vue";
- import chartBox from "@/components/chartBox.vue";
- import fileBar from "@/components/fileBar.vue";
- import barChart from "@/components/charts/barChart.vue";
- import FileMap from "./fileMap";
- import router from "@/router";
- let fileMap = new FileMap();
- const mapRef = ref();
- const topographicValue = ref("高温风险");
- const topographicOptions = ref([
- { label: "高温风险", value: "高温风险" },
- { label: "病害风险", value: "病害风险" },
- { label: "虫害风险", value: "虫害风险" },
- { label: "阴雨寡照", value: "阴雨寡照" },
- ]);
- // 地形风险
- const evaluateXData = ["Ⅰ级", "Ⅱ级", "Ⅲ级"];
- const evaluateYData = [33, 41, 43];
- onMounted(() => {
- let location = "POINT (113.78049350268851 23.419886891845312)";
- fileMap.initMap(location, mapRef.value);
- });
- // 返回
- const goBack = () => {
- router.replace("/home");
- };
- </script>
- <style lang="scss" scoped>
- .base-container {
- width: 100%;
- height: 100vh;
- color: #fff;
- position: absolute;
- box-sizing: border-box;
- z-index: 1;
- .content {
- width: 100%;
- height: calc(100% - 74px - 48px);
- display: flex;
- justify-content: space-between;
- box-sizing: border-box;
- .left,
- .right {
- width: 375px;
- height: 100%;
- padding-top: 10px;
- box-sizing: border-box;
- display: flex;
- padding-left: 15px;
- .chart-list {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .chart-item {
- width: 100%;
- height: calc(100% / 4);
- box-sizing: border-box;
- margin-bottom: 10px;
- &.chart-item:last-child {
- margin: 0;
- }
- }
- }
- .topographic-content {
- width: 100%;
- height: calc(100% - 10px);
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 10px;
- .text {
- font-weight: 400;
- padding: 8px 0 4px 5px;
- text-indent: 2em;
- margin-left: 8px;
- span {
- color: #69bdff;
- }
- }
- .box-bg {
- border-radius: 2px 2px 0 0;
- font-size: 12px;
- padding: 8px 6px;
- box-sizing: border-box;
- background: linear-gradient(
- 180deg,
- rgb(85, 85, 85, 0.4) 0%,
- rgb(35, 35, 35, 1) 100%
- );
- }
- }
- .text-list {
- flex: none;
- margin: 0 16px;
- .text-item {
- display: flex;
- align-items: center;
- margin-bottom: 5px;
- .circle {
- width: 4px;
- height: 4px;
- background: rgba(255, 255, 255, 0.44);
- border-radius: 50%;
- margin-right: 6px;
- }
- .txt {
- font-size: 12px;
- span{
- margin: 0 2px 0 6px;
- color: #E8BA52;
- }
- }
- }
- }
- }
- .right {
- .list {
- width: 100%;
- height: 100%;
- }
- }
- .home-bottom {
- display: flex;
- align-items: flex-end;
- width: calc(100% - 375px - 375px - 72px);
- height: 100%;
- justify-content: flex-end;
- .file-box {
- height: 25%;
- min-height: 210px;
- width: 422px;
- position: relative;
- box-shadow: 0 0 3px 3px #2199f8;
- .arrow-icon {
- top: -32px;
- left: 50%;
- position: absolute;
- background: #fff;
- width: 16px;
- height: 80px;
- line-height: 80px;
- border-radius: 5px 0 0 5px;
- text-align: center;
- transform: translateX(-50%) rotate(270deg);
- }
- .edit-btn {
- padding: 2px 24px;
- background: #2199f8;
- border-radius: 4px;
- }
- .btn-list {
- position: absolute;
- right: 4px;
- .btn-item {
- background: #4f4f4f;
- border-radius: 4px;
- padding: 2px 24px;
- margin-bottom: 16px;
- &:last-child {
- margin-bottom: 0;
- }
- }
- }
- }
- }
- }
- }
- .bottom-map {
- width: 100%;
- height: 100vh;
- position: absolute;
- z-index: 0;
- }
- </style>
|