style:业务申请
Showing
2 changed files
with
30 additions
and
10 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-11-16 14:06:18 | 4 | * @LastEditTime: 2024-01-18 08:38:32 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <!-- 抵押权利信息查询 --> | 7 | <!-- 抵押权利信息查询 --> |
| ... | @@ -10,9 +10,9 @@ | ... | @@ -10,9 +10,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="5"> | 13 | <el-col :span="6"> |
| 14 | <el-form-item label="权利类型"> | 14 | <el-form-item label="权利类型"> |
| 15 | <el-select v-model="queryForm.qllx" filterable clearable placeholder="请选择权利类型"> | 15 | <el-select v-model="queryForm.qllx" filterable clearable placeholder="请选择权利类型" class="width100"> |
| 16 | <el-option v-for="item in qllxs" :key="item.value" :label="item.label" :value="item.value"> | 16 | <el-option v-for="item in qllxs" :key="item.value" :label="item.label" :value="item.value"> |
| 17 | </el-option> | 17 | </el-option> |
| 18 | </el-select> | 18 | </el-select> |
| ... | @@ -20,25 +20,38 @@ | ... | @@ -20,25 +20,38 @@ |
| 20 | </el-col> | 20 | </el-col> |
| 21 | <el-col :span="6"> | 21 | <el-col :span="6"> |
| 22 | <el-form-item label="不动产单元号"> | 22 | <el-form-item label="不动产单元号"> |
| 23 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable class="width200px"> | 23 | <el-input placeholder="请输入不动产单元号" maxlength="28" v-model="queryForm.bdcdyh" clearable> |
| 24 | </el-input> | 24 | </el-input> |
| 25 | </el-form-item> | 25 | </el-form-item> |
| 26 | </el-col> | 26 | </el-col> |
| 27 | <el-col :span="5"> | 27 | <el-col :span="6"> |
| 28 | <el-form-item label="业务号"> | 28 | <el-form-item label="业务号"> |
| 29 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width200px"> | 29 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable> |
| 30 | </el-input> | 30 | </el-input> |
| 31 | </el-form-item> | 31 | </el-form-item> |
| 32 | </el-col> | 32 | </el-col> |
| 33 | <el-col :span="6"> | 33 | <el-col :span="6"> |
| 34 | <el-form-item label="不动产权证号"> | 34 | <el-form-item label="不动产权证号"> |
| 35 | <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable class="width200px"> | 35 | <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable> |
| 36 | </el-input> | ||
| 37 | </el-form-item> | ||
| 38 | </el-col> | ||
| 39 | <el-col :span="6"> | ||
| 40 | <el-form-item label="权利人"> | ||
| 41 | <el-input placeholder="请输入权利人" v-model="queryForm.qlr" clearable> | ||
| 42 | </el-input> | ||
| 43 | </el-form-item> | ||
| 44 | </el-col> | ||
| 45 | <el-col :span="6"> | ||
| 46 | <el-form-item label="证件号"> | ||
| 47 | <el-input placeholder="请输入证件号" v-model="queryForm.zjh" clearable> | ||
| 36 | </el-input> | 48 | </el-input> |
| 37 | </el-form-item> | 49 | </el-form-item> |
| 38 | </el-col> | 50 | </el-col> |
| 39 | <el-col :span="2" class="btnColRight"> | 51 | <el-col :span="12" class="btnColRight"> |
| 40 | <el-form-item> | 52 | <el-form-item> |
| 41 | <el-button type="primary" @click="handleSearch" :loading="loading">查询</el-button> | 53 | <el-button type="primary" @click="handleSearch" :loading="loading">查询</el-button> |
| 54 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ||
| 42 | </el-form-item> | 55 | </el-form-item> |
| 43 | </el-col> | 56 | </el-col> |
| 44 | </el-row> | 57 | </el-row> | ... | ... |
| 1 | /* | 1 | /* |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-31 08:52:14 | 4 | * @LastEditTime: 2024-01-18 08:37:55 |
| 5 | */ | 5 | */ |
| 6 | import filter from '@/utils/filter.js' | 6 | import filter from '@/utils/filter.js' |
| 7 | let vm = null | 7 | let vm = null |
| ... | @@ -74,8 +74,15 @@ class data extends filter { | ... | @@ -74,8 +74,15 @@ class data extends filter { |
| 74 | } | 74 | } |
| 75 | }, | 75 | }, |
| 76 | { | 76 | { |
| 77 | prop: "qlrmc", | ||
| 78 | label: "抵押权人", | 77 | label: "抵押权人", |
| 78 | width: '150', | ||
| 79 | render: (h, scope) => { | ||
| 80 | return ( | ||
| 81 | <el-tooltip effect="dark" content={scope.row.qlrmc} placement="top" popper-class="tooltip-width"> | ||
| 82 | <span class="ellipsis-table"> {scope.row.qlrmc}</span> | ||
| 83 | </el-tooltip> | ||
| 84 | ) | ||
| 85 | } | ||
| 79 | }, | 86 | }, |
| 80 | { | 87 | { |
| 81 | prop: "qlrzjhm", | 88 | prop: "qlrzjhm", | ... | ... |
-
Please register or sign in to post a comment