f2c98c62 by renchao@pashanhoo.com

style:业务申请弹窗样式统一

1 parent 84e7ab3c
...@@ -245,4 +245,15 @@ ...@@ -245,4 +245,15 @@
245 // 弹框层级 245 // 弹框层级
246 .messageIndex { 246 .messageIndex {
247 z-index: 8000 !important; 247 z-index: 8000 !important;
248 }
249
250 // el-link一直显示下划线
251 .el-link.is-underline::after {
252 content: "";
253 position: absolute;
254 left: 0;
255 right: 0;
256 height: 0;
257 bottom: 0;
258 border-bottom: 1px solid #1890ff;
248 } 259 }
...\ No newline at end of file ...\ No newline at end of file
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-18 11:13:06 4 * @LastEditTime: 2023-09-20 17:30:41
5 --> 5 -->
6 <template> 6 <template>
7 <div class="container"> 7 <div class="container">
...@@ -117,27 +117,24 @@ ...@@ -117,27 +117,24 @@
117 * @author: renchao 117 * @author: renchao
118 */ 118 */
119 stepForm (index) { 119 stepForm (index) {
120 let that = this
120 this.currentSelectProps.type = "READ_ONLY" 121 this.currentSelectProps.type = "READ_ONLY"
121 getStepFormInfo(this.currentSelectProps).then((res) => { 122 getStepFormInfo(this.currentSelectProps).then((res) => {
122 if (res.code === 200) { 123 if (res.code === 200) {
123 //获取单元对应的所有表单信息 124 //获取单元对应的所有表单信息
124 this.tabList = res.result; 125 this.tabList = res.result;
125 //默认加载第一个表单信息 126 //默认加载第一个表单信息
126 let arr = res.result.filter(item => item.defaultForm) 127 if (res.result.length > 0) {
127 if (arr.length > 0) { 128 that.tabName = res.result[0].value;
128 this.tabName = arr[0].value;
129 } else {
130 this.tabName = res.result[0].value;
131 } 129 }
132 if (sessionStorage.getItem('activeName') == this.tabName) { 130 if (sessionStorage.getItem('activeName') == this.tabName) {
133 this.fresh++; 131 that.fresh++;
134 } 132 }
135 this.ableOperation = this.tabList[0].ableOperation 133 this.ableOperation = this.tabList[0].ableOperation
136 //批量操作无分屏按钮 134 //批量操作无分屏按钮
137 if (index != null) { 135 if (index != null) {
138 //处理分屏材料信息 136 //处理分屏材料信息
139 let that = this; 137 that.tabList.forEach(function (item, index) {
140 this.tabList.forEach(function (item, index) {
141 if (item.value == "clxx") { 138 if (item.value == "clxx") {
142 that.clxxIndex = index 139 that.clxxIndex = index
143 that.clxxForm = getForm(item.value) 140 that.clxxForm = getForm(item.value)
......
1 /* 1 /*
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-28 15:48:06 4 * @LastEditTime: 2023-09-20 17:17:22
5 */ 5 */
6 import filter from '@/utils/filter.js' 6 import filter from '@/utils/filter.js'
7 let vm = null 7 let vm = null
...@@ -62,7 +62,7 @@ class data extends filter { ...@@ -62,7 +62,7 @@ class data extends filter {
62 align: 'center', 62 align: 'center',
63 minWidth: '100', 63 minWidth: '100',
64 render: (h, scope) => { 64 render: (h, scope) => {
65 return <el-button type="text" onClick={() => { vm.ywhClick(scope.row) }}>{scope.row.ywh}</el-button> 65 return <el-link type="primary" onClick={() => { vm.ywhClick(scope.row) }}>{scope.row.ywh}</el-link>
66 } 66 }
67 }, 67 },
68 { 68 {
......
...@@ -54,9 +54,9 @@ class data extends filter { ...@@ -54,9 +54,9 @@ class data extends filter {
54 }, 54 },
55 { 55 {
56 label: "业务号", 56 label: "业务号",
57 width: '90', 57 width: '100',
58 render: (h, scope) => { 58 render: (h, scope) => {
59 return <el-button type="text" onClick={() => { vm.ywhClick(scope.row) }}>{scope.row.ywh}</el-button> 59 return <el-link type="primary" onClick={() => { vm.ywhClick(scope.row) }}>{scope.row.ywh}</el-link>
60 } 60 }
61 }, 61 },
62 { 62 {
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-09-18 16:22:28 4 * @LastEditTime: 2023-09-21 08:56:07
5 --> 5 -->
6 <template> 6 <template>
7 <div class="from-clues"> 7 <div class="from-clues">
...@@ -53,8 +53,8 @@ ...@@ -53,8 +53,8 @@
53 53
54 <el-col :span="3" class="btnColRight"> 54 <el-col :span="3" class="btnColRight">
55 <el-form-item> 55 <el-form-item>
56 <el-button type="primary" @click="resetForm(true)">重置</el-button>
57 <el-button type="primary" @click="handleSearch">查询</el-button> 56 <el-button type="primary" @click="handleSearch">查询</el-button>
57 <el-button type="primary" @click="resetForm(true)">重置</el-button>
58 </el-form-item> 58 </el-form-item>
59 </el-col> 59 </el-col>
60 </el-row> 60 </el-row>
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
88 </el-input> 88 </el-input>
89 </el-form-item> 89 </el-form-item>
90 </el-col> 90 </el-col>
91 <el-col :span="10" class="btnColRight"> 91 <el-col :span="10" class="btnColRight">
92 <el-form-item> 92 <el-form-item>
93 <el-button type="primary" @click="resetForm(true)">重置</el-button> 93 <el-button type="primary" @click="resetForm(true)">重置</el-button>
94 <el-button type="primary" @click="handleSearch">查询</el-button> 94 <el-button type="primary" @click="handleSearch">查询</el-button>
...@@ -304,11 +304,11 @@ ...@@ -304,11 +304,11 @@
304 */ 304 */
305 handleLpbClick (item) { 305 handleLpbClick (item) {
306 ywPopupDialog('楼盘表', 'lpb/index', { 306 ywPopupDialog('楼盘表', 'lpb/index', {
307 bsm: item.bsm, 307 bsm: item.bsm,
308 bsmSqyw:this.sqywInfo.bsmSqyw, 308 bsmSqyw: this.sqywInfo.bsmSqyw,
309 onlyShow: false, 309 onlyShow: false,
310 scyclx:1 310 scyclx: 1
311 }, '85%', true,false) 311 }, '85%', true, false)
312 }, 312 },
313 /** 313 /**
314 * @description: select 314 * @description: select
...@@ -336,7 +336,7 @@ ...@@ -336,7 +336,7 @@
336 let refs = 'table1'; 336 let refs = 'table1';
337 if (this.activeName == 'dz') { 337 if (this.activeName == 'dz') {
338 refs = 'table'; 338 refs = 'table';
339 }else{ 339 } else {
340 this.sqywInfo.djywbm !== 'B37100' && this.$refs[refs].clearSelection() 340 this.sqywInfo.djywbm !== 'B37100' && this.$refs[refs].clearSelection()
341 } 341 }
342 const bdcdysz = this.bdcdysz 342 const bdcdysz = this.bdcdysz
...@@ -344,7 +344,7 @@ ...@@ -344,7 +344,7 @@
344 bdcdysz.forEach(item => { 344 bdcdysz.forEach(item => {
345 // 判断 如果当前的一行被勾选, 再次点击的时候就会取消选中 345 // 判断 如果当前的一行被勾选, 再次点击的时候就会取消选中
346 if (item == row) { 346 if (item == row) {
347 this.$nextTick(()=>{this.$refs[refs].toggleRowSelection(row, false);}) 347 this.$nextTick(() => { this.$refs[refs].toggleRowSelection(row, false); })
348 } 348 }
349 // 不然就让当前的一行勾选 349 // 不然就让当前的一行勾选
350 else { 350 else {
......
1 <!-- 1 <!--
2 * @Description: 2 * @Description:
3 * @Autor: renchao 3 * @Autor: renchao
4 * @LastEditTime: 2023-08-02 09:59:52 4 * @LastEditTime: 2023-09-21 08:59:20
5 --> 5 -->
6 <template> 6 <template>
7 <!-- 主体权利信息查询 --> 7 <!-- 主体权利信息查询 -->
...@@ -10,27 +10,26 @@ ...@@ -10,27 +10,26 @@
10 <div class="from-clues-header"> 10 <div class="from-clues-header">
11 <el-form :model="queryForm" ref="queryForm" label-width="100px"> 11 <el-form :model="queryForm" ref="queryForm" label-width="100px">
12 <el-row> 12 <el-row>
13 <el-col :span="8"> 13 <el-col :span="6">
14 <el-form-item label="不动产权证号"> 14 <el-form-item label="不动产权证号">
15 <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable class="width200px"> 15 <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable class="width100">
16 </el-input> 16 </el-input>
17 </el-form-item> 17 </el-form-item>
18 </el-col> 18 </el-col>
19 <el-col :span="8"> 19 <el-col :span="6">
20 <el-form-item label="不动产单元号"> 20 <el-form-item label="不动产单元号">
21 <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width200px"> 21 <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width100">
22 </el-input> 22 </el-input>
23 </el-form-item> 23 </el-form-item>
24 </el-col> 24 </el-col>
25 <el-col :span="6"> 25 <el-col :span="6">
26 <el-form-item label="坐落"> 26 <el-form-item label="坐落">
27 <el-input placeholder="" v-model.trim="queryForm.zl" clearable class="width200px"> 27 <el-input placeholder="" v-model.trim="queryForm.zl" clearable class="width100">
28 </el-input> 28 </el-input>
29 </el-form-item> 29 </el-form-item>
30 </el-col> 30 </el-col>
31 <el-col :span="2" class="btnColRight"> 31 <el-col :span="6" class="btnColRight">
32 <el-form-item> 32 <el-form-item>
33 <!-- <el-button type="primary" @click="resetForm">重置</el-button> -->
34 <el-button type="primary" @click="handleSearch">查询</el-button> 33 <el-button type="primary" @click="handleSearch">查询</el-button>
35 </el-form-item> 34 </el-form-item>
36 </el-col> 35 </el-col>
......