Blame view

src/views/Home.vue 14.1 KB
1
<template>
2 3 4 5 6 7 8 9 10 11 12
	<div class="home-box">
		<el-container>
			<el-aside :class="{ 'aside-show': isActive }">
				<div class="logo-box" :class="{ 'logo-box-show': isActive }">
					<img
						class="logo-img"
						src="@/assets/images/logo-realestate.png"
						alt=""
					/>
					<span class="logo-text" v-show="!textLogo">不动产权籍调查系统</span>
				</div>
13
				<div class="treeModule"  :style="{height:treeHeight+'px'}">
14 15 16
					<LineTree :pd="pd" @itemClick="itemClick"></LineTree>
				</div>
			</el-aside>
17
			<el-container class="calcWidth">
杨威 committed
18
				<el-header>
19 20
					<div class="header-top">
						<div class="top-items" @click="toggleClick">
21 22
							<i class="iconfont iconsuojin" v-show="!isActive"></i>
							<i class="iconfont iconzhankai" v-show="isActive"></i>
23 24 25 26 27 28 29 30 31 32 33
						</div>
						<div
							class="top-items"
							v-for="(item, index) in headTop"
							:key="index + '1'"
							:class="{ 'is-active': item.select }"
							@click="selectTopItems(index)"
						>
							<i :class="item.icon"></i>
							<span>{{ item.name }}</span>
						</div>
34 35

            <div class="top-items tuOrShu" >
杨威 committed
36 37
              <i class="iconfont iconxinxi" style="color:#006CFF;" title="图形管理" v-if="!isMap" @click="goMap"></i>
              <i class="iconfont iconditu" style="color:#006CFF;" title="属性管理" v-else @click="goBack"></i>
38
            </div>
39
					</div>
杨威 committed
40
					<!-- <div class="header-bottom">
41
						<Navigation ref="navigation"></Navigation>
杨威 committed
42
					</div> -->
杨威 committed
43
					<el-dialog title="新建" :visible.sync="dialogVisible" width="48%">
44
						<Create @closeDialog="closeDialog" :auth="false"></Create>
45 46 47 48 49 50 51
					</el-dialog>
				</el-header>
				<el-main>
					<router-view />
				</el-main>
			</el-container>
		</el-container>
52
		<div class="treeModule-show" :class="{ 'w0': isActive }"></div>
53
	</div>
54 55
</template>
<script>
56 57 58 59 60
import util from "@/libs/util.js";
import Navigation from "../components/IvyElement/navigation";
import Create from "./panel/create/index";
import LineTree from "../components/lineTree/lineTree";
import { setTimeout } from "timers";
61
import { getTree,getDdicByMC,getTreeList,getTreeByBsm,getListMenu } from "../api/common";
weimo934 committed
62

63 64
export default {
	components: {
杨威 committed
65
		// Navigation,
66 67 68 69 70 71 72 73 74 75 76 77
		LineTree,
		Create,
	},
	data() {
		return {
			navigationList: [],
			isActive: false,
			textLogo: false,
			activePath: "",
			defaultActive: "",
			headTop: [
				{
杨威 committed
78 79 80 81
					path: "/panel",
					select: false,
				},
				{
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
					path: "/create",
					select: false,
				},
				{
					path: "/add",
					select: false,
				},
				{
					path: "/modify",
					select: false,
				},
				{
					path: "/change",
					select: false,
				},
				{
					path: "/search",
					select: false,
				},
			],
			tempTab: [
				{
					path: "/zrz",
					name: "自然幢",
				},
				{
					path: "/dz",
					name: "多幢",
				},
				{
					path: "/h",
					name: "户",
				},
				{
					path: "/zd",
					name: "宗地",
				},
			],
			// 上导航选中id
			indId: undefined,
			menuList: [],
			pathAndCodeObj: {
				"/article-draft": "PSH004",
				"/article-publish": "PSH005",
				"/article-recycle": "PSH006",
				"/notice-draft": "PSH007",
				"/notice-publish": "PSH008",
				"/notice-recycle": "PSH009",
				"/column_management": "PSH018",
				"/announcement_template": "PSH019",
				"/business_management": "PSH020",
			},
杨威 committed
134
			pd: [],
135
			dialogVisible: false,
136 137 138
          isMap:false,
			treeHeight:0,
			routerInfo:null
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
		};
	},
	computed: {
		permission_routes() {
			return this.$store.state.permission_routes.navigation;
		},
	},
	watch: {
		"$route.path": function(newPath) {
			//监测路由变化,高亮顶部导航
			this.headTop.forEach((item, index) => {
				item.select = false;
				if (item.path == newPath) {
					item.select = true;
				}
			});
			if (newPath == "/zd") {
156 157 158 159 160 161
				//source为3时代表时分割后的宗地信息
				if(this.$route.query.source == '3'){
					this.getTreeByS(this.$store.state.zdbsms);
				}else{
					this.getRightTree(this.$store.state.zdbsm);
				}
162
			}else if (newPath == "/zrz") {
163
				this.getRightTreeByZrzbsm(this.$store.state.zrzbsm);
164 165
			}else if(newPath == "/dz"){
				this.getRightTreeByDzbsm(this.$store.state.dzbsm);
166 167 168 169 170 171 172
			} else if(newPath == "/viewMap"){
				this.isMap = true;
				if(this.$route.query.type == "zd"){
					this.getRightTree(this.$route.query.bsm);
				}else if(this.$route.query.type == "/zrz"){
					this.getRightTreeByZrzbsm(this.$route.query.bsm);
				}
173
			} else {
174
				this.getTreeList();
zhaoqian committed
175
			}
176
		},
177 178 179
		"$store.state.zdbsm": function(bsm) {
			this.getRightTree(bsm);
		},
180 181 182
		"$store.state.zrzbsm": function(bsm) {
			this.getRightTreeByZrzbsm(this.$store.state.zrzbsm);
		},
183 184 185 186 187
		
		"$store.state.treeData":function (val) {
			console.log(val,'val');
			this.pd = val;
        }
188 189 190
	},
	mounted(){

191 192 193 194 195 196 197 198 199 200 201 202
	},
	created() {
		if (this.$route.meta) {
			this.defaultActive = this.$route.meta.code;
		}
		if (this.permission_routes.length !== 0) {
			this.navigationList = this.permission_routes;
		} else {
			// let list = JSON.parse(util.cookies.get('navigation-1')).concat(JSON.parse(util.cookies.get('navigation')))
			//mock数据
			let list = [
				{
杨威 committed
203
					name: "首页",
204
					icon: "iconfont iconshouye",
杨威 committed
205 206 207
					path: "/panel",
				},
				{
208
					name: "新建",
209
					icon: "iconfont iconxinjian",
210 211 212 213
					path: "/create",
				},
				{
					name: "添加",
214
					icon: "iconfont icontianjia",
215 216
					path: "/add",
				},
217
				{ name: "更正", icon: "iconfont icongengzheng", path: "/modify" },
218 219
				{
					name: "变更",
220
					icon: "iconfont iconbiangeng",
221 222 223 224
					path: "/change",
				},
				{
					name: "综合查询",
225
					icon: "iconfont iconzonghechaxun",
226 227 228 229 230 231 232 233 234 235 236 237
					path: "/search",
				},
			];
			this.navigationList = list;
		}
		this.sortNavigation(this.navigationList, 0);
		// if (util.cookies.get("indId")) {
		// 	let indId = util.cookies.get("indId") - 0;
		// 	this.navSelect(indId);
		// 	this.sortNavigation(this.navigationList, indId);
		// }
		this.getDic();
238 239 240 241 242 243 244 245 246 247
		//刷新页面后根据不同路由获取不同树结构数据
		if(this.$route.path == '/zrz'){
			this.getRightTreeByZrzbsm(this.$store.state.zrzbsm)
		}else if(this.$route.path == '/zd'){
			this.getRightTree(this.$store.state.zdbsm)
		}else{
			this.getTreeList();
		}
		//刷新页面后根据不同路由高亮相对应的导航
		if(this.$route.path == '/zrz' || this.$route.path == '/zd' || this.$route.path == '/dz'){
248

249 250 251 252 253 254 255
		}else{
			this.headTop.forEach(item=>{
				if (item.path == this.$route.path) {
					item.select = true;
				}
			})
		}
256 257 258
		this.$nextTick(()=>{
            this.treeHeight = this.$el.clientHeight - 120;
		});
259 260
	},
	methods: {
261 262 263 264 265 266 267 268
        getTreeByS(zdbsms){
            getListMenu(zdbsms).then(res=>{
                if (res.success) {
                    this.pd=res.result
                }
			})
		},

269 270 271 272 273 274 275 276
		//请求字典数据
		async getDic() {
			let s = this.$store.state;
			s.zjzlList = s.zjzlList.length == 0 ?await this.getDicData("证件种类") : s.zjzlList;
			s.gjList = s.gjList.length == 0 ?await this.getDicData("国家和地区") : s.gjList;
			s.ssList = s.ssList.length == 0 ?await this.getDicData("省市") : s.ssList;
			s.qlrlxList = s.qlrlxList.length == 0 ?await this.getDicData("权利人类型") : s.qlrlxList;
			s.xbList = s.xbList.length == 0 ? await this.getDicData("性别") : s.xbList;
277
			s.sshyList = s.sshyList.length == 0 ?await this.getDicData("所属行业") : s.sshyList;
杨威 committed
278
			s.qllxList = s.qllxList.length == 0 ?await this.getDicData("权利类型") : s.qllxList;
279
			s.zdtzmList = s.zdtzmList.length == 0 ?await this.getDicData("宗地(宗海)特征码") : s.zdtzmList;
杨威 committed
280
			s.qlsdfsList = s.qlsdfsList.length == 0 ?await this.getDicData("权利设定方式") : s.qlsdfsList;
zhaoqian committed
281
            s.gyfsList = s.gyfsList.length == 0 ?await this.getDicData("共有方式") : s.gyfsList;
282 283
			s.qlxzList = s.qlxzList.length == 0 ?await this.getDicData("权利性质") : s.qlxzList;
			s.tdytList = s.tdytList.length == 0 ?await this.getDicData("土地用途") : s.tdytList;
284
			s.fwytList = s.fwytList.length == 0 ?await this.getDicData("房屋用途") : s.fwytList;
285
			s.tddjList = s.tddjList.length == 0 ?await this.getDicData("土地等级") : s.tddjList;
286 287 288 289
			s.fwlxList = s.fwlxList.length == 0 ?await this.getDicData("房屋类型") : s.fwlxList;
			s.hxList = s.hxList.length == 0 ?await this.getDicData("户型") : s.hxList;
			s.hxjgList = s.hxjgList.length == 0 ?await this.getDicData("户型结构") : s.hxjgList;
			s.fwjgList = s.fwjgList.length == 0 ?await this.getDicData("户型结构") : s.fwjgList;
290 291 292 293 294

			s.fwxzOptions = s.fwxzOptions.length == 0 ?await this.getDicData("房屋性质") : s.fwxzOptions;
			s.cbOptions = s.cbOptions.length == 0 ?await this.getDicData("房屋产别") : s.cbOptions;
			s.cqlyOptions = s.cqlyOptions.length == 0 ?await this.getDicData("产权来源") : s.cqlyOptions;
			s.jgOptions = s.jgOptions.length == 0 ?await this.getDicData("房屋结构") : s.jgOptions;
295
			s.gmjjhyflbsmList = s.gmjjhyflbsmList.length == 0 ?await this.getDicData("国民经济行业分类代码") : s.gmjjhyflbsmList;
296 297 298
		},
		async getDicData(name) {
			return await getDdicByMC(name).then((res)=> {
299
					return res.result
300
				   });
杨威 committed
301
		},
302 303 304 305 306 307 308
		getRightTree(bsm) {
			getTree(bsm).then((res) => {
				if (res.success) {
					this.pd = res.result;
				}
			});
		},
309 310

		getRightTreeByZrzbsm(bsm) {
311 312 313 314 315 316 317 318 319
			getTreeByBsm(bsm,"zrz").then((res) => {
				if (res.success) {
					this.pd = res.result;
				}
			});
		},

		getRightTreeByDzbsm(bsm) {
			getTreeByBsm(bsm,"dz").then((res) => {
320 321 322 323 324
				if (res.success) {
					this.pd = res.result;
				}
			});
		},
325

326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
		sortNavigation(data, selectId) {
			let headTop = this.headTop;
			data.forEach((item, index) => {
				headTop[index].name = item.name;
				headTop[index].icon = item.icon;
			});
		},
		// menuSelect(data, selectId) {
		// 	this.menuList = data[selectId].children;
		// },
		handleOpen(key, keyPath) {
			console.log(key, keyPath);
		},
		handleClose(key, keyPath) {
			console.log(key, keyPath);
		},
		toggleClick() {
			this.isActive = !this.isActive;
			if (!this.isActive) {
				setTimeout(() => {
					this.textLogo = this.isActive;
				}, 200);
			} else {
				this.textLogo = this.isActive;
			}
		},
		selectTopItems(ind) {
杨威 committed
353
			if (ind == 1) {
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
				//点击新建,弹框
				this.dialogVisible = true;
			} else {
				this.dialogVisible = false;
				this.indId = ind;
				// this.menuSelect(this.navigationList, ind);
				// this.$store.dispatch("setTabs/init_tabs");
				// this.$store.dispatch("setTabs/set_active_index", "/panel");
				this.$router.push(this.headTop[ind].path);
				this.navSelect(ind);
				// util.cookies.set("indId", ind);
			}
		},
		// 上导航选中id
		navSelect(id) {
			this.headTop.forEach((item, index) => {
				item.select = false;
				if (index == id) {
					item.select = true;
				}
			});
		},
		//树控件点击事件
		itemClick(data) {
			console.log(data);
		},
		//关闭新建子组件弹框
		closeDialog() {
			this.dialogVisible = false;
		},
zhaoqian committed
384 385 386 387
		getTreeList(){
			getTreeList().then((res)=>{
				this.pd=res.result;
			})
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
		},
    goBack(){
		  this.isMap = false;
		  var curretRouterInfo = JSON.parse(sessionStorage.getItem("curretRouterInfo"));
      //this.$router.back(-1);
		if(curretRouterInfo){
			this.$router.push({
				path: curretRouterInfo.path,
				query: curretRouterInfo.query
			});
		}else {
			this.$router.back(-1);
		}

    },
    goMap(){
		var curretRouterInfo = {
			path:this.$route.path,
			query:this.$route.query
zhaoqian committed
407
		}
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
		sessionStorage.setItem('curretRouterInfo',JSON.stringify(curretRouterInfo));
		this.isMap = true;
		var routerQuery = null;
		var path = this.$route.path;
		if(path == "/zd"){
			routerQuery = {
				bsm:this.$route.query.bsm,
				type:"zd"
			}
		}else if(path == "/zrz"){
			routerQuery = {
				bsm:this.$route.query.bsm,
				type:"zrz"
			}
		}
		this.$router.push({
			path: "/viewMap",
			query: routerQuery
		});
    }
428 429
	},
};
430 431
</script>
<style lang="less" scoped>
432 433 434
.home-box {
	width: 100%;
	height: 100vh;
435
	position: relative;
436 437
    min-width: 1500px;
    overflow-x: auto;
438 439 440
	.calcWidth{
		width: calc(100% - 300px);
	}
441 442 443 444 445 446 447 448
	.el-container {
		height: 100%;
	}
	.el-header {
		background-color: #fff;
		padding: 0 !important;
		.header-top {
			height: 60px;
杨威 committed
449
			border-bottom: 1px solid#EAEAEA;
450 451 452 453 454 455 456 457 458 459 460 461
			box-sizing: border-box;
			.top-items {
				cursor: pointer;
				height: 60px;
				padding: 0 30px;
				font-size: 16px;
				line-height: 60px;
				float: left;
				position: relative;
				color: #4a4a4a;
				i {
					margin-right: 6px;
462 463 464
					font-size: 18px;
					position: relative;
					top: 1px;
465 466 467 468 469 470 471 472 473
				}
				.hamburger {
					font-size: 16px;
					line-height: 60px;
					color: #000;
				}
			}
			.top-items.is-active {
				color: #006cff;
杨威 committed
474 475
				border-left: 1px solid #EAEAEA;
    			border-right: 1px solid #EAEAEA;
476
				height: 58px;
杨威 committed
477
				border-bottom: 1px solid #FFF;
478 479 480 481 482 483 484 485
			}
		}
		.header-bottom {
			height: 50px;
			box-shadow: 0px 2px 4px 0px rgba(222, 222, 222, 0.7);
			border-bottom: 1px solid rgba(234, 234, 234, 1);
			box-sizing: border-box;
		}
486 487 488 489 490 491 492

    .tuOrShu{
      float: right !important;
      .iconfont{
        font-size: 21px;
      }
    }
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
	}
	.el-aside {
		width: 290px !important;
		background-color: #1d50dd;
		color: #333;
		// text-align: center;
		overflow: hidden;
		transition: width 0.3s;
		.logo-box {
			width: 100%;
			height: 120px;
			border-bottom: 1px solid rgba(255, 255, 255, 0.2);
			padding: 30px 0 28px 0;
			box-sizing: border-box;
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			align-items: center;
			transition: width 0.3s;
			.logo-img {
				width: 38px;
				height: 38px;
			}
			.logo-text {
				font-size: 14px;
				color: rgba(255, 255, 255, 1);
				line-height: 14px;
			}
		}
		.treeModule {
			box-sizing: border-box;
			padding: 20px 20px;
		}
		.logo-box-show {
			width: 64px;
		}
		.el-menu {
			border-right: 0;
		}
		.el-submenu .el-menu-item {
			text-align: left;
			text-indent: 15px;
		}
	}
	.aside-show {
		width: 64px !important;
	}
540

541
	.el-main {
杨威 committed
542
    	background-color: #EAEDF5;
543 544 545 546 547
		color: #333;
		// text-align: center;
		// line-height: 160px;
		padding: 0;
	}
548

549
	.treeModule-show{
550
		width: 290px;
551 552 553 554 555 556 557 558
		height: calc(100% - 120px);
		position: absolute;
		top: 120px;
		left: 0;
		z-index: 1;
		pointer-events: none;
		-webkit-box-shadow: inset -14px 0px 16px red;
		box-shadow: inset -23px 0px 16px #1d50dd;
559 560 561 562 563 564
		transition: 0.3s;
		display: none;
	}
	.w0{
		display: block;
		width: 64px;
565
	}
566
}
567
</style>