qlr.vue 22.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 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 353 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 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 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 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
<template>
	<div class="temp">
		<table class="tempTable" cellspacing="0" cellpadding="0" border="1">
			<tr>
				<td colspan="2"><span class="table-title">权利人信息</span></td>
				<td colspan="2">共有方式</td>
				<td colspan="8">
					<el-row>
						<el-col :span="14" class="fl" style="line-height:32px">
							<el-radio-group v-model="gyfs" @change="updateGyfs">
								<el-radio :label="item.bsm" :disabled="+qszt!==0 || item.disabled" :key="item.bsm" v-for="item in gyfsList">{{item.mc}}</el-radio>
							</el-radio-group>
						</el-col>
						<el-col :span="10" class="fr">
						<!--	<div  v-show="qszt=='0'" class="fr" style="margin-right:20px">
								<el-button class="qlrBtn" size="mini" @click="addRow">
									<i class="iconfont iconxinzeng"></i> 新增
								</el-button>
								<el-button class="qlrBtn" size="mini" @click="changeRow">
									<i class="iconfont iconbianji"></i> 编辑
								</el-button>
								<el-button class="qlrBtn" size="mini" @click="delRow">
									<i class="iconfont iconshanchu"></i> 删除
								</el-button>
							</div>-->
							<div v-show="+qszt === 0" class="fr" style="margin-right:20px">
								<el-button class="qlrBtn" size="mini" :disabled="+qszt!==0 || (tableData.length>0 && gyfs ==='PSHGSBDCQJDC000000000000DC340010')   " @click="addRow">
									<i class="iconfont iconxinzeng" :disabled="+qszt!==0"></i> 新增
								</el-button>
								<el-button class="qlrBtn" size="mini" :disabled="+qszt!==0" @click="changeRow">
									<i class="iconfont iconbianji"></i> 编辑
								</el-button>
								<el-button class="qlrBtn" size="mini" :disabled="+qszt!==0" @click="delRow">
									<i class="iconfont iconshanchu"></i> 删除
								</el-button>
							</div>
						</el-col>
					</el-row>
				</td>
			</tr>
		</table>

		<el-table
			class="qlrTable"
			:data="tableData"
			style="width: 100%"
			@selection-change="handleSelectionChange"
			@row-dblclick="rowDbclick"
			border
		>
			<el-table-column type="selection" width="40" align="center">
			</el-table-column>
			<el-table-column prop="qlrmc" label="权利人名称" align="center">
			</el-table-column>
			<el-table-column prop="qlrlxbsm_dictText" label="权利人类型" align="center">
			</el-table-column>
			<el-table-column prop="zjzlbsm_dictText" label="证件种类" align="center">
			</el-table-column>
			<el-table-column prop="zjh" label="证件号" align="center">
			</el-table-column>
			<el-table-column prop="dz" label="通讯地址" align="center">
			</el-table-column>
			<el-table-column prop="dh" label="联系电话" align="center">
			</el-table-column>
		</el-table>
		<el-dialog v-dialogDrag :close-on-click-modal="false"
			title="权利人信息"
			:visible.sync="dialogVisible"
			custom-class="insetDialog"
			append-to-body
			width="50%"
		>
			<el-form :model="formData" class="qlrForm">
				<table class="zdjbxxTable" cellspacing="0" cellpadding="0" border="1">
					<tr>
						<td colspan="4" class="tdright"><i class="requisite">*</i>权利人名称</td>
						<td colspan="6">
							<el-input  v-model="formData.qlrmc" ref="qlrmc"  @blur="inputBlur($event)"></el-input>
						</td>
						<td colspan="4" class="tdright"><i class="requisite">*</i>权利人类型</td>
						<td colspan="6">
							<el-select class="formSelect" v-model="formData.qlrlxbsm" ref="qlrlxbsm">
								<el-option
									v-for="item in $store.state.qlrlxList"
									:key="item.bsm"
									:label="item.mc"
									:value="item.bsm"
								>
								</el-option>
							</el-select>
						</td>
					</tr>
					<tr>
						<td colspan="4" class="tdright"><i class="requisite">*</i>证件类型</td>
						<td colspan="6">
							<el-select class="formSelect" v-model="formData.zjzlbsm" ref="zjzlbsm">
								<el-option
									v-for="item in $store.state.zjzlList"
									:key="item.bsm"
									:label="item.mc"
									:value="item.bsm"
								>
								</el-option>
							</el-select>
						</td>
						<td colspan="4" class="tdright"><i class="requisite">*</i>证件号</td>
						<td colspan="6">
							<el-input  maxlength="18" v-model="formData.zjh" ref="zjh"  @blur="inputBlur($event)"></el-input>
						</td>
					</tr>
					<tr>
						<td colspan="4" class="tdright"><i class="requisite">*</i>电话</td>
						<td colspan="6">
<!--							@blur="inputBlur($event)"-->
							<el-input  v-model="formData.dh" ref="dh"  @blur="inputBlur($event)"></el-input>
						</td>
						<td colspan="4" class="tdright"><i class="requisite">*</i>地址</td>
						<td colspan="6">
							<el-input  v-model="formData.dz" ref="dz"  @blur="inputBlur($event)"></el-input>
						</td>
					</tr>
					<tr>
						<td colspan="4" class="tdright">国家</td>
						<td colspan="6">
							<el-select class="formSelect" v-model="formData.gjbsm">
								<el-option
									v-for="item in $store.state.gjList"
									:key="item.bsm"
									:label="item.mc"
									:value="item.bsm"
								>
								</el-option>
							</el-select>
						</td>
						<td colspan="4" class="tdright">户籍所在省市</td>
						<td colspan="6">
							<el-select class="formSelect" v-model="formData.hjszssbsm">
								<el-option
									v-for="item in $store.state.ssList"
									:key="item.bsm"
									:label="item.mc"
									:value="item.bsm"
								>
								</el-option>
							</el-select>
						</td>
					</tr>
					<tr>
						<td colspan="4" class="tdright">性别</td>
						<td colspan="6">
							<el-select class="formSelect" v-model="formData.xbbsm">
								<el-option
									v-for="item in $store.state.xbList"
									:key="item.bsm"
									:label="item.mc"
									:value="item.bsm"
								>
								</el-option>
							</el-select>
						</td>
						<td colspan="4" class="tdright">邮编</td>
						<td colspan="6">
							<el-input  v-model="formData.yb" />
						</td>
					</tr>
					<tr>
						<td colspan="4" class="tdright">所属行业</td>
						<td colspan="6">
							<el-select class="formSelect" v-model="formData.sshy">
								<el-option
									v-for="item in $store.state.sshyList"
									:key="item.bsm"
									:label="item.mc"
									:value="item.bsm"
								>
								</el-option>
							</el-select>
						</td>
						<td colspan="4" class="tdright">电子邮件</td>
						<td colspan="6">
							<el-input  v-model="formData.dzyj" />
						</td>
					</tr>
					<tr>
						<th colspan="20">法人信息</th>
					</tr>
					<tr>
						<td colspan="4" class="tdright">法定代表人或负责人姓名</td>
						<td colspan="6">
							<el-input
								v-model="formData.fr.dlrfrmc"
							/>
						</td>
						<td colspan="4" class="tdright">证件类型</td>
						<td colspan="6">
							<el-select class="formSelect" v-model="formData.fr.zjzlbsm">
								<el-option
									v-for="item in $store.state.zjzlList"
									:key="item.bsm"
									:label="item.mc"
									:value="item.bsm"
								>
								</el-option>
							</el-select>
						</td>
					</tr>
					<tr>
						<td colspan="4" class="tdright">证件号码</td>
						<td colspan="6">
							<el-input  v-model="formData.fr.zjh" />
						</td>
						<td colspan="4" class="tdright">电话</td>
						<td colspan="6">
							<el-input  v-model="formData.fr.dh" />
						</td>
					</tr>
					<tr>
						<th colspan="20">代理人信息</th>
					</tr>
					<template v-for="(item, index) in formData.dlrList">
						<tr :key="item.index">
							<td :rowspan="(formData.dlrList.length-1)*2+2" v-if="index == 0" class="btnCol">
								<span :style="{'padding-top':(formData.dlrList.length-1)*36 + 20 + 'px'}">
									<i v-show=" index == 0" class="iconfont iconicon-test2" @click="handleClick(item, index, 'add')"></i>
								</span>
								<!-- <div class="line" v-show=" index != formData.dlrList.length-1"></div> -->
							</td>
							<td rowspan="2" class="minusBtnCol">
								<span>
									<i class="iconfont icon-" @click="handleClick(item, index, 'minus')"></i>
								</span>
							</td>
							<td class="tdright" colspan="2">代理人姓名</td>
							<td colspan="6">
								<el-input  v-model="item.dlrfrmc" />
							</td>
							<td colspan="4" class="tdright">证件类型</td>
							<td colspan="6">
								<el-select class="formSelect" v-model="item.zjzlbsm">
									<el-option
										v-for="item in $store.state.zjzlList"
										:key="item.bsm"
										:label="item.mc"
										:value="item.bsm"
									>
									</el-option>
								</el-select>
							</td>
						</tr>
<!--						<tr :key="item.dh">-->
						<tr :key="'dh'+index">
							<td class="tdright" colspan="2">证件号码</td>
							<td colspan="6">
								<el-input  v-model="item.zjh" />
							</td>
							<td colspan="4" class="tdright">电话</td>
							<td colspan="6">
								<el-input  v-model="item.dh" />
							</td>
						</tr>
					</template>

					<tr>
						<th colspan="20">权利信息</th>
					</tr>
					<tr>
						<td colspan="4" class="tdright">共有方式</td>
						<td colspan="6">
							<el-select class="formSelect" v-model="formData.gyfsbsm" disabled>
								<el-option
									v-for="item in $store.state.gyfsList"
									:key="item.bsm"
									:label="item.mc"
									:value="item.bsm"
								>
								</el-option>
							</el-select>
						</td>
						<td colspan="4" class="tdright">权利比例(%)</td>
						<td colspan="6">
							<el-input v-model="formData.qlbl" ></el-input>
						</td>
					</tr>
					<tr>
						<td colspan="4" class="tdright">房产证号</td>
						<td colspan="6">
							<el-input  v-model="formData.fczh" ></el-input>
						</td>
						<td colspan="4" class="tdright">土地证号</td>
						<td colspan="6">
							<el-input  v-model="formData.tdzh" ></el-input>
						</td>
					</tr>
					<tr>
						<td colspan="4" class="tdright">共有情况</td>
						<td colspan="12">
							<el-input  v-model="formData.gyqk" ></el-input>
						</td>
					</tr>
				</table>
			</el-form>
			<div  class="dialog-footer">
				<el-button type="primary" @click="addNewQlrInfo"
					>确 定</el-button
				>
				<el-button @click="dialogVisible = false">取 消</el-button>
			</div>
		</el-dialog>
	</div>
</template>

<script>
	import {getDdicByMC} from "@api/common";
	import {insertQlrDlrFr,getQlrInfoByGlbsm,updateQlrDlrFr,deleteQlrDlrFrByQlrbsm,updateGyGyQlrQk} from "@api/qlr";

	export default {
	props: {
		qszt: {
			type: String,
			default: "0",
		},
		title: {
			type: String,
			default: "",
		},
		topHeight: {
			type: String,
			default: "15vh",
		},
		bsm: {
			type: String,
			default: "",
		},
		type: {
			type: String,
			default: "",
		},
		lq:{
			type: String,
			default: "",
		}
	},
	data() {
		return {
			update:false,
			gyfs: this.$store.state.gyfsList[0].bsm,
			tableData: [],
			gyfsList:[],
			//表格选中项
			multipleSelection: [],
			dialogVisible: false,
			formData: {
				addQjDlrFrRequest:[],
				dlrList: [
					{
						dh: "",
						dlrfrmc: "",
						qlrbsm: "",
						zjh: "",
						zjzlbsm: "",
					},
				],
				fr: {
					dh: "",
					dlrfrmc: "",
					qlrbsm: "",
					zjh: "",
					zjzlbsm: "",
				},
				bz: "",
				dh: "",
				dz: "",
				dzyj: "",
				fczh: "",
				fzjg: "",
				gjbsm: "PSHGSBDCQJDC000000000000DC350010", //默认中国
				glbsm: "",
				gyfsbsm: "",
				gyqk: "",
				gzdw: "",
				hjszssbsm: "",
				isdel: 0,
				qlbl: "",
				qlrlxbsm: "",
				qlrmc: "",
				sshy: "",
				sxh: 0,
				tdzh: "",
				xbbsm: "",
				yb: "",
				zjh: "",
				zjzlbsm: "",
				lqqlrtype:""
			},
			glbsm:'',
			rules:[],
		};
	},
	methods: {

		inputBlur(e){
			if(e.target.value!=''){
				e.target.style.border=""
			}else{
				e.target.style.border="1px solid red";
				e.target.style.boxSizing = 'border-box';
			}
		},

		//新增行数据
		addRow() {

		    console.log(this.gyfs,'共有方式')

			this.update=false;
			let flag=false;
			for(let i = 0;i<this.$store.state.gyfsList.length;i++){
				let item = this.$store.state.gyfsList[i];
				if(item.mc==="单独所有" && item.bsm===this.gyfs){
					flag=true;
				}
			}
			if(flag){
				if(this.tableData.length>0){
					this.$message({
						message: "当前方式不可再新增权利人",
						type: "warning",
					});
				}else {
					this.formData.gyfsbsm=this.gyfs;
					this.dialogVisible = true;
				}
			}else {
				this.formData.gyfsbsm=this.gyfs;
				this.dialogVisible = true;
			}
		},
		//确认权利人信息按钮;可以进行新增;可以进行更新;
		addNewQlrInfo(){

			this.rules=[
				{
					data:this.formData.qlrmc,
					name:'权利人名称',
					dom:this.$refs.qlrmc,
					rule: /^\s*$/g, //非空
				},
				{
					data:this.formData.qlrlxbsm,
					name:'权利人类型',
					dom:this.$refs.qlrlxbsm,
					rule: /^\s*$/g, //非空
				},
				{
					data:this.formData.zjzlbsm,
					name:'证件类型',
					dom:this.$refs.zjzlbsm,
					rule: /^\s*$/g, //非空
				},
				{
					data:this.formData.zjh,
					name:'证件号',
					dom:this.$refs.zjh,
					rule: /^\s*$/g, //非空
				},
				{
					data:this.formData.dh,
					name:'电话',
					dom:this.$refs.dh,
					rule: /^\s*$/g, //非空
				},
				{
					data:this.formData.dz,
					name:'地址',
					dom:this.$refs.dz,
					rule: /^\s*$/g, //非空
				},
			]
			let flag = true;
			this.rules.forEach(item=>{
				if(item.rule.test(item.data) || item.data == null){
					if(item.dom.$el){
						item.dom.$el.style.border = '1px solid red';
						item.dom.$el.style.boxSizing = 'border-box';
					}else{
						item.dom.style.border = '1px solid red';
						item.dom.style.boxSizing = 'border-box';
					}
					flag = false;
					return false
				}
				console.log(this.tableData,'权利人信息')
				console.log(this.$store.state.gyfsList[0].bsm,'确定之后共有方式')
			})
			this.$nextTick(()=>{
				if (flag) {
					//todo 权利人页面调整
					this.formData.addQjDlrFrRequest=[];
					this.formData.glbsm=this.bsm;
					//将代理人,法人数据合在一起,名称为addQjDlrFrRequest;
					//法人的type字段类型为0,
					this.formData.fr.type=0;
					this.formData.addQjDlrFrRequest.push(this.formData.fr);
					for(let k=0;k<this.formData.dlrList.length;k++){
						//代理人的type字段类型为1,
						this.formData.dlrList[k].type=1;
						this.formData.addQjDlrFrRequest.push(this.formData.dlrList[k]);
					}
					//林权权利人类型判断
					this.formData.lqqlrtype = this.lq;
					//如果是从更新按钮点击确定的则进行更新操作,如果不是,则进行添加操作
					if(this.update){
						console.log(this.formData)
						updateQlrDlrFr(this.formData).then((res)=>{
							if(res.code===200){
								this.dialogVisible = false;
								this.$message.success("修改完成!");
								this.getQlrInfo(this.bsm);
								this.update=false;
							}
						})
					}else {
						insertQlrDlrFr(this.formData).then((res)=>{
							if(res.code===200){
								this.dialogVisible = false;
								this.tableData.push(this.formData);
								this.getQlrInfo(this.bsm);
								Object.assign(this.$data, this.$options.data())

							}
						})
					}
				}
			})


		},
		//修改行数据
		changeRow() {
			if (this.multipleSelection.length === 1) {
				this.dialogVisible = true;
				this.update=true;
				this.formData=this.multipleSelection[0];
				if(this.multipleSelection[0].frList.length>0){
					this.formData.fr=this.multipleSelection[0].frList[0];
				}
			} else {
				this.$message({
					message: "请选择一条信息后继续操作",
					type: "warning",
				});
			}
		},

		updateGyfs(val){
			console.log(val,this.type)
			updateGyGyQlrQk(this.bsm,this.type,val).then((res)=>{
				if(res.code === 200){
					console.log("修改完成!")
					//todo 修改该建筑物的所有权利人的相关共有方式
				}
			})
		},

		//父组件改变子组件的共有方式
		changeGyfs(val){
			this.gyfs = val;
		},

		//行双击事件
		rowDbclick(row){
			if (+this.qszt == 0) {
				this.dialogVisible = true;
				this.update=true;
				this.formData=row;
				if(row.frList.length>0){
					this.formData.fr=row.frList[0];
				}
			}
		},

		// inputBlur(e){
		// 	if(e.target.value!=''){
		// 		console.log(e.target.value)
		// 		console.log(!(/^1(3|4|5|6|7|8|9)d{9}$/.test(e.target.value)))
		// 		if(!(/^1(3|4|5|6|7|8|9)d{9}$/.test(e.target.value))){
		// 			e.target.style.border="1px solid red";
		// 			e.target.style.boxSizing = 'border-box';
		// 		}else {
		// 			e.target.style.border=""
		// 		}
		// 	}else{
		// 		e.target.style.border="1px solid red";
		// 		e.target.style.boxSizing = 'border-box';
		// 	}
		// },

		//删除行数据
		delRow() {
			if (this.multipleSelection.length > 0) {
				let qlrbsms=[];
				for(let i=0;i<this.multipleSelection.length;i++){
					qlrbsms.push(this.multipleSelection[i].qlrbsm)
				}
				console.log(qlrbsms)
				deleteQlrDlrFrByQlrbsm(qlrbsms).then((res)=>{
					if(res.code===200){
						this.$message.success("删除完成!")
						this.getQlrInfo(this.bsm);
					}
				})
			} else {
				this.$message({
					message: "请至少选择一条信息后继续操作",
					type: "warning",
				});
			}
		},
		//选中表格某一项
		handleSelectionChange(val) {
			this.multipleSelection = val;
		},

		//供父组件调用来获取共有方式
		getQlgyfsData() {
			return this.gyfs;
		},
		//供父组件调用来获取权利人表格数据
		getQlrxxData() {
			return this.tableData;
		},
		//增删代理人
		handleClick(obj, ind, type) {
			if (type === "add") {
				this.formData.dlrList.push({
					id: Math.random(),
					dh: "",
					dlrfrmc: "",
					qlrbsm: "",
					zjh: "",
					zjzlbsm: "",
				});
			} else {
				this.formData.dlrList.forEach((item, index) => {
					if (index == ind && this.formData.dlrList.length > 1) {
						this.formData.dlrList.splice(ind, 1);
					}
				});
			}
		},
		getQlrInfo(bsm){
			getQlrInfoByGlbsm(bsm).then((res)=>{
				if(res.code){
					if(res.result!=null){
						this.tableData=res.result;
						if(this.tableData.length===0){
                            this.gyfs=this.$store.state.gyfsList[0].bsm;
                        }else {
                            this.gyfs=res.result[0].gyfsbsm;
                        }
					}
				}
			})
		}
	},
	created(){
        this.gyfsList = this.$store.state.gyfsList;
	},
	mounted() {
		this.getQlrInfo(this.bsm);
	},
	watch:{
        tableData:{
          handler:function (v) {
              this.gyfsList[0].disabled = v.length > 1;
          } ,
			deep:true
		},
		dialogVisible(n){
			if(n === false){
				this.formData = {
					addQjDlrFrRequest:[],
					dlrList: [
						{
							dh: "",
							dlrfrmc: "",
							qlrbsm: "",
							zjh: "",
							zjzlbsm: "",
						},
					],
					fr: {
						dh: "",
						dlrfrmc: "",
						qlrbsm: "",
						zjh: "",
						zjzlbsm: "",
					},
					bz: "",
					dh: "",
					dz: "",
					dzyj: "",
					fczh: "",
					fzjg: "",
					gjbsm: "PSHGSBDCQJDC000000000000DC350010", //默认中国
					glbsm: "",
					gyfsbsm: "",
					gyqk: "",
					gzdw: "",
					hjszssbsm: "",
					isdel: 0,
					qlbl: "",
					qlrlxbsm: "",
					qlrmc: "",
					sshy: "",
					sxh: 0,
					tdzh: "",
					xbbsm: "",
					yb: "",
					zjh: "",
					zjzlbsm: "",
				}
			}
		},

		"formData.qlrlxbsm":function (val) {
			//console.log(this.$refs.qlrlxbsm.$el.style.border+":console.log(this.$refs.qlrlxbsm.$el.style.border)")
			if (val != '') {
			//	console.log(this.$refs.qlrlxbsm.$el.style.border+":console.log(this.$refs.qlrlxbsm.$el.style.border)")
				this.$refs.qlrlxbsm.$el.style.border = '';
			}
		},
	}
};
</script>
<style  lang="less">
.temp {
	width: 100%;
	table {
		border-bottom: 0;
		background-color: #fff;
		font-size: 14px;
		width: 100%;
		table-layout: fixed;
		.qlrBtn{
			border: 0;
			font-size: 14px;
		}
		.qlrBtn:hover{
			background-color: none!important;
		}
		.iconfont{
			font-size: 14px!important;
		}
		.span {
			color: #409eff;
			margin-right: 10px;
			cursor: pointer;
		}
		.noEdit {
			color:#606266;
			margin-right: 10px;
			cursor: not-allowed;
		}
		.el-radio {
			margin-right: 20px !important;
		}
		td {
			text-align: center;
			padding: 8px 0;
		}
	}
	.table-title{
		font-weight: 700;
		font-size: 15px;
	}
	.el-table th {
		background-color: #fff !important;
	}
	el-table td,
	.el-table th.is-leaf,
	.el-table--border,
	.el-table--group {
		border-color: black;
	}
	.el-table--border::after,
	.el-table--group::after,
	.el-table::before {
		background-color: rgba(0, 0, 0, 0);
	}
	.el-table--border td,
	.el-table--border th,
	.el-table__body-wrapper
		.el-table--border.is-scrolling-left
		~ .el-table__fixed {
		border-right: 1px solid#E6E6E6;
	}
	.el-table td,
	.el-table th {
		padding: 12px 0;
		color: #333 !important;
		font-weight: normal;
	}
	.el-table td,
	.el-table th.is-leaf {
		border-bottom: 1px solid#E6E6E6;
    	border-color: #E6E6E6 !important;
	}
	.qlrTable {
		border-color: #E6E6E6 !important;
    	border-bottom: 0;
    	border-right: 0;
		position: relative;
		top: -1px;
		.el-input__inner {
			height: 20px;
			margin: 0;
			line-height: 20px;
			outline: none;
			border: none;
			color: #606764;
			overflow: visible;
			cursor: text;
			text-align: center;
		}
	}
}
.insetDialog{
	.qlrForm{
		height: 500px;
		overflow-y: scroll;
	}

    .zdjbxxTable {
        margin: 10px 0;
        background-color: #fff;
        font-size: 14px;
        width: 100%;
        border-bottom: 1px solid #000;

        .btnCol,.minusBtnCol {
			position: relative;
			padding-right: 0;
			span{
				display: inline-block;
				width: 100%;
				height: 100%;
				position: relative;
				box-sizing: border-box;
				padding-right: 10px;
				padding-top: 20px;
			}
			.line{
				width: 100%;
				height: 2px;
				background: #fff;
			}
			i{
				color: #66b1ff;
				font-size: 30px;
				cursor: pointer;
				z-index: 1;
			}
		}
		.minusBtnCol{
			i{
				color: #FA6400;
			}
		}
        th {
            height: 36px;
            line-height: 36px;
        }
        td {
            text-align: right;
            height: 36px;
        }
        /deep/.el-input__inner {
            margin: 0;
            height: 36px;
            outline: none;
            border: none;
            color: #606764;
            overflow: visible;
            text-align: left;
            cursor: text;
        }
        .percent68 {
            width: 68% !important;
            float: left;
            position: relative;
            top: 7px;
        }
        .percent30 {
            width: 30% !important;
            float: left;
        }
        .el-input__icon {
            line-height: 37px;
        }
        .el-select {
            width: 100%;
        }
	}
	.dialog-footer{
		width: 160px;
		margin: 20px auto 0;
	}
}
</style>