style:受理申请
Showing
23 changed files
with
110 additions
and
69 deletions
1 | /* | 1 | /* |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-14 16:24:26 | 4 | * @LastEditTime: 2023-07-17 13:31:39 |
5 | */ | 5 | */ |
6 | import store from '@/store' | 6 | import store from '@/store' |
7 | // table 内部过滤器 由于过滤器只能在模板中使用 所以 就有了 jsx内部方法过滤器 | 7 | // table 内部过滤器 由于过滤器只能在模板中使用 所以 就有了 jsx内部方法过滤器 |
... | @@ -44,26 +44,31 @@ export default class filter { | ... | @@ -44,26 +44,31 @@ export default class filter { |
44 | getDictData (val) { | 44 | getDictData (val) { |
45 | return store.getters.dictData[val] | 45 | return store.getters.dictData[val] |
46 | } | 46 | } |
47 | // 状态 | ||
48 | yWstatus (row) { | 47 | yWstatus (row) { |
49 | let text = ""; | 48 | let text = ""; |
49 | let keys = 0; | ||
50 | // 定义策略对象 | 50 | // 定义策略对象 |
51 | const strategies = { | 51 | const strategies = { |
52 | djblzt: "正在办理", | 52 | djblzt: "正在办理", |
53 | zjgcdyzt: ",在建工程抵押", | 53 | zjgcdyzt: "在建工程抵押", |
54 | ycfzt: ",已预查封", | 54 | ycfzt: "已预查封", |
55 | cfzt: ",已查封", | 55 | cfzt: "已查封", |
56 | diyizt: ",已地役", | 56 | diyizt: "已地役", |
57 | yyzt: ",异议中", | 57 | yyzt: "异议中", |
58 | xzzt: ",已限制", | 58 | xzzt: "已限制", |
59 | ygmmzt: ",已预告买卖", | 59 | ygmmzt: "已预告买卖", |
60 | ygdyzt: ",已预告抵押", | 60 | ygdyzt: "已预告抵押", |
61 | dyzt: ",已抵押" | 61 | dyzt: "已抵押" |
62 | }; | 62 | }; |
63 | 63 | ||
64 | for (let key in row) { | 64 | for (let key in row) { |
65 | if (row[key] === 1 && strategies[key]) { | 65 | if (row[key] === 1 && strategies[key]) { |
66 | keys++; | ||
67 | if (keys == 1) { | ||
66 | text += strategies[key]; | 68 | text += strategies[key]; |
69 | } else { | ||
70 | text += ',' + strategies[key]; | ||
71 | } | ||
67 | } | 72 | } |
68 | } | 73 | } |
69 | 74 | ... | ... |
... | @@ -2,13 +2,13 @@ | ... | @@ -2,13 +2,13 @@ |
2 | /* | 2 | /* |
3 | * @Description: 此文件主要创建 axios 实例,然后添加请求拦截器和响应拦截器 | 3 | * @Description: 此文件主要创建 axios 实例,然后添加请求拦截器和响应拦截器 |
4 | * @Autor: renchao | 4 | * @Autor: renchao |
5 | * @LastEditTime: 2023-06-20 10:12:53 | 5 | * @LastEditTime: 2023-07-17 13:22:05 |
6 | */ | 6 | */ |
7 | import axios from 'axios' | 7 | import axios from 'axios' |
8 | import Router from '@/router' | 8 | import Router from '@/router' |
9 | import { Message } from 'element-ui' | 9 | import { Message } from 'element-ui' |
10 | import { endLoadingSubCount } from './requestLoading' | 10 | import { endLoadingSubCount } from './requestLoading' |
11 | import {getToken, setToken} from "@/utils/util"; | 11 | import { getToken, setToken } from "@/utils/util"; |
12 | 12 | ||
13 | // create an axios instance | 13 | // create an axios instance |
14 | const service = axios.create({ | 14 | const service = axios.create({ |
... | @@ -84,7 +84,7 @@ service.interceptors.response.use( | ... | @@ -84,7 +84,7 @@ service.interceptors.response.use( |
84 | } else { | 84 | } else { |
85 | // 对响应错误做点什么 | 85 | // 对响应错误做点什么 |
86 | Message({ | 86 | Message({ |
87 | message: '服务器异常,请联系管理员', | 87 | message: error, |
88 | type: 'error', | 88 | type: 'error', |
89 | duration: 5 * 1000, | 89 | duration: 5 * 1000, |
90 | customClass: 'messageIndex' | 90 | customClass: 'messageIndex' | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-11 10:26:50 | 4 | * @LastEditTime: 2023-07-17 13:51:03 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div> | 7 | <div> |
... | @@ -168,5 +168,11 @@ | ... | @@ -168,5 +168,11 @@ |
168 | } | 168 | } |
169 | } | 169 | } |
170 | </script> | 170 | </script> |
171 | <style scoped lang='scss'> | 171 | <style scoped lang="scss"> |
172 | /deep/.el-table th { | ||
173 | height: 30px !important; | ||
174 | } | ||
175 | /deep/.el-table--small .el-table__cell { | ||
176 | padding: 5px; | ||
177 | } | ||
172 | </style> | 178 | </style> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:40:48 | 4 | * @LastEditTime: 2023-07-17 13:51:29 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <lb-table :column="column" :maxHeight="200" :heightNumSetting="true" :pagination="false" :key="key" :data="tableData"> | 7 | <lb-table :column="column" :maxHeight="200" :heightNumSetting="true" :pagination="false" :key="key" :data="tableData"> |
... | @@ -127,4 +127,10 @@ | ... | @@ -127,4 +127,10 @@ |
127 | } | 127 | } |
128 | </script> | 128 | </script> |
129 | <style scoped lang='scss'> | 129 | <style scoped lang='scss'> |
130 | /deep/.el-table th { | ||
131 | height: 30px !important; | ||
132 | } | ||
133 | /deep/.el-table--small .el-table__cell { | ||
134 | padding: 5px; | ||
135 | } | ||
130 | </style> | 136 | </style> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:40:48 | 4 | * @LastEditTime: 2023-07-17 13:50:53 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <lb-table :column="column" :maxHeight="200" :heightNumSetting="true" :pagination="false" :key="key" :data="tableData"> | 7 | <lb-table :column="column" :maxHeight="200" :heightNumSetting="true" :pagination="false" :key="key" :data="tableData"> |
... | @@ -116,5 +116,12 @@ | ... | @@ -116,5 +116,12 @@ |
116 | } | 116 | } |
117 | } | 117 | } |
118 | </script> | 118 | </script> |
119 | <style scoped lang='scss'> | 119 | <style scoped lang="scss"> |
120 | /deep/.el-table th { | ||
121 | height: 30px !important; | ||
122 | } | ||
123 | /deep/.el-table--small .el-table__cell { | ||
124 | padding: 5px; | ||
125 | } | ||
120 | </style> | 126 | </style> |
127 | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-05-17 10:41:35 | 4 | * @LastEditTime: 2023-07-17 13:51:09 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <lb-table :column="column" :maxHeight="300" heightNumSetting :pagination="false" :key="key" :data="tableData"> | 7 | <lb-table :column="column" :maxHeight="300" heightNumSetting :pagination="false" :key="key" :data="tableData"> |
... | @@ -158,5 +158,11 @@ | ... | @@ -158,5 +158,11 @@ |
158 | } | 158 | } |
159 | } | 159 | } |
160 | </script> | 160 | </script> |
161 | <style scoped lang='scss'> | 161 | <style scoped lang="scss"> |
162 | /deep/.el-table th { | ||
163 | height: 30px !important; | ||
164 | } | ||
165 | /deep/.el-table--small .el-table__cell { | ||
166 | padding: 5px; | ||
167 | } | ||
162 | </style> | 168 | </style> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-11 09:14:44 | 4 | * @LastEditTime: 2023-07-17 13:51:14 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div> | 7 | <div> |
... | @@ -23,8 +23,7 @@ | ... | @@ -23,8 +23,7 @@ |
23 | <i | 23 | <i |
24 | class="el-icon-minus pointer" | 24 | class="el-icon-minus pointer" |
25 | @click="deleClick(scope.$index, scope.row)" | 25 | @click="deleClick(scope.$index, scope.row)" |
26 | v-if="!$route.query.viewtype == 1" | 26 | v-if="!$route.query.viewtype == 1"></i> |
27 | ></i> | ||
28 | <div style="text-align:center;" v-else> | 27 | <div style="text-align:center;" v-else> |
29 | {{ scope.$index+1}} | 28 | {{ scope.$index+1}} |
30 | </div> | 29 | </div> |
... | @@ -218,4 +217,10 @@ | ... | @@ -218,4 +217,10 @@ |
218 | .el-date-editor.el-input { | 217 | .el-date-editor.el-input { |
219 | width: 100%; | 218 | width: 100%; |
220 | } | 219 | } |
220 | /deep/.el-table th { | ||
221 | height: 30px !important; | ||
222 | } | ||
223 | /deep/.el-table--small .el-table__cell { | ||
224 | padding: 5px; | ||
225 | } | ||
221 | </style> | 226 | </style> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 14:47:30 | 4 | * @LastEditTime: 2023-07-17 13:38:49 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
8 | <!-- 表单部分 --> | 8 | <!-- 表单部分 --> |
9 | <div class="from-clues-header"> | 9 | <div class="from-clues-header"> |
10 | <el-form :model="queryForm" ref="queryForm" label-width="100px"> | 10 | <el-form :model="queryForm" ref="queryForm" label-width="90px"> |
11 | <el-row> | 11 | <el-row style="margin-bottom:10px"> |
12 | <el-col :span="8"> | 12 | <el-col :span="5"> |
13 | <el-form-item label="不动产单元号"> | 13 | <el-form-item label="不动产单元号" label-width="110px"> |
14 | <el-input | 14 | <el-input |
15 | placeholder="请输入不动产单元号" | 15 | placeholder="请输入不动产单元号" |
16 | maxlength="28" | 16 | maxlength="28" |
17 | v-model="queryForm.bdcdyh" | 17 | v-model="queryForm.bdcdyh" |
18 | clearable | 18 | clearable |
19 | class="width200px"></el-input> | 19 | class="width100"></el-input> |
20 | </el-form-item> | 20 | </el-form-item> |
21 | </el-col> | 21 | </el-col> |
22 | <el-col :span="8"> | 22 | <el-col :span="5"> |
23 | <el-form-item label="查封机关"> | 23 | <el-form-item label="查封机关"> |
24 | <el-input placeholder="请输入查封机关" v-model="queryForm.cfjg" clearable class="width200px"></el-input> | 24 | <el-input placeholder="请输入查封机关" v-model="queryForm.cfjg" clearable class="width100"></el-input> |
25 | </el-form-item> | 25 | </el-form-item> |
26 | </el-col> | 26 | </el-col> |
27 | <el-col :span="8"> | 27 | <el-col :span="5"> |
28 | <el-form-item label="查封文号"> | 28 | <el-form-item label="查封文号"> |
29 | <el-input | 29 | <el-input |
30 | placeholder="请输入不动产权证号" | 30 | placeholder="请输入不动产权证号" |
31 | v-model="queryForm.cfwh" | 31 | v-model="queryForm.cfwh" |
32 | clearable | 32 | clearable |
33 | class="width200px"></el-input> | 33 | class="width100"></el-input> |
34 | </el-form-item> | 34 | </el-form-item> |
35 | </el-col> | 35 | </el-col> |
36 | </el-row> | 36 | <el-col :span="6"> |
37 | <el-row> | 37 | <el-form-item label="坐落" label-width="50px"> |
38 | <el-col :span="5"> | 38 | <el-input placeholder="请输入坐落" v-model="queryForm.zl" clearable class="width100"></el-input> |
39 | <el-form-item label="坐落"> | ||
40 | <el-input placeholder="请输入坐落" v-model="queryForm.zl" clearable class="width200px"></el-input> | ||
41 | </el-form-item> | 39 | </el-form-item> |
42 | </el-col> | 40 | </el-col> |
43 | <el-col :span="6" class="btnColRight"> | 41 | <el-col :span="3" class="btnColRight"> |
44 | <el-form-item> | 42 | <el-form-item> |
45 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ||
46 | <el-button type="primary" @click="queryClick">查询</el-button> | 43 | <el-button type="primary" @click="queryClick">查询</el-button> |
44 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> | ||
47 | </el-form-item> | 45 | </el-form-item> |
48 | </el-col> | 46 | </el-col> |
49 | </el-row> | 47 | </el-row> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 14:47:36 | 4 | * @LastEditTime: 2023-07-17 13:16:57 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 抵押权利信息查询 --> | 7 | <!-- 抵押权利信息查询 --> |
... | @@ -38,8 +38,8 @@ | ... | @@ -38,8 +38,8 @@ |
38 | </el-col> | 38 | </el-col> |
39 | <el-col :span="2" class="btnColRight"> | 39 | <el-col :span="2" class="btnColRight"> |
40 | <el-form-item> | 40 | <el-form-item> |
41 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ||
42 | <el-button type="primary" @click="handleSearch">查询</el-button> | 41 | <el-button type="primary" @click="handleSearch">查询</el-button> |
42 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ||
43 | </el-form-item> | 43 | </el-form-item> |
44 | </el-col> | 44 | </el-col> |
45 | </el-row> | 45 | </el-row> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:23:44 | 4 | * @LastEditTime: 2023-07-17 13:17:12 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -23,7 +23,7 @@ | ... | @@ -23,7 +23,7 @@ |
23 | </el-col> | 23 | </el-col> |
24 | <el-col :span="4" class="btnColRight"> | 24 | <el-col :span="4" class="btnColRight"> |
25 | <el-form-item> | 25 | <el-form-item> |
26 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 26 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> |
27 | <el-button type="primary" @click="handleSearch">查询</el-button> | 27 | <el-button type="primary" @click="handleSearch">查询</el-button> |
28 | </el-form-item> | 28 | </el-form-item> |
29 | </el-col> | 29 | </el-col> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:23:51 | 4 | * @LastEditTime: 2023-07-17 13:17:17 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -23,7 +23,7 @@ | ... | @@ -23,7 +23,7 @@ |
23 | </el-col> | 23 | </el-col> |
24 | <el-col :span="4" class="btnColRight"> | 24 | <el-col :span="4" class="btnColRight"> |
25 | <el-form-item> | 25 | <el-form-item> |
26 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 26 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> |
27 | <el-button type="primary" @click="handleSearch">查询</el-button> | 27 | <el-button type="primary" @click="handleSearch">查询</el-button> |
28 | </el-form-item> | 28 | </el-form-item> |
29 | </el-col> | 29 | </el-col> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:26:40 | 4 | * @LastEditTime: 2023-07-17 13:17:38 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -38,7 +38,7 @@ | ... | @@ -38,7 +38,7 @@ |
38 | </el-col> | 38 | </el-col> |
39 | <el-col :span="3" class="btnColRight"> | 39 | <el-col :span="3" class="btnColRight"> |
40 | <el-form-item> | 40 | <el-form-item> |
41 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 41 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> |
42 | <el-button type="primary" @click="handleSearch">查询</el-button> | 42 | <el-button type="primary" @click="handleSearch">查询</el-button> |
43 | </el-form-item> | 43 | </el-form-item> |
44 | </el-col> | 44 | </el-col> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:26:46 | 4 | * @LastEditTime: 2023-07-17 13:17:50 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -35,7 +35,7 @@ | ... | @@ -35,7 +35,7 @@ |
35 | </el-col> | 35 | </el-col> |
36 | <el-col :span="4" class="btnColRight"> | 36 | <el-col :span="4" class="btnColRight"> |
37 | <el-form-item> | 37 | <el-form-item> |
38 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 38 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> |
39 | <el-button type="primary" @click="handleSearch">查询</el-button> | 39 | <el-button type="primary" @click="handleSearch">查询</el-button> |
40 | </el-form-item> | 40 | </el-form-item> |
41 | </el-col> | 41 | </el-col> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:26:51 | 4 | * @LastEditTime: 2023-07-17 13:18:01 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
30 | </el-col> | 30 | </el-col> |
31 | <el-col :span="4" class="btnColRight"> | 31 | <el-col :span="4" class="btnColRight"> |
32 | <el-form-item> | 32 | <el-form-item> |
33 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 33 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> |
34 | <el-button type="primary" @click="handleSearch">查询</el-button> | 34 | <el-button type="primary" @click="handleSearch">查询</el-button> |
35 | </el-form-item> | 35 | </el-form-item> |
36 | </el-col> | 36 | </el-col> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:26:55 | 4 | * @LastEditTime: 2023-07-17 13:18:06 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
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> | 33 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> |
34 | <el-button type="primary" @click="handleSearch">查询</el-button> | 34 | <el-button type="primary" @click="handleSearch">查询</el-button> |
35 | </el-form-item> | 35 | </el-form-item> |
36 | </el-col> | 36 | </el-col> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:27:00 | 4 | * @LastEditTime: 2023-07-17 13:18:12 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -37,8 +37,8 @@ | ... | @@ -37,8 +37,8 @@ |
37 | </el-col> | 37 | </el-col> |
38 | <el-col :span="6" class="btnColRight"> | 38 | <el-col :span="6" class="btnColRight"> |
39 | <el-form-item> | 39 | <el-form-item> |
40 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ||
41 | <el-button type="primary" @click="handleSearch">查询</el-button> | 40 | <el-button type="primary" @click="handleSearch">查询</el-button> |
41 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ||
42 | </el-form-item> | 42 | </el-form-item> |
43 | </el-col> | 43 | </el-col> |
44 | </el-row> | 44 | </el-row> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-07 09:27:48 | 4 | * @LastEditTime: 2023-07-17 13:18:17 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -37,8 +37,8 @@ | ... | @@ -37,8 +37,8 @@ |
37 | </el-col> | 37 | </el-col> |
38 | <el-col :span="6" class="btnColRight"> | 38 | <el-col :span="6" class="btnColRight"> |
39 | <el-form-item> | 39 | <el-form-item> |
40 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ||
41 | <el-button type="primary" @click="handleSearch">查询</el-button> | 40 | <el-button type="primary" @click="handleSearch">查询</el-button> |
41 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ||
42 | </el-form-item> | 42 | </el-form-item> |
43 | </el-col> | 43 | </el-col> |
44 | </el-row> | 44 | </el-row> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:27:13 | 4 | * @LastEditTime: 2023-07-17 13:16:27 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -29,7 +29,7 @@ | ... | @@ -29,7 +29,7 @@ |
29 | </el-col> | 29 | </el-col> |
30 | <el-col :span="6" class="btnColRight"> | 30 | <el-col :span="6" class="btnColRight"> |
31 | <el-form-item> | 31 | <el-form-item> |
32 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | 32 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> |
33 | <el-button type="primary" @click="handleSearch">查询</el-button> | 33 | <el-button type="primary" @click="handleSearch">查询</el-button> |
34 | </el-form-item> | 34 | </el-form-item> |
35 | </el-col> | 35 | </el-col> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:27:16 | 4 | * @LastEditTime: 2023-07-17 13:18:26 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
... | @@ -37,8 +37,8 @@ | ... | @@ -37,8 +37,8 @@ |
37 | </el-col> | 37 | </el-col> |
38 | <el-col :span="6" class="btnColRight"> | 38 | <el-col :span="6" class="btnColRight"> |
39 | <el-form-item> | 39 | <el-form-item> |
40 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ||
41 | <el-button type="primary" @click="handleSearch">查询</el-button> | 40 | <el-button type="primary" @click="handleSearch">查询</el-button> |
41 | <el-button type="primary" @click="resetForm(true)">重置</el-button> | ||
42 | </el-form-item> | 42 | </el-form-item> |
43 | </el-col> | 43 | </el-col> |
44 | </el-row> | 44 | </el-row> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:27:19 | 4 | * @LastEditTime: 2023-07-17 13:18:34 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
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> | 33 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> |
34 | <el-button type="primary" @click="handleSearch">查询</el-button> | 34 | <el-button type="primary" @click="handleSearch">查询</el-button> |
35 | </el-form-item> | 35 | </el-form-item> |
36 | </el-col> | 36 | </el-col> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:27:26 | 4 | * @LastEditTime: 2023-07-17 13:18:39 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
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">重置</el-button> | 33 | <!-- <el-button type="primary" @click="resetForm">重置</el-button> --> |
34 | <el-button type="primary" @click="handleSearch">查询</el-button> | 34 | <el-button type="primary" @click="handleSearch">查询</el-button> |
35 | </el-form-item> | 35 | </el-form-item> |
36 | </el-col> | 36 | </el-col> | ... | ... |
1 | <!-- | 1 | <!-- |
2 | * @Description: | 2 | * @Description: |
3 | * @Autor: renchao | 3 | * @Autor: renchao |
4 | * @LastEditTime: 2023-07-13 15:27:34 | 4 | * @LastEditTime: 2023-07-17 13:18:43 |
5 | --> | 5 | --> |
6 | <template> | 6 | <template> |
7 | <!-- 主体权利信息查询 --> | 7 | <!-- 主体权利信息查询 --> |
... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
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> | 33 | <!-- <el-button type="primary" @click="resetForm(true)">重置</el-button> --> |
34 | <el-button type="primary" @click="handleSearch">查询</el-button> | 34 | <el-button type="primary" @click="handleSearch">查询</el-button> |
35 | </el-form-item> | 35 | </el-form-item> |
36 | </el-col> | 36 | </el-col> | ... | ... |
-
Please register or sign in to post a comment