123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840 |
- <template>
- <div id="LayoutContent" @contextmenu.prevent="">
- <MapHolder ref="mapLoaderRef"></MapHolder>
- <Header @navSelect="navSelect" @initMenu="initMenu"></Header>
- <!-- 全流程管理 4 -->
- <div id="stepsBox" v-if="$ifMenu('4', '')">
- <WholeProcessManagement />
- </div>
- <!-- 底部菜单 2 -- 疑点筛查 -->
- <div id="leftMenusB" v-show="$ifMenu('3', '')">
- <BottomMenus />
- </div>
- <!-- 镇域专题 -->
- <div id="TownContainer" v-show="$ifMenu('2', '')">
- <Legend
- id="TownContainer_bottomLegend"
- :legendData="{
- boxWidth: '150',
- boxHeight: '180',
- menuIndex: '2',
- subMenuIndex: '5',
- legendIcon: legendIcon,
- legendTitle: legendTitle,
- }"
- />
- <div
- class="select-title"
- :style="{ left: $ifMenu('2', '5') ? '20px' : 'calc(50% - 80px)' }"
- >
- 所属街道
- </div>
- <NewSelect
- class="select-container"
- :style="{ left: $ifMenu('2', '5') ? '100px' : '50%' }"
- @selectEvent="specialTownSelect"
- v-model="streetSelectVal"
- :options="streetOptions"
- :value="streetSelectVal"
- />
- </div>
- <!-- 综合分析 -->
- <ComprehensiveAnalysis
- id="ComprehensiveContainer"
- v-show="$ifMenu('3', '')"
- />
- <!-- 消息提醒 -->
- <MessageList id="MessageListContainer" v-if="$ifMenu('6', '')" />
- <!-- 法律法规 -->
- <LawView id="LawContainer" v-if="$ifMenu('5', '1')" />
- <!-- 历史问题 -->
- <FrequencyView id="FrequencyContainer" v-if="$ifMenu('5', '2')" />
- <!-- 指标体系 -->
- <IndexSystem id="IndexSystemContainer" v-if="$ifMenu('5', '3')" />
- <!-- 资金投入 -->
- <CapitalInput id="CapitalInputContainer" v-if="$ifMenu('5', '4')" />
- <!-- Home页面(因为客户要求需要动画,所以不能用v-if控制首页元素的显示与隐藏,而是改为组件内部动态v-show控制元素的样式) -->
- <!-- 左侧菜单列 -- 首页 -->
- <div id="leftMenus">
- <MenuCard v-for="item in menus.left" :menuData="item" :key="item.title" />
- </div>
- <!-- 左侧菜单列(较宽,两列) -- 疑点筛查 -->
- <div id="leftMenusW" v-for="(item, index) in menus.leftW" :key="index">
- <MenuCard :menuData="item2" v-for="item2 in item" :key="item2.title">
- </MenuCard>
- </div>
- <!-- 中部菜单列 -->
- <div id="mainMenus">
- <div id="mainMenus_topLeft" v-if="$ifMenu('1', '')">所属街道</div>
- <NewSelect
- id="mainMenus_topSelect"
- v-model="streetSelectVal"
- :options="streetOptions"
- :value="streetSelectVal"
- @selectEvent="homeSelect"
- v-if="$ifMenu('1', '')"
- />
- <div
- id="mainMenus_topRight"
- v-if="menus.main[0]"
- v-show="$ifMenu('1', '')"
- >
- <MenuCard :menuData="menus.main[0]">
- <div class="bar-btn">
- <div
- class="btn-style"
- v-for="item in buttonData"
- :key="item"
- @click="clickEvent(item)"
- :class="{ 'button-selected': item === btnChecked }"
- >
- {{ item }}
- </div>
- </div>
- <div class="bar-content">
- <BarChart
- ref="barChartRef"
- class="bar"
- :categoryData="categoryData"
- :soilValueData="soil"
- :otherValueData="other"
- :forestryValueData="forestry"
- :sourceType="btnChecked"
- />
- </div>
- </MenuCard>
- </div>
- <Legend
- id="mainMenus_bottomLegend"
- :legendData="{
- boxWidth: '150',
- boxHeight: '180',
- menuIndex: '1',
- legendIcon: legendIcon,
- legendTitle: legendTitle,
- }"
- />
- </div>
- <!-- 首页右侧菜单列 -->
- <div
- class="rightMenus"
- v-for="(item, index) in menus.right"
- :key="'rightBox' + index"
- >
- <MenuCard
- :menuData="item2"
- v-for="(item2, index2) in item"
- :key="'right' + index2"
- >
- </MenuCard>
- </div>
- <!-- 首页右侧菜单列 -->
- <div
- class="rightMenusW"
- v-for="(item, index) in menus.rightW"
- :key="'rightBoxW' + index"
- >
- <MenuCard
- :menuData="item2"
- v-for="(item2, index2) in item"
- :key="'rightW' + index2"
- >
- </MenuCard>
- </div>
- </div>
- </template>
- <script>
- import MapHolder from "@/components/map/MapHolder.vue";
- import Header from "@/components/layout/Header.vue";
- import MenuCard from "@/components/layout/MenuCard.vue";
- import NewSelect from "@/components/common/NewSelect.vue";
- import BarChart from "@/components/chart/BarChart.vue";
- import { street, menuOnLine } from "@/config/common";
- import publicFun from "@/utils/publicFunction.js";
- import TagCard from "@/components/common/TagCard";
- import ChartCard from "@/components/common/ChartCard.vue";
- import TopCard from "@/components/common/TopCard";
- import BottomMenus from "@/components/common/BottomMenus";
- // 图例
- import Legend from "@/components/map/Legend.vue";
- // 综合分析
- import ComprehensiveAnalysis from "@/views/ComprehensiveAnalysis.vue";
- import TagProblemCard from "@/components/common/TagProblemCard.vue";
- // 全流程管理
- import WholeProcessManagement from "@/components/common/WholeProcessManagement.vue";
- // 智能辅助 -- 历史问题
- import FrequencyView from "@/views/FrequencyView.vue";
- import IndexSystem from "@/views/IndexSystem.vue";
- import CapitalInput from "@/views/CapitalInput.vue";
- // 智能辅助 -- 法律法规
- import LawView from "@/views/LawView.vue";
- import MessageList from "@/views/MessageList.vue";
- import { removeWatermark, setWaterMark } from "@/utils/watermark";
- import MessageListVue from "./MessageList.vue";
- export default {
- name: "HomeView",
- components: {
- MapHolder,
- Header,
- MenuCard,
- NewSelect,
- BarChart,
- TagCard,
- ChartCard,
- TopCard,
- BottomMenus,
- ComprehensiveAnalysis,
- TagProblemCard,
- Legend,
- WholeProcessManagement,
- FrequencyView,
- LawView,
- IndexSystem,
- CapitalInput,
- MessageList,
- },
- data() {
- return {
- classTextToIndex: {},
- tagCardData3: {
- type: "lr",
- title: "林地面积",
- value: 654,
- unit: "公顷",
- },
- testTitle: "土地资源",
- activeIndex: 1,
- // 菜单配置,后期最好根据用户权限通过后台动态返回。
- menus: {
- left: [],
- leftW: [],
- main: [],
- right: [],
- },
- // 首页饼图相关
- buttonData: ["A", "B", "C"],
- legendTitle: [
- {
- name: "A类",
- info: "耕地林地总和占镇域面积约 45%以上,或超过3000公顷",
- },
- {
- name: "B类",
- info: "有一定的自然资源资产(耕地林地总和 900-3000公项)",
- },
- {
- name: "C类",
- info: "自然资源资产较少(耕地林地总和低于 900公项)",
- },
- ],
- // legendData: ["#E565FF", "#0055FF", "#00FFD5"],
- legendIcon: [
- {
- background: "#E565FF",
- border: "none",
- },
- {
- background: "#0055FF",
- border: "none",
- },
- {
- background: "#00FFD5",
- border: "none",
- },
- ],
- btnChecked: "A",
- soil: [],
- other: [],
- forestry: [],
- categoryData: [],
- AData: {
- soil: [],
- other: [],
- forestry: [],
- categoryData: [],
- },
- BData: {
- soil: [],
- other: [],
- forestry: [],
- categoryData: [],
- },
- CData: {
- soil: [],
- other: [],
- forestry: [],
- categoryData: [],
- },
- streetSelectVal: "全部",
- streetOptions: [],
- // 街镇专题
- townCollection: [
- { name: "土地资源问题", num: 67 },
- { name: "水资源问题", num: 37 },
- { name: "林地资源问题", num: 60 },
- { name: "生态资源问题", num: 55 },
- ],
- // 综合分析
- analysis: {
- searchInput: "",
- },
- };
- },
- mounted() {
- // 首先获取数据字典中的下拉框数据
- this.selectSelectData("0", "浦东新区行政区划", "associatedItems");
- let markName = localStorage.getItem("USER_NAME");
- let markDate = this.$dayjs().format("YYYY-MM-DD");
- if (markName && markDate) {
- setWaterMark(markName, markDate);
- }
- },
- beforeDestroyed() {
- removeWatermark();
- },
- methods: {
- classDictQuery(type, cName, keyName) {
- let params = new FormData();
- params = {
- type: type,
- cName: cName,
- };
- this.$Post(this.urlsCollection.selectByCNameAType, params).then((res) => {
- if (res.code === 200 && res.content.length > 0) {
- this.classTextToIndex[keyName] = new Map();
- res.content.forEach((v) => {
- this.classTextToIndex[keyName].set(v.index + "", v.name);
- });
- }
- });
- },
- initMenu(menus) {
- this.menus = menuOnLine;
- setTimeout(() => {
- this.getSourcesData();
- }, 300);
- },
- navSelect: function (data) {
- this.$store.commit("changeNavSelect", data);
- this.$store.commit("changeBackMenu", {});
- },
- clickEvent(type) {
- this.btnChecked = type;
- switch (type) {
- case "A":
- this.soil = this.AData.soil;
- this.other = this.AData.other;
- this.forestry = this.AData.forestry;
- this.categoryData = this.AData.categoryData;
- break;
- case "B":
- this.soil = this.BData.soil;
- this.other = this.BData.other;
- this.forestry = this.BData.forestry;
- this.categoryData = this.BData.categoryData;
- break;
- case "C":
- this.soil = this.CData.soil;
- this.other = this.CData.other;
- this.forestry = this.CData.forestry;
- this.categoryData = this.CData.categoryData;
- break;
- }
- },
- // 数据字典查询
- selectSelectData(type, cName, keyName) {
- let params = new FormData();
- params.append("type", type);
- params.append("cName", cName);
- this.$Post(this.urlsCollection.selectByCNameAType, params).then(
- (res) => {
- if (res.code === 200 && res.content.length > 0) {
- this.$store.state.selectSelectDataMap[keyName] = res.content;
- }
- },
- (error) => {
- this.$message.error(error);
- console.log(error);
- }
- );
- },
- // home页面下拉框
- homeSelect(val) {
- this.$store.commit("changeHomeSpecialTown", val);
- if (val === "全部") {
- this.$refs.mapLoaderRef.setView(townLocationMap.get(val), 1);
- } else {
- let polygon = townPolygonMap.get(val);
- map2DViewer.map.fitBounds(polygon.getBounds());
- }
- },
- // 镇域专题下拉框
- specialTownSelect(val) {
- this.$store.commit("changeHomeSpecialTown", val);
- if (val === "全部") {
- let locationArr = townLocationMap.get(val);
- this.$refs.mapLoaderRef.setView(
- [locationArr[0], locationArr[1] + 0.15],
- 1
- );
- } else {
- let polygon = townPolygonMap.get(val);
- map2DViewer.map.fitBounds(polygon.getBounds());
- }
-
- },
- // 获取自然资源分类数据接口(24个镇的数据)
- getSourcesData() {
- // town_type -- A:1; B:2; C:3;
- let params = new FormData();
- params = {
- columnId: 30,
- states: "0,1,2,3",
- pageSize: 30,
- page: 0,
- };
- this.$Post(this.urlsCollection.selectContentList, params)
- .then((res) => {
- if (res.code === 200 && res.content.data.length > 0) {
- // console.log(res.content.data, "getSourcesData接口获取成功");
- this.soil = [];
- this.other = [];
- this.forestry = [];
- let data = res.content.data;
- let ADataArr = [];
- let BDataArr = [];
- let CDataArr = [];
- data.map((v) => {
- if (v.zy_type === "0") {
- ADataArr.push({
- name: this.classTextToIndex["浦东新区行政区划"].get(
- v.zy_town
- ),
- soil: v.c_land_area,
- other: v.other_area,
- forest: v.c_forest_area,
- sum: v.c_land_area + v.other_area + v.c_forest_area,
- });
- }
- if (v.zy_type === "1") {
- BDataArr.push({
- name: this.classTextToIndex["浦东新区行政区划"].get(
- v.zy_town
- ),
- soil: v.c_land_area,
- other: v.other_area,
- forest: v.c_forest_area,
- sum: v.c_land_area + v.other_area + v.c_forest_area,
- });
- }
- if (v.zy_type === "2") {
- CDataArr.push({
- name: this.classTextToIndex["浦东新区行政区划"].get(
- v.zy_town
- ),
- soil: v.c_land_area,
- other: v.other_area,
- forest: v.c_forest_area,
- sum: v.c_land_area + v.other_area + v.c_forest_area,
- });
- }
- });
- ADataArr.sort(publicFun.compare("sum"));
- BDataArr.sort(publicFun.compare("sum"));
- CDataArr.sort(publicFun.compare("sum"));
- // 按A,B,C分出各自资源的排序数组
- ADataArr.forEach((item) => {
- this.AData.soil.push(item.soil);
- this.AData.other.push(item.other);
- this.AData.forestry.push(item.forest);
- this.AData.categoryData.push(item.name);
- });
- BDataArr.forEach((item) => {
- this.BData.soil.push(item.soil);
- this.BData.other.push(item.other);
- this.BData.forestry.push(item.forest);
- this.BData.categoryData.push(item.name);
- });
- CDataArr.forEach((item) => {
- this.CData.soil.push(item.soil);
- this.CData.other.push(item.other);
- this.CData.forestry.push(item.forest);
- this.CData.categoryData.push(item.name);
- });
- this.$nextTick(() => {
- if (this.$refs.barChartRef) {
- this.$refs.barChartRef.initEchart(
- this.AData.categoryData,
- this.AData.soil,
- this.AData.forestry,
- this.AData.other
- );
- }
- });
- }
- })
- .catch((error) => {
- console.log(error, "getSourcesData");
- });
- },
- },
- created() {
- this.classDictQuery("0", "浦东新区行政区划", "浦东新区行政区划");
- // 街道下拉框
- for (let key in street) {
- this.streetOptions.push({
- value: street[key],
- label: street[key],
- });
- }
- },
- };
- </script>
- <style lang="less" scoped>
- @commonBorderColor: #00aaff;
- #LayoutContent {
- position: relative;
- width: 100%;
- height: 100%;
- box-sizing: border-box;
- overflow: hidden;
- // background-color: rgb(0, 47, 71);
- }
- /* 镇域专题 */
- #TownContainer {
- position: relative;
- height: calc(100% - 60px);
- width: 100%;
- top: 60px;
- z-index: 999;
- pointer-events: none;
- &_bottomLegend {
- position: absolute;
- color: #fff;
- left: 60px;
- bottom: 30px;
- pointer-events: auto;
- }
- .select-title {
- position: absolute;
- left: 60px;
- top: 30px;
- width: 80px;
- height: 30px;
- color: #fff;
- line-height: 30px;
- font-size: 18px;
- cursor: auto;
- pointer-events: auto;
- }
- .select-container {
- position: absolute;
- left: 150px;
- top: 33px;
- cursor: pointer;
- pointer-events: auto;
- }
- .town-right-problems {
- position: absolute;
- right: 10px;
- top: 25px;
- pointer-events: auto;
- }
- .town-problems {
- position: absolute;
- right: 10px;
- width: 800px;
- height: 100%;
- color: #fff;
- pointer-events: auto;
- &-top {
- width: 100%;
- height: 220px;
- display: flex;
- align-items: center;
- justify-content: center;
- &-inner {
- width: 100%;
- height: 130px;
- display: flex;
- align-items: center;
- justify-content: space-around;
- .problem-item {
- width: 170px;
- height: 100px;
- }
- }
- }
- &-bottom {
- // background: plum;
- width: 100%;
- height: calc(95% - 220px);
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- }
- }
- /* 综合分析 */
- #ComprehensiveContainer {
- position: relative;
- height: calc(100% - 60px);
- width: 100%;
- top: 60px;
- z-index: 999;
- pointer-events: none;
- }
- /* 法律法规 */
- #LawContainer {
- position: relative;
- height: calc(100% - 60px);
- width: 100%;
- top: 60px;
- z-index: 999;
- background: rgba(0, 0, 0, 0.9);
- }
- #MessageListContainer {
- position: relative;
- height: calc(100% - 60px);
- width: 100%;
- top: 60px;
- z-index: 999;
- background: rgba(0, 0, 0, 0.9);
- }
- /* 法律法规详细细节弹窗 */
- // #LawDetailsContainer {
- // position: absolute;
- // height: calc(90% - 60px);
- // width: 50%;
- // top: 80px;
- // z-index: 999;
- // left: 25%;
- // }
- /* 历史问题 */
- #FrequencyContainer,
- #IndexSystemContainer,
- #CapitalInputContainer {
- position: relative;
- height: calc(100% - 60px);
- width: 100%;
- top: 60px;
- z-index: 999;
- background: rgba(0, 0, 0, 0.9);
- }
- /* Home目录 -- 左侧菜单列 */
- #leftMenus {
- position: absolute;
- left: 5px;
- top: 60px;
- width: 420px;
- padding-right: 10px;
- margin-right: 10px;
- height: calc(100% - 60px);
- box-sizing: border-box;
- overflow-x: hidden;
- overflow-y: auto;
- scrollbar-width: none; /* Firefox */
- -ms-overflow-style: none; /* IE 10+ */
- &::-webkit-scrollbar {
- display: none; /* Chrome Safari */
- }
- }
- #leftMenusW {
- position: absolute;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- align-content: flex-start;
- left: 5px;
- top: 60px;
- width: 870px;
- padding-right: 10px;
- margin-right: 10px;
- height: calc(100% - 65px);
- float: left;
- box-sizing: border-box;
- overflow-x: hidden;
- overflow-y: auto;
- scrollbar-width: none; /* Firefox */
- -ms-overflow-style: none; /* IE 10+ */
- &::-webkit-scrollbar {
- display: none; /* Chrome Safari */
- }
- }
- // 底部菜单定位
- #leftMenusB {
- position: absolute;
- top: 0;
- width: 100%;
- height: 100%;
- }
- #stepsBox {
- position: absolute;
- top: 0;
- width: 100%;
- height: 100%;
- }
- #mainMenus {
- position: absolute;
- left: 430px;
- top: 60px;
- width: calc(100% - 850px);
- height: calc(100% - 60px);
- box-sizing: border-box;
- &_topLeft {
- position: absolute;
- left: 20px;
- top: 30px;
- font-size: 18px;
- z-index: 99999;
- color: #fff;
- }
- &_bottomLegend {
- position: absolute;
- left: 20px;
- bottom: 30px;
- color: #fff;
- }
- &_topSelect {
- position: absolute;
- left: 100px;
- top: 30px;
- z-index: 3;
- }
- &_topRight {
- position: absolute;
- right: 10px;
- top: 30px;
- z-index: 3;
- overflow: hidden;
- .bar-btn {
- width: 100%;
- height: 10%;
- display: flex;
- align-items: center;
- justify-content: center;
- .btn-style {
- width: 65px;
- height: 35px;
- background: url("../assets/home/btn_unselected.png") no-repeat center;
- margin-bottom: 2px;
- cursor: pointer;
- border-radius: 3px;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- }
- .button-selected {
- background: url("../assets/home/btn_selected.png") no-repeat center;
- }
- }
- .bar-content {
- width: 100%;
- height: 90%;
- background: rgba(100, 100, 100, 0);
- .bar {
- width: 340px;
- height: 276.94px;
- }
- }
- }
- }
- // 右侧菜单列
- .rightMenus {
- position: absolute;
- right: 10px;
- top: 60px;
- width: 420px;
- height: calc(100% - 60px);
- box-sizing: border-box;
- overflow-x: hidden;
- overflow-y: auto;
- scrollbar-width: none; /* Firefox */
- -ms-overflow-style: none; /* IE 10+ */
- &::-webkit-scrollbar {
- display: none; /* Chrome Safari */
- }
- }
- // 右侧菜单列
- .rightMenusW {
- position: absolute;
- right: 0;
- top: 60px;
- width: 820px;
- float: left;
- height: calc(100% - 60px);
- box-sizing: border-box;
- overflow-x: hidden;
- overflow-y: auto;
- display: flex;
- overflow-y: auto;
- scrollbar-width: none;
- -ms-overflow-style: none;
- flex-wrap: wrap;
- align-items: flex-start;
- align-content: flex-start;
- scrollbar-width: none; /* Firefox */
- -ms-overflow-style: none; /* IE 10+ */
- &::-webkit-scrollbar {
- display: none; /* Chrome Safari */
- }
- }
- .menuCardFlex {
- display: flex;
- align-content: center;
- align-items: center;
- justify-content: space-between;
- flex-wrap: nowrap;
- position: relative;
- .borders {
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%) rotate(45deg);
- width: 110px;
- height: 100px;
- background: linear-gradient(to left, @commonBorderColor, @commonBorderColor)
- left top no-repeat,
- linear-gradient(to bottom, @commonBorderColor, @commonBorderColor) left
- top no-repeat,
- linear-gradient(to left, @commonBorderColor, @commonBorderColor) right top
- no-repeat,
- linear-gradient(to bottom, @commonBorderColor, @commonBorderColor) right
- top no-repeat,
- linear-gradient(to left, @commonBorderColor, @commonBorderColor) left
- bottom no-repeat,
- linear-gradient(to bottom, @commonBorderColor, @commonBorderColor) left
- bottom no-repeat,
- linear-gradient(to left, @commonBorderColor, @commonBorderColor) right
- bottom no-repeat,
- linear-gradient(to left, @commonBorderColor, @commonBorderColor) right
- bottom no-repeat;
- background-size: 6px 6px, 6px 6px, 6px 6px, 6px 6px;
- }
- }
- </style>
|