style:楼盘表单元列表样式修改
Showing
4 changed files
with
19 additions
and
16 deletions
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-21 11:23:22 | 4 | * @LastEditTime: 2023-09-01 09:18:29 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="edit"> | 7 | <div class="edit"> |
... | @@ -460,7 +460,6 @@ | ... | @@ -460,7 +460,6 @@ |
460 | } | 460 | } |
461 | .edit { | 461 | .edit { |
462 | height: 100%; | 462 | height: 100%; |
463 | background-color: #f4f9ff; | ||
464 | .tab-content { | 463 | .tab-content { |
465 | border: 1px solid #dedede; | 464 | border: 1px solid #dedede; |
466 | border-left: 0; | 465 | border-left: 0; | ... | ... |
... | @@ -73,8 +73,15 @@ class data extends filter { | ... | @@ -73,8 +73,15 @@ class data extends filter { |
73 | label: '证件号', | 73 | label: '证件号', |
74 | }, | 74 | }, |
75 | { | 75 | { |
76 | prop: 'zl', | ||
77 | label: '房地坐落', | 76 | label: '房地坐落', |
77 | width: '100', | ||
78 | render: (h, scope) => { | ||
79 | return ( | ||
80 | <el-tooltip effect="dark" content={scope.row.zl} placement="top" popper-class="tooltip-width "> | ||
81 | <span class="ellipsis-table"> {scope.row.zl}</span> | ||
82 | </el-tooltip> | ||
83 | ) | ||
84 | } | ||
78 | }, | 85 | }, |
79 | { | 86 | { |
80 | prop: 'fwmj', | 87 | prop: 'fwmj', | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-02 09:59:58 | 4 | * @LastEditTime: 2023-09-01 09:18:46 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
8 | <div class="from-clues"> | 8 | <div> |
9 | <!-- 表单部分 --> | 9 | <!-- 表单部分 --> |
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="8"> |
14 | <el-form-item label="自然幢号"> | 14 | <el-form-item label="自然幢号"> |
15 | <el-input placeholder="请输入自然幢号" maxlength="24" v-model="queryForm.zrzh" clearable class="width200px"> | 15 | <el-input placeholder="请输入自然幢号" maxlength="24" v-model="queryForm.zrzh" 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="8"> |
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="queryForm.xmmc" clearable class="width200px"> | 27 | <el-input placeholder="" v-model="queryForm.xmmc" 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="2" class="btnColRight"> |
32 | <el-form-item> | 32 | <el-form-item> |
33 | <!-- <el-button type="primary" @click="resetForm(true)">重置</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> |
... | @@ -38,14 +37,14 @@ | ... | @@ -38,14 +37,14 @@ |
38 | </el-form> | 37 | </el-form> |
39 | </div> | 38 | </div> |
40 | <!-- 表格 --> | 39 | <!-- 表格 --> |
41 | <div class="from-clues-content loadingtext"> | 40 | <div class="loadingtext"> |
42 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="300" | 41 | <lb-table ref="table" @row-click="handleRowClick" :page-size="pageData.pageSize" :calcHeight="210" |
43 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" @select="select" | 42 | :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange" @select="select" |
44 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" | 43 | @p-current-change="handleCurrentChange" @selection-change="handleSelectionChange" :column="tableData.columns" |
45 | :data="tableData.data"> | 44 | :data="tableData.data"> |
46 | </lb-table> | 45 | </lb-table> |
47 | </div> | 46 | </div> |
48 | <div class="submit_button"> | 47 | <div class="submit_button" style="text-align:center"> |
49 | <el-button @click="$popupCacel">取消</el-button> | 48 | <el-button @click="$popupCacel">取消</el-button> |
50 | <el-button type="primary" plain @click="submitForm" :loading="loading">发起申请</el-button> | 49 | <el-button type="primary" plain @click="submitForm" :loading="loading">发起申请</el-button> |
51 | </div> | 50 | </div> |
... | @@ -89,7 +88,7 @@ | ... | @@ -89,7 +88,7 @@ |
89 | */ | 88 | */ |
90 | queryClick () { | 89 | queryClick () { |
91 | this.$startLoading(); | 90 | this.$startLoading(); |
92 | this.queryForm.zrzbsm = this.sqywInfo.bsm; | 91 | this.queryForm.zrzbsm = this.sqywInfo.bsm; |
93 | // this.queryForm.zrzbsm = this.sqywInfo.zrzbsm; | 92 | // this.queryForm.zrzbsm = this.sqywInfo.zrzbsm; |
94 | selectHQjdc({ ...this.queryForm, ...this.pageData }).then((res) => { | 93 | selectHQjdc({ ...this.queryForm, ...this.pageData }).then((res) => { |
95 | this.$endLoading(); | 94 | this.$endLoading(); | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-08-31 09:35:53 | 4 | * @LastEditTime: 2023-09-01 09:04:48 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -104,9 +104,7 @@ | ... | @@ -104,9 +104,7 @@ |
104 | * @author: renchao | 104 | * @author: renchao |
105 | */ | 105 | */ |
106 | openDialog (item) { | 106 | openDialog (item) { |
107 | this.$startLoading() | ||
108 | bdcqzPreview(item).then(res => { | 107 | bdcqzPreview(item).then(res => { |
109 | this.$endLoading() | ||
110 | this.$popupDialog("证书证明预览", "workflow/components/dialog/zsyl", { | 108 | this.$popupDialog("证书证明预览", "workflow/components/dialog/zsyl", { |
111 | bsmSlsq: item.bsmSlsq, | 109 | bsmSlsq: item.bsmSlsq, |
112 | bsmBdcqz: item.bsmBdcqz | 110 | bsmBdcqz: item.bsmBdcqz | ... | ... |
-
Please register or sign in to post a comment