表格查询功能修改
Showing
37 changed files
with
67 additions
and
70 deletions
... | @@ -12,14 +12,18 @@ export default { | ... | @@ -12,14 +12,18 @@ export default { |
12 | ...mapGetters(['dictData']), | 12 | ...mapGetters(['dictData']), |
13 | }, | 13 | }, |
14 | mounted () { | 14 | mounted () { |
15 | // if (this.fetchData) { | 15 | this.handleSearch() |
16 | // this.fetchData() | 16 | }, |
17 | // } | 17 | methods: { |
18 | handleSearch(){ | ||
19 | this.pageData.currentPage = 1 | ||
20 | if (this.fetchData) { | ||
21 | this.fetchData() | ||
22 | } | ||
18 | if (this.queryClick) { | 23 | if (this.queryClick) { |
19 | this.queryClick() | 24 | this.queryClick() |
20 | } | 25 | } |
21 | }, | 26 | }, |
22 | methods: { | ||
23 | handleSizeChange (val) { | 27 | handleSizeChange (val) { |
24 | this.pageData.currentPage = 1 | 28 | this.pageData.currentPage = 1 |
25 | this.pageData.pageSize = val | 29 | this.pageData.pageSize = val |
... | @@ -27,14 +31,9 @@ export default { | ... | @@ -27,14 +31,9 @@ export default { |
27 | }, | 31 | }, |
28 | handleCurrentChange (val) { | 32 | handleCurrentChange (val) { |
29 | this.pageData.currentPage = val | 33 | this.pageData.currentPage = val |
30 | // if (this.fetchData) { | ||
31 | // this.fetchData() | ||
32 | // } | ||
33 | console.log('this.queryClick,', this.queryClick, 'this.fetchData', this.fetchData); | ||
34 | if (this.queryClick) { | 34 | if (this.queryClick) { |
35 | this.queryClick() | 35 | this.queryClick() |
36 | } | 36 | } |
37 | console.log(val, this.pageData.currentPage, 'this.pageDatathis.pageData'); | ||
38 | }, | 37 | }, |
39 | handleDel () { | 38 | handleDel () { |
40 | let deleteAfterPage = Math.ceil((this.tableData.total - 1) / this.pageData.pageSize) | 39 | let deleteAfterPage = Math.ceil((this.tableData.total - 1) / this.pageData.pageSize) | ... | ... |
... | @@ -6,19 +6,19 @@ | ... | @@ -6,19 +6,19 @@ |
6 | <el-row> | 6 | <el-row> |
7 | <el-col :span="5"> | 7 | <el-col :span="5"> |
8 | <el-form-item label="业务号"> | 8 | <el-form-item label="业务号"> |
9 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" @clear="queryClick" clearable class="width100"> | 9 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width100"> |
10 | </el-input> | 10 | </el-input> |
11 | </el-form-item> | 11 | </el-form-item> |
12 | </el-col> | 12 | </el-col> |
13 | <el-col :span="5"> | 13 | <el-col :span="5"> |
14 | <el-form-item label="业务号"> | 14 | <el-form-item label="业务号"> |
15 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" @clear="queryClick" clearable class="width100"> | 15 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" 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="14" class="btnColRight"> | 19 | <el-col :span="14" class="btnColRight"> |
20 | <el-form-item> | 20 | <el-form-item> |
21 | <el-button type="primary" native-type="submit" @click="queryClick">查询</el-button> | 21 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
22 | <el-button type="primary" @click="openDialog()">新增</el-button> | 22 | <el-button type="primary" @click="openDialog()">新增</el-button> |
23 | </el-form-item> | 23 | </el-form-item> |
24 | </el-col> | 24 | </el-col> | ... | ... |
... | @@ -6,13 +6,13 @@ | ... | @@ -6,13 +6,13 @@ |
6 | <el-row> | 6 | <el-row> |
7 | <el-col :span="5"> | 7 | <el-col :span="5"> |
8 | <el-form-item label="查询编号"> | 8 | <el-form-item label="查询编号"> |
9 | <el-input placeholder="请输入编号" v-model="queryForm.cxbh" class="width100" clearable @clear="queryClick"> | 9 | <el-input placeholder="请输入编号" v-model="queryForm.cxbh" class="width100" clearable> |
10 | </el-input> | 10 | </el-input> |
11 | </el-form-item> | 11 | </el-form-item> |
12 | </el-col> | 12 | </el-col> |
13 | <el-col :span="5"> | 13 | <el-col :span="5"> |
14 | <el-form-item label="申请人"> | 14 | <el-form-item label="申请人"> |
15 | <el-input placeholder="请输入申请人" v-model="queryForm.sqr" class="width100" @clear="queryClick" clearable> | 15 | <el-input placeholder="请输入申请人" v-model="queryForm.sqr" class="width100" clearable> |
16 | </el-input> | 16 | </el-input> |
17 | </el-form-item> | 17 | </el-form-item> |
18 | </el-col> | 18 | </el-col> |
... | @@ -28,7 +28,7 @@ | ... | @@ -28,7 +28,7 @@ |
28 | </el-col> | 28 | </el-col> |
29 | <el-col :span="3" class="btnColRight"> | 29 | <el-col :span="3" class="btnColRight"> |
30 | <el-form-item> | 30 | <el-form-item> |
31 | <el-button type="primary" native-type="submit" @click="queryClick">查询</el-button> | 31 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
32 | <el-button type="primary" @click="openAddDialog">新增</el-button> | 32 | <el-button type="primary" @click="openAddDialog">新增</el-button> |
33 | </el-form-item> | 33 | </el-form-item> |
34 | </el-col> | 34 | </el-col> | ... | ... |
... | @@ -27,7 +27,7 @@ | ... | @@ -27,7 +27,7 @@ |
27 | </el-form-item> | 27 | </el-form-item> |
28 | </el-col> | 28 | </el-col> |
29 | <el-col :span="3" class="btnColRight"> | 29 | <el-col :span="3" class="btnColRight"> |
30 | <el-button type="primary" native-type="submit" @click="queryClick()">查询</el-button> | 30 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
31 | <el-button type="primary" @click="handleAdd">新增</el-button> | 31 | <el-button type="primary" @click="handleAdd">新增</el-button> |
32 | </el-col> | 32 | </el-col> |
33 | </el-row> | 33 | </el-row> | ... | ... |
... | @@ -22,13 +22,13 @@ | ... | @@ -22,13 +22,13 @@ |
22 | </el-col> | 22 | </el-col> |
23 | <el-col :span="6"> | 23 | <el-col :span="6"> |
24 | <el-form-item label="查询编号"> | 24 | <el-form-item label="查询编号"> |
25 | <el-input placeholder="请输入编号" @clear="queryClick" v-model="queryForm.cxbh" class="width100" clearable> | 25 | <el-input placeholder="请输入编号" v-model="queryForm.cxbh" class="width100" clearable> |
26 | </el-input> | 26 | </el-input> |
27 | </el-form-item> | 27 | </el-form-item> |
28 | </el-col> | 28 | </el-col> |
29 | <el-col :span="6"> | 29 | <el-col :span="6"> |
30 | <el-form-item label="申请人"> | 30 | <el-form-item label="申请人"> |
31 | <el-input placeholder="请输入申请人" @clear="queryClick" v-model="queryForm.sqr" class="width100" clearable> | 31 | <el-input placeholder="请输入申请人" v-model="queryForm.sqr" class="width100" clearable> |
32 | </el-input> | 32 | </el-input> |
33 | </el-form-item> | 33 | </el-form-item> |
34 | </el-col> | 34 | </el-col> |
... | @@ -50,7 +50,7 @@ | ... | @@ -50,7 +50,7 @@ |
50 | </el-col> | 50 | </el-col> |
51 | <el-col :span="12" class="btnColRight"> | 51 | <el-col :span="12" class="btnColRight"> |
52 | <el-form-item> | 52 | <el-form-item> |
53 | <el-button type="primary" native-type="submit" @click="queryClick">查询</el-button> | 53 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
54 | <el-button @click="moreQueryClick()">高级查询</el-button> | 54 | <el-button @click="moreQueryClick()">高级查询</el-button> |
55 | </el-form-item> | 55 | </el-form-item> |
56 | </el-col> | 56 | </el-col> | ... | ... |
... | @@ -6,17 +6,17 @@ | ... | @@ -6,17 +6,17 @@ |
6 | <el-row :gutter="20"> | 6 | <el-row :gutter="20"> |
7 | <el-col :span="6"> | 7 | <el-col :span="6"> |
8 | <el-form-item label="字典类型编码"> | 8 | <el-form-item label="字典类型编码"> |
9 | <el-input v-model="ruleForm.dcode" @clear="queryClick" clearable placeholder="字典类型编码"></el-input> | 9 | <el-input v-model="ruleForm.dcode" clearable placeholder="字典类型编码"></el-input> |
10 | </el-form-item> | 10 | </el-form-item> |
11 | </el-col> | 11 | </el-col> |
12 | <el-col :span="6"> | 12 | <el-col :span="6"> |
13 | <el-form-item label="字典类型名称"> | 13 | <el-form-item label="字典类型名称"> |
14 | <el-input v-model="ruleForm.dname" @clear="queryClick" clearable placeholder="字典类型名称"></el-input> | 14 | <el-input v-model="ruleForm.dname" clearable placeholder="字典类型名称"></el-input> |
15 | </el-form-item> | 15 | </el-form-item> |
16 | </el-col> | 16 | </el-col> |
17 | <el-col :span="12" class="btnColRight"> | 17 | <el-col :span="12" class="btnColRight"> |
18 | <el-form-item> | 18 | <el-form-item> |
19 | <el-button type="primary" native-type="submit" icon="el-icon-search" @click="queryClick">查询</el-button> | 19 | <el-button type="primary" native-type="submit" icon="el-icon-search" @click="handleSearch">查询</el-button> |
20 | <el-button icon="el-icon-refresh" @click="handleRefresh">刷新缓存</el-button> | 20 | <el-button icon="el-icon-refresh" @click="handleRefresh">刷新缓存</el-button> |
21 | </el-form-item> | 21 | </el-form-item> |
22 | </el-col> | 22 | </el-col> | ... | ... |
... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
11 | </el-col> | 11 | </el-col> |
12 | <el-col :span="19" class="btnColRight"> | 12 | <el-col :span="19" class="btnColRight"> |
13 | <el-form-item> | 13 | <el-form-item> |
14 | <el-button type="primary" native-type="submit" @click="queryClick()">查询</el-button> | 14 | <el-button type="primary" native-type="submit" @click="handleSearch">查询1</el-button> |
15 | <el-button type="primary" @click="openDialog()">新增</el-button> | 15 | <el-button type="primary" @click="openDialog()">新增</el-button> |
16 | </el-form-item> | 16 | </el-form-item> |
17 | </el-col> | 17 | </el-col> | ... | ... |
... | @@ -6,7 +6,7 @@ | ... | @@ -6,7 +6,7 @@ |
6 | <el-row :gutter="20"> | 6 | <el-row :gutter="20"> |
7 | <el-col :span="6"> | 7 | <el-col :span="6"> |
8 | <el-form-item label="权利类型"> | 8 | <el-form-item label="权利类型"> |
9 | <el-select v-model="queryForm.qllx" @change="queryClick" class="width100" filterable clearable | 9 | <el-select v-model="queryForm.qllx" class="width100" filterable clearable |
10 | placeholder="请选择权利类型"> | 10 | placeholder="请选择权利类型"> |
11 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 11 | <el-option v-for="item in dictData['A8']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
12 | </el-option> | 12 | </el-option> |
... | @@ -15,7 +15,7 @@ | ... | @@ -15,7 +15,7 @@ |
15 | </el-col> | 15 | </el-col> |
16 | <el-col :span="18" class="btnColRight"> | 16 | <el-col :span="18" class="btnColRight"> |
17 | <el-form-item> | 17 | <el-form-item> |
18 | <el-button type="primary" icon="el-icon-search" @click="queryClick">查询</el-button> | 18 | <el-button type="primary" icon="el-icon-search" @click="handleSearch">查询</el-button> |
19 | <el-button @click="moreQueryClick()">高级查询</el-button> | 19 | <el-button @click="moreQueryClick()">高级查询</el-button> |
20 | </el-form-item> | 20 | </el-form-item> |
21 | </el-col> | 21 | </el-col> | ... | ... |
... | @@ -6,7 +6,7 @@ | ... | @@ -6,7 +6,7 @@ |
6 | <el-row :gutter="20"> | 6 | <el-row :gutter="20"> |
7 | <el-col :span="6"> | 7 | <el-col :span="6"> |
8 | <el-form-item label="权利类型"> | 8 | <el-form-item label="权利类型"> |
9 | <el-select v-model="queryForm.qllx" @change="queryClick" filterable class="width100" clearable | 9 | <el-select v-model="queryForm.qllx" filterable class="width100" clearable |
10 | placeholder="请选择权利类型"> | 10 | placeholder="请选择权利类型"> |
11 | <el-option v-for="item in qllxs" :key="item.value" :label="item.label" :value="item.value"> | 11 | <el-option v-for="item in qllxs" :key="item.value" :label="item.label" :value="item.value"> |
12 | </el-option> | 12 | </el-option> |
... | @@ -15,13 +15,13 @@ | ... | @@ -15,13 +15,13 @@ |
15 | </el-col> | 15 | </el-col> |
16 | <el-col :span="6"> | 16 | <el-col :span="6"> |
17 | <el-form-item label="登记业务编码"> | 17 | <el-form-item label="登记业务编码"> |
18 | <el-input placeholder="请输入登记业务编码" @clear="queryClick" v-model="queryForm.djywbm" clearable> | 18 | <el-input placeholder="请输入登记业务编码" v-model="queryForm.djywbm" clearable> |
19 | </el-input> | 19 | </el-input> |
20 | </el-form-item> | 20 | </el-form-item> |
21 | </el-col> | 21 | </el-col> |
22 | <el-col :span="12" class="btnColRight"> | 22 | <el-col :span="12" class="btnColRight"> |
23 | <el-form-item> | 23 | <el-form-item> |
24 | <el-button type="primary" native-type="submit" icon="el-icon-search" @click="queryClick">查询</el-button> | 24 | <el-button type="primary" native-type="submit" icon="el-icon-search" @click="handleSearch">查询</el-button> |
25 | </el-form-item> | 25 | </el-form-item> |
26 | </el-col> | 26 | </el-col> |
27 | </el-row> | 27 | </el-row> | ... | ... |
... | @@ -19,7 +19,7 @@ | ... | @@ -19,7 +19,7 @@ |
19 | </el-col> | 19 | </el-col> |
20 | <el-col :span="14" class="btnColRight"> | 20 | <el-col :span="14" class="btnColRight"> |
21 | <el-form-item> | 21 | <el-form-item> |
22 | <el-button type="primary" native-type="submit" @click="queryClick()">查询</el-button> | 22 | <el-button type="primary" @click="handleSearch">查询</el-button> |
23 | <el-button type="primary" @click="openDialog()">新增</el-button> | 23 | <el-button type="primary" @click="openDialog()">新增</el-button> |
24 | </el-form-item> | 24 | </el-form-item> |
25 | </el-col> | 25 | </el-col> | ... | ... |
... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
11 | </el-col> | 11 | </el-col> |
12 | <el-col :span="19" class="btnColRight"> | 12 | <el-col :span="19" class="btnColRight"> |
13 | <el-form-item> | 13 | <el-form-item> |
14 | <el-button type="primary" native-type="submit" @click="queryClick()">查询</el-button> | 14 | <el-button type="primary" @click="handleSearch">查询</el-button> |
15 | <el-button type="primary" native-type="submit" @click="toReadAll()">一键已读</el-button> | 15 | <el-button type="primary" native-type="submit" @click="toReadAll()">一键已读</el-button> |
16 | </el-form-item> | 16 | </el-form-item> |
17 | </el-col> | 17 | </el-col> | ... | ... |
... | @@ -21,7 +21,7 @@ | ... | @@ -21,7 +21,7 @@ |
21 | </el-col> | 21 | </el-col> |
22 | <el-col :span="6" class="btnColRight"> | 22 | <el-col :span="6" class="btnColRight"> |
23 | <el-form-item> | 23 | <el-form-item> |
24 | <el-button type="primary" icon="el-icon-search" @click="queryClick">查询</el-button> | 24 | <el-button type="primary" icon="el-icon-search" @click="handleSearch">查询</el-button> |
25 | <el-button type="primary" icon="el-icon-search" @click="zslqClick()">证书领取</el-button> | 25 | <el-button type="primary" icon="el-icon-search" @click="zslqClick()">证书领取</el-button> |
26 | </el-form-item> | 26 | </el-form-item> |
27 | </el-col> | 27 | </el-col> | ... | ... |
... | @@ -18,7 +18,7 @@ | ... | @@ -18,7 +18,7 @@ |
18 | </el-col> | 18 | </el-col> |
19 | <el-col :span="4" class="btnColRight"> | 19 | <el-col :span="4" class="btnColRight"> |
20 | <el-form-item> | 20 | <el-form-item> |
21 | <el-button type="primary" native-type="submit" @click="queryClick">查询</el-button> | 21 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
22 | </el-form-item> | 22 | </el-form-item> |
23 | </el-col> | 23 | </el-col> |
24 | </el-row> | 24 | </el-row> | ... | ... |
... | @@ -18,7 +18,7 @@ | ... | @@ -18,7 +18,7 @@ |
18 | </el-col> | 18 | </el-col> |
19 | <el-col :span="4" class="btnColRight"> | 19 | <el-col :span="4" class="btnColRight"> |
20 | <el-form-item> | 20 | <el-form-item> |
21 | <el-button type="primary" native-type="submit" @click="queryClick">查询</el-button> | 21 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
22 | </el-form-item> | 22 | </el-form-item> |
23 | </el-col> | 23 | </el-col> |
24 | </el-row> | 24 | </el-row> | ... | ... |
... | @@ -76,7 +76,6 @@ | ... | @@ -76,7 +76,6 @@ |
76 | <el-input | 76 | <el-input |
77 | placeholder="请输入业务号" | 77 | placeholder="请输入业务号" |
78 | v-model="queryForm.ywh" | 78 | v-model="queryForm.ywh" |
79 | @clear="queryClick" | ||
80 | clearable | 79 | clearable |
81 | class="width100" | 80 | class="width100" |
82 | > | 81 | > |
... | @@ -86,7 +85,7 @@ | ... | @@ -86,7 +85,7 @@ |
86 | 85 | ||
87 | <el-col :span="4" class="btnColRight"> | 86 | <el-col :span="4" class="btnColRight"> |
88 | <el-form-item> | 87 | <el-form-item> |
89 | <el-button type="primary" native-type="submit" @click="queryClick" | 88 | <el-button type="primary" native-type="submit" @click="handleSearch" |
90 | >查询</el-button | 89 | >查询</el-button |
91 | > | 90 | > |
92 | <el-button @click="moreQueryClick">高级查询</el-button> | 91 | <el-button @click="moreQueryClick">高级查询</el-button> | ... | ... |
... | @@ -77,7 +77,6 @@ | ... | @@ -77,7 +77,6 @@ |
77 | <el-input | 77 | <el-input |
78 | placeholder="请输入业务号" | 78 | placeholder="请输入业务号" |
79 | v-model="queryForm.ywh" | 79 | v-model="queryForm.ywh" |
80 | @clear="queryClick" | ||
81 | clearable | 80 | clearable |
82 | class="width200px" | 81 | class="width200px" |
83 | > | 82 | > |
... | @@ -87,7 +86,7 @@ | ... | @@ -87,7 +86,7 @@ |
87 | 86 | ||
88 | <el-col :span="4" class="btnColRight"> | 87 | <el-col :span="4" class="btnColRight"> |
89 | <el-form-item> | 88 | <el-form-item> |
90 | <el-button type="primary" native-type="submit" @click="queryClick" | 89 | <el-button type="primary" native-type="submit" @click="handleSearch" |
91 | >查询</el-button | 90 | >查询</el-button |
92 | > | 91 | > |
93 | <el-button @click="moreQueryClick">高级查询</el-button> | 92 | <el-button @click="moreQueryClick">高级查询</el-button> | ... | ... |
... | @@ -24,7 +24,7 @@ | ... | @@ -24,7 +24,7 @@ |
24 | </el-col> | 24 | </el-col> |
25 | <el-col :span="2" class="btnColRight"> | 25 | <el-col :span="2" class="btnColRight"> |
26 | <el-form-item> | 26 | <el-form-item> |
27 | <el-button type="primary" @click="queryClick">查询</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> |
30 | </el-row> | 30 | </el-row> | ... | ... |
... | @@ -33,7 +33,7 @@ | ... | @@ -33,7 +33,7 @@ |
33 | </el-col> | 33 | </el-col> |
34 | <el-col :span="2" class="btnColRight"> | 34 | <el-col :span="2" class="btnColRight"> |
35 | <el-form-item> | 35 | <el-form-item> |
36 | <el-button type="primary" @click="queryClick">查询</el-button> | 36 | <el-button type="primary" @click="handleSearch">查询</el-button> |
37 | </el-form-item> | 37 | </el-form-item> |
38 | </el-col> | 38 | </el-col> |
39 | </el-row> | 39 | </el-row> | ... | ... |
... | @@ -49,7 +49,7 @@ | ... | @@ -49,7 +49,7 @@ |
49 | 49 | ||
50 | <el-col :span="3" class="btnColRight"> | 50 | <el-col :span="3" class="btnColRight"> |
51 | <el-form-item> | 51 | <el-form-item> |
52 | <el-button type="primary" @click="queryClick">查询</el-button> | 52 | <el-button type="primary" @click="handleSearch">查询</el-button> |
53 | </el-form-item> | 53 | </el-form-item> |
54 | </el-col> | 54 | </el-col> |
55 | </el-row> | 55 | </el-row> | ... | ... |
... | @@ -18,7 +18,7 @@ | ... | @@ -18,7 +18,7 @@ |
18 | </el-col> | 18 | </el-col> |
19 | <el-col :span="4" class="btnColRight"> | 19 | <el-col :span="4" class="btnColRight"> |
20 | <el-form-item> | 20 | <el-form-item> |
21 | <el-button type="primary" @click="queryClick">查询</el-button> | 21 | <el-button type="primary" @click="handleSearch">查询</el-button> |
22 | </el-form-item> | 22 | </el-form-item> |
23 | </el-col> | 23 | </el-col> |
24 | </el-row> | 24 | </el-row> | ... | ... |
... | @@ -18,7 +18,7 @@ | ... | @@ -18,7 +18,7 @@ |
18 | </el-col> | 18 | </el-col> |
19 | <el-col :span="4" class="btnColRight"> | 19 | <el-col :span="4" class="btnColRight"> |
20 | <el-form-item> | 20 | <el-form-item> |
21 | <el-button type="primary" @click="queryClick">查询</el-button> | 21 | <el-button type="primary" @click="handleSearch">查询</el-button> |
22 | </el-form-item> | 22 | </el-form-item> |
23 | </el-col> | 23 | </el-col> |
24 | </el-row> | 24 | </el-row> | ... | ... |
... | @@ -33,7 +33,7 @@ | ... | @@ -33,7 +33,7 @@ |
33 | </el-col> | 33 | </el-col> |
34 | <el-col :span="2" class="btnColRight"> | 34 | <el-col :span="2" class="btnColRight"> |
35 | <el-form-item> | 35 | <el-form-item> |
36 | <el-button type="primary" @click="queryClick">查询</el-button> | 36 | <el-button type="primary" @click="handleSearch">查询</el-button> |
37 | </el-form-item> | 37 | </el-form-item> |
38 | </el-col> | 38 | </el-col> |
39 | </el-row> | 39 | </el-row> | ... | ... |
... | @@ -25,7 +25,7 @@ | ... | @@ -25,7 +25,7 @@ |
25 | </el-col> | 25 | </el-col> |
26 | <el-col :span="2" class="btnColRight"> | 26 | <el-col :span="2" class="btnColRight"> |
27 | <el-form-item> | 27 | <el-form-item> |
28 | <el-button type="primary" @click="queryClick">查询</el-button> | 28 | <el-button type="primary" @click="handleSearch">查询</el-button> |
29 | </el-form-item> | 29 | </el-form-item> |
30 | </el-col> | 30 | </el-col> |
31 | </el-row> | 31 | </el-row> | ... | ... |
... | @@ -25,7 +25,7 @@ | ... | @@ -25,7 +25,7 @@ |
25 | </el-col> | 25 | </el-col> |
26 | <el-col :span="2" class="btnColRight"> | 26 | <el-col :span="2" class="btnColRight"> |
27 | <el-form-item> | 27 | <el-form-item> |
28 | <el-button type="primary" @click="queryClick">查询</el-button> | 28 | <el-button type="primary" @click="handleSearch">查询</el-button> |
29 | </el-form-item> | 29 | </el-form-item> |
30 | </el-col> | 30 | </el-col> |
31 | </el-row> | 31 | </el-row> | ... | ... |
... | @@ -52,7 +52,7 @@ | ... | @@ -52,7 +52,7 @@ |
52 | </el-col> | 52 | </el-col> |
53 | <el-col :span="4" class="btnColRight"> | 53 | <el-col :span="4" class="btnColRight"> |
54 | <el-form-item> | 54 | <el-form-item> |
55 | <el-button type="primary" @click="queryClick">查询</el-button> | 55 | <el-button type="primary" @click="handleSearch">查询</el-button> |
56 | </el-form-item> | 56 | </el-form-item> |
57 | </el-col> | 57 | </el-col> |
58 | </el-row> | 58 | </el-row> | ... | ... |
... | @@ -18,7 +18,7 @@ | ... | @@ -18,7 +18,7 @@ |
18 | </el-col> | 18 | </el-col> |
19 | <el-col :span="4" class="btnColRight"> | 19 | <el-col :span="4" class="btnColRight"> |
20 | <el-form-item> | 20 | <el-form-item> |
21 | <el-button type="primary" @click="queryClick">查询</el-button> | 21 | <el-button type="primary" @click="handleSearch">查询</el-button> |
22 | </el-form-item> | 22 | </el-form-item> |
23 | </el-col> | 23 | </el-col> |
24 | </el-row> | 24 | </el-row> | ... | ... |
... | @@ -25,7 +25,7 @@ | ... | @@ -25,7 +25,7 @@ |
25 | </el-col> | 25 | </el-col> |
26 | <el-col :span="2" class="btnColRight"> | 26 | <el-col :span="2" class="btnColRight"> |
27 | <el-form-item> | 27 | <el-form-item> |
28 | <el-button type="primary" @click="queryClick">查询</el-button> | 28 | <el-button type="primary" @click="handleSearch">查询</el-button> |
29 | </el-form-item> | 29 | </el-form-item> |
30 | </el-col> | 30 | </el-col> |
31 | </el-row> | 31 | </el-row> | ... | ... |
... | @@ -25,7 +25,7 @@ | ... | @@ -25,7 +25,7 @@ |
25 | </el-col> | 25 | </el-col> |
26 | <el-col :span="2" class="btnColRight"> | 26 | <el-col :span="2" class="btnColRight"> |
27 | <el-form-item> | 27 | <el-form-item> |
28 | <el-button type="primary" @click="queryClick">查询</el-button> | 28 | <el-button type="primary" @click="handleSearch">查询</el-button> |
29 | </el-form-item> | 29 | </el-form-item> |
30 | </el-col> | 30 | </el-col> |
31 | </el-row> | 31 | </el-row> | ... | ... |
... | @@ -25,7 +25,7 @@ | ... | @@ -25,7 +25,7 @@ |
25 | </el-col> | 25 | </el-col> |
26 | <el-col :span="2" class="btnColRight"> | 26 | <el-col :span="2" class="btnColRight"> |
27 | <el-form-item> | 27 | <el-form-item> |
28 | <el-button type="primary" @click="queryClick">查询</el-button> | 28 | <el-button type="primary" @click="handleSearch">查询</el-button> |
29 | </el-form-item> | 29 | </el-form-item> |
30 | </el-col> | 30 | </el-col> |
31 | </el-row> | 31 | </el-row> | ... | ... |
... | @@ -14,28 +14,28 @@ | ... | @@ -14,28 +14,28 @@ |
14 | </el-col> | 14 | </el-col> |
15 | <el-col :span="5"> | 15 | <el-col :span="5"> |
16 | <el-form-item label="不动产单元号" label-width="105px"> | 16 | <el-form-item label="不动产单元号" label-width="105px"> |
17 | <el-input placeholder="请输入不动产单元号" @clear="queryClick" v-model="queryForm.bdcdyh" clearable | 17 | <el-input placeholder="请输入不动产单元号" v-model="queryForm.bdcdyh" clearable |
18 | class="width100"> | 18 | class="width100"> |
19 | </el-input> | 19 | </el-input> |
20 | </el-form-item> | 20 | </el-form-item> |
21 | </el-col> | 21 | </el-col> |
22 | <el-col :span="5"> | 22 | <el-col :span="5"> |
23 | <el-form-item label="不动产权证号" label-width="105px"> | 23 | <el-form-item label="不动产权证号" label-width="105px"> |
24 | <el-input placeholder="请输入不动产权证号" @clear="queryClick" v-model="queryForm.bdcqzh" clearable | 24 | <el-input placeholder="请输入不动产权证号" v-model="queryForm.bdcqzh" clearable |
25 | class="width100"> | 25 | class="width100"> |
26 | </el-input> | 26 | </el-input> |
27 | </el-form-item> | 27 | </el-form-item> |
28 | </el-col> | 28 | </el-col> |
29 | <el-col :span="5"> | 29 | <el-col :span="5"> |
30 | <el-form-item label="业务号"> | 30 | <el-form-item label="业务号"> |
31 | <el-input placeholder="请输入业务号" @clear="queryClick" v-model="queryForm.ywh" clearable class="width100"> | 31 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width100"> |
32 | </el-input> | 32 | </el-input> |
33 | </el-form-item> | 33 | </el-form-item> |
34 | </el-col> | 34 | </el-col> |
35 | 35 | ||
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" native-type="submit" @click="queryClick">查询</el-button> | 38 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
39 | <el-button @click="moreQueryClick">高级查询</el-button> | 39 | <el-button @click="moreQueryClick">高级查询</el-button> |
40 | </el-form-item> | 40 | </el-form-item> |
41 | </el-col> | 41 | </el-col> | ... | ... |
... | @@ -30,14 +30,14 @@ | ... | @@ -30,14 +30,14 @@ |
30 | </el-col> | 30 | </el-col> |
31 | <el-col :span="5"> | 31 | <el-col :span="5"> |
32 | <el-form-item label="业务号"> | 32 | <el-form-item label="业务号"> |
33 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" @clear="queryClick" clearable class="width200px"> | 33 | <el-input placeholder="请输入业务号" v-model="queryForm.ywh" clearable class="width200px"> |
34 | </el-input> | 34 | </el-input> |
35 | </el-form-item> | 35 | </el-form-item> |
36 | </el-col> | 36 | </el-col> |
37 | 37 | ||
38 | <el-col :span="4" class="btnColRight"> | 38 | <el-col :span="4" class="btnColRight"> |
39 | <el-form-item> | 39 | <el-form-item> |
40 | <el-button type="primary" native-type="submit" @click="queryClick">查询</el-button> | 40 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
41 | <el-button @click="moreQueryClick">高级查询</el-button> | 41 | <el-button @click="moreQueryClick">高级查询</el-button> |
42 | </el-form-item> | 42 | </el-form-item> |
43 | </el-col> | 43 | </el-col> | ... | ... |
... | @@ -6,32 +6,32 @@ | ... | @@ -6,32 +6,32 @@ |
6 | <el-row> | 6 | <el-row> |
7 | <el-col :span="5"> | 7 | <el-col :span="5"> |
8 | <el-form-item label="项目名称" label-width="70px"> | 8 | <el-form-item label="项目名称" label-width="70px"> |
9 | <el-input placeholder="请输入项目名称" @clear="queryClick" v-model="queryForm.xmmc" clearable class="width100"> | 9 | <el-input placeholder="请输入项目名称" v-model="queryForm.xmmc" clearable class="width100"> |
10 | </el-input> | 10 | </el-input> |
11 | </el-form-item> | 11 | </el-form-item> |
12 | </el-col> | 12 | </el-col> |
13 | <el-col :span="5"> | 13 | <el-col :span="5"> |
14 | <el-form-item label="项目编号"> | 14 | <el-form-item label="项目编号"> |
15 | <el-input placeholder="请输入项目编号" @clear="queryClick" v-model="queryForm.xmbh" clearable class="width100"> | 15 | <el-input placeholder="请输入项目编号" v-model="queryForm.xmbh" 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="5"> | 19 | <el-col :span="5"> |
20 | <el-form-item label="宗地代码"> | 20 | <el-form-item label="宗地代码"> |
21 | <el-input placeholder="请输入宗地代码" @clear="queryClick" v-model="queryForm.zddm" clearable class="width100"> | 21 | <el-input placeholder="请输入宗地代码" v-model="queryForm.zddm" 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="5"> | 25 | <el-col :span="5"> |
26 | <el-form-item label="自然幢号"> | 26 | <el-form-item label="自然幢号"> |
27 | <el-input placeholder="请输入自然幢号" @clear="queryClick" v-model="queryForm.zrzh" clearable class="width100"> | 27 | <el-input placeholder="请输入自然幢号" v-model="queryForm.zrzh" clearable class="width100"> |
28 | </el-input> | 28 | </el-input> |
29 | </el-form-item> | 29 | </el-form-item> |
30 | </el-col> | 30 | </el-col> |
31 | 31 | ||
32 | <el-col :span="4" class="btnColRight"> | 32 | <el-col :span="4" class="btnColRight"> |
33 | <el-form-item> | 33 | <el-form-item> |
34 | <el-button type="primary" native-type="submit" @click="queryClick">查询</el-button> | 34 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
35 | <el-button @click="moreQueryClick">高级查询</el-button> | 35 | <el-button @click="moreQueryClick">高级查询</el-button> |
36 | </el-form-item> | 36 | </el-form-item> |
37 | </el-col> | 37 | </el-col> | ... | ... |
... | @@ -6,32 +6,32 @@ | ... | @@ -6,32 +6,32 @@ |
6 | <el-row> | 6 | <el-row> |
7 | <el-col :span="5"> | 7 | <el-col :span="5"> |
8 | <el-form-item label="不动产权证号" label-width="100px"> | 8 | <el-form-item label="不动产权证号" label-width="100px"> |
9 | <el-input placeholder="请输入不动产权证号" class="width100" @clear="queryClick" v-model="queryForm.bdcqzh" clearable> | 9 | <el-input placeholder="请输入不动产权证号" class="width100" v-model="queryForm.bdcqzh" clearable> |
10 | </el-input> | 10 | </el-input> |
11 | </el-form-item> | 11 | </el-form-item> |
12 | </el-col> | 12 | </el-col> |
13 | <el-col :span="5"> | 13 | <el-col :span="5"> |
14 | <el-form-item label="印刷序列号" label-width="100px"> | 14 | <el-form-item label="印刷序列号" label-width="100px"> |
15 | <el-input placeholder="请输入印刷序列号" class="width100" @clear="queryClick" v-model="queryForm.ysxlh" clearable> | 15 | <el-input placeholder="请输入印刷序列号" class="width100" v-model="queryForm.ysxlh" clearable> |
16 | </el-input> | 16 | </el-input> |
17 | </el-form-item> | 17 | </el-form-item> |
18 | </el-col> | 18 | </el-col> |
19 | <el-col :span="5"> | 19 | <el-col :span="5"> |
20 | <el-form-item label="业务号"> | 20 | <el-form-item label="业务号"> |
21 | <el-input placeholder="请输入业务号" class="width100" @clear="queryClick" v-model="queryForm.ywh" clearable> | 21 | <el-input placeholder="请输入业务号" class="width100" v-model="queryForm.ywh" clearable> |
22 | </el-input> | 22 | </el-input> |
23 | </el-form-item> | 23 | </el-form-item> |
24 | </el-col> | 24 | </el-col> |
25 | <el-col :span="5"> | 25 | <el-col :span="5"> |
26 | <el-form-item label="领取人"> | 26 | <el-form-item label="领取人"> |
27 | <el-input placeholder="请输入领取人" class="width100" @clear="queryClick" v-model="queryForm.lzrxm" clearable> | 27 | <el-input placeholder="请输入领取人" class="width100" v-model="queryForm.lzrxm" clearable> |
28 | </el-input> | 28 | </el-input> |
29 | </el-form-item> | 29 | </el-form-item> |
30 | </el-col> | 30 | </el-col> |
31 | 31 | ||
32 | <el-col :span="4" class="btnColRight"> | 32 | <el-col :span="4" class="btnColRight"> |
33 | <el-form-item> | 33 | <el-form-item> |
34 | <el-button type="primary" native-type="submit" @click="queryClick">查询</el-button> | 34 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
35 | <el-button @click="moreQueryClick()">高级查询</el-button> | 35 | <el-button @click="moreQueryClick()">高级查询</el-button> |
36 | </el-form-item> | 36 | </el-form-item> |
37 | </el-col> | 37 | </el-col> | ... | ... |
... | @@ -24,7 +24,7 @@ | ... | @@ -24,7 +24,7 @@ |
24 | </el-col> | 24 | </el-col> |
25 | <el-col :span="9" class="btnColRight"> | 25 | <el-col :span="9" class="btnColRight"> |
26 | <el-form-item> | 26 | <el-form-item> |
27 | <el-button type="primary" @click="queryClick">查询</el-button> | 27 | <el-button type="primary" @click="handleSearch">查询</el-button> |
28 | <el-button @click="moreQueryClick">高级查询</el-button> | 28 | <el-button @click="moreQueryClick">高级查询</el-button> |
29 | </el-form-item> | 29 | </el-form-item> |
30 | </el-col> | 30 | </el-col> | ... | ... |
... | @@ -27,7 +27,7 @@ | ... | @@ -27,7 +27,7 @@ |
27 | 27 | ||
28 | <el-col :span="9" class="btnColRight"> | 28 | <el-col :span="9" class="btnColRight"> |
29 | <el-form-item> | 29 | <el-form-item> |
30 | <el-button type="primary" native-type="submit" @click="queryClick">查询</el-button> | 30 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
31 | <el-button type="primary" @click="openDialog()">新增</el-button> | 31 | <el-button type="primary" @click="openDialog()">新增</el-button> |
32 | </el-form-item> | 32 | </el-form-item> |
33 | </el-col> | 33 | </el-col> | ... | ... |
... | @@ -25,7 +25,7 @@ | ... | @@ -25,7 +25,7 @@ |
25 | </el-col> | 25 | </el-col> |
26 | <el-col :span="9" class="btnColRight"> | 26 | <el-col :span="9" class="btnColRight"> |
27 | <el-form-item> | 27 | <el-form-item> |
28 | <el-button type="primary" native-type="submit" @click="queryClick">查询</el-button> | 28 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> |
29 | <el-button type="primary" @click="openDialog()">新增</el-button> | 29 | <el-button type="primary" @click="openDialog()">新增</el-button> |
30 | </el-form-item> | 30 | </el-form-item> |
31 | </el-col> | 31 | </el-col> | ... | ... |
... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
30 | 30 | ||
31 | <el-col :span="3" class="btnColRight"> | 31 | <el-col :span="3" class="btnColRight"> |
32 | <el-form-item> | 32 | <el-form-item> |
33 | <el-button type="primary" native-type="submit" icon="el-icon-search" @click="queryClick">查询</el-button> | 33 | <el-button type="primary" native-type="submit" icon="el-icon-search" @click="handleSearch">查询</el-button> |
34 | <el-button @click="moreQueryClick()">高级查询</el-button> | 34 | <el-button @click="moreQueryClick()">高级查询</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