111
Showing
2 changed files
with
68 additions
and
32 deletions
... | @@ -8,49 +8,80 @@ | ... | @@ -8,49 +8,80 @@ |
8 | title="高级搜索"> | 8 | title="高级搜索"> |
9 | <el-form :model="ruleForm" ref="ruleForm" label-width="100px"> | 9 | <el-form :model="ruleForm" ref="ruleForm" label-width="100px"> |
10 | <el-row> | 10 | <el-row> |
11 | <!-- <el-col :span="8"> | 11 | <el-col :span="8"> |
12 | <el-form-item label="申请业务名称" prop="sqywmc"> | 12 | <el-form-item label="受理开始时间" prop="slkssj"> |
13 | <el-input v-model.trim="ruleForm.sqywmc" clearable placeholder="请输入申请业务名称"></el-input> | 13 | <el-date-picker v-model="ruleForm.slkssj" value-format="yyyy-MM-dd" class="width100" type="date" |
14 | placeholder="请选择日期" clearable> | ||
15 | </el-date-picker> | ||
14 | </el-form-item> | 16 | </el-form-item> |
15 | </el-col> --> | 17 | </el-col> |
16 | <el-col :span="8"> | 18 | <el-col :span="8"> |
17 | <el-form-item label="权利人" prop="qlrmc"> | 19 | <el-form-item label="受理结束时间" prop="sljssj"> |
18 | <el-input v-model.trim="ruleForm.qlrmc" clearable placeholder="请输入权利人"></el-input> | 20 | <el-date-picker v-model="ruleForm.sljssj" value-format="yyyy-MM-dd" class="width100" type="date" |
21 | placeholder="请选择日期" clearable> | ||
22 | </el-date-picker> | ||
19 | </el-form-item> | 23 | </el-form-item> |
20 | </el-col> | 24 | </el-col> |
21 | <el-col :span="8"> | 25 | <el-col :span="8"> |
22 | <el-form-item label="义务人" prop="ywrmc"> | 26 | <el-form-item label="受理人员" prop="slry"> |
23 | <el-input v-model.trim="ruleForm.ywrmc" clearable placeholder="请输入义务人"></el-input> | 27 | <el-input v-model.trim="ruleForm.slry" clearable placeholder="请输入义务人"></el-input> |
24 | </el-form-item> | 28 | </el-form-item> |
25 | </el-col> | 29 | </el-col> |
26 | <el-col :span="8" class="btnColRight"> | ||
27 | <el-button type="primary" icon="el-icon-search" @click="submitForm('ruleForm')">查询</el-button> | ||
28 | </el-col> | ||
29 | </el-row> | 30 | </el-row> |
30 | <!-- <el-row> | 31 | <el-row> |
32 | <!-- <el-col :span="8"> | ||
33 | <el-form-item label="办理环节" prop="stepcfgid"> | ||
34 | <el-select | ||
35 | v-model="queryForm.stepcfgid" | ||
36 | class="width100" | ||
37 | filterable | ||
38 | @change="handleSelect('stepCfg', 'stepCfgName', 'stepcfgid')" | ||
39 | @clear="handleEmpty('stepCfgName')" | ||
40 | clearable | ||
41 | placeholder="请选择办理环节"> | ||
42 | <el-option | ||
43 | v-for="item in dictData['stepCfg']" | ||
44 | :key="item.dcode" | ||
45 | :label="item.dname" | ||
46 | :value="item.dcode"> | ||
47 | </el-option> | ||
48 | </el-select> | ||
49 | </el-form-item> | ||
50 | </el-col> --> | ||
31 | <el-col :span="8"> | 51 | <el-col :span="8"> |
32 | <el-form-item label="受理时间" prop="slsj"> | 52 | <el-form-item label="原不动产权证号" prop="ybdcqzh"> |
33 | <el-date-picker v-model="ruleForm.slsj" value-format="yyyy-MM-dd" class="width100" type="date" | 53 | <el-input v-model.trim="ruleForm.ybdcqzh" clearable placeholder="请输入申请业务名称"></el-input> |
34 | placeholder="请选择日期" clearable> | 54 | </el-form-item> |
35 | </el-date-picker> | 55 | </el-col> |
56 | <el-col :span="8"> | ||
57 | <el-form-item label="合同号" prop="zjzl"> | ||
58 | <el-input v-model.trim="ruleForm.qlrmc" clearable placeholder="请输入合同号"></el-input> | ||
36 | </el-form-item> | 59 | </el-form-item> |
37 | </el-col> | 60 | </el-col> |
38 | </el-row> --> | 61 | |
62 | <!-- <el-col :span="8" class="btnColRight"> | ||
63 | <el-button type="primary" icon="el-icon-search" @click="submitForm('ruleForm')">查询</el-button> | ||
64 | </el-col> --> | ||
65 | </el-row> | ||
66 | |||
39 | <el-row class="search-btn"> | 67 | <el-row class="search-btn"> |
40 | <!-- <el-button type="text" @click.native="closeDialog">收起搜索</el-button> --> | 68 | <el-button type="text" @click.native="closeDialog">收起搜索</el-button> |
41 | <!-- <el-button type="primary" icon="el-icon-search" @click="submitForm('ruleForm')">查询</el-button> --> | 69 | <el-button type="primary" icon="el-icon-search" @click="submitForm('ruleForm')">查询</el-button> |
42 | <!-- <el-button icon="el-icon-refresh-left" @click="resetForm('ruleForm')">重置</el-button> --> | 70 | <el-button icon="el-icon-refresh-left" @click="resetForm('ruleForm')">重置</el-button> |
43 | </el-row> | 71 | </el-row> |
44 | </el-form> | 72 | </el-form> |
45 | </dialogBox> | 73 | </dialogBox> |
46 | </template> | 74 | </template> |
47 | <script> | 75 | <script> |
48 | 76 | import { mapGetters } from "vuex"; | |
49 | export default { | 77 | export default { |
50 | props: { | 78 | props: { |
51 | value: { type: Boolean, default: false }, | 79 | value: { type: Boolean, default: false }, |
52 | advancedForm: { type: Object, default: "" } | 80 | advancedForm: { type: Object, default: "" } |
53 | }, | 81 | }, |
82 | computed: { | ||
83 | ...mapGetters(["dictData", "transfer"]), | ||
84 | }, | ||
54 | data () { | 85 | data () { |
55 | return { | 86 | return { |
56 | myValue: this.value, | 87 | myValue: this.value, |
... | @@ -58,7 +89,9 @@ | ... | @@ -58,7 +89,9 @@ |
58 | sqywmc: '', | 89 | sqywmc: '', |
59 | qlrmc: '', | 90 | qlrmc: '', |
60 | ywrmc: '', | 91 | ywrmc: '', |
61 | slsj: '' | 92 | slsj: '', |
93 | stepcfgid: '', | ||
94 | ybdcqzh: '', | ||
62 | } | 95 | } |
63 | } | 96 | } |
64 | }, | 97 | }, |
... | @@ -90,7 +123,8 @@ | ... | @@ -90,7 +123,8 @@ |
90 | sqywmc: '', | 123 | sqywmc: '', |
91 | qlrmc: '', | 124 | qlrmc: '', |
92 | ywrmc: '', | 125 | ywrmc: '', |
93 | slsj: '' | 126 | slsj: '', |
127 | ybdcqzh: '', | ||
94 | } | 128 | } |
95 | }, | 129 | }, |
96 | /** | 130 | /** | ... | ... |
... | @@ -9,7 +9,7 @@ | ... | @@ -9,7 +9,7 @@ |
9 | <div class="from-clues-header"> | 9 | <div class="from-clues-header"> |
10 | <el-form :model="queryForm" ref="queryForm" @submit.native.prevent label-width="100px"> | 10 | <el-form :model="queryForm" ref="queryForm" @submit.native.prevent label-width="100px"> |
11 | <el-row> | 11 | <el-row> |
12 | <el-col :span="5"> | 12 | <el-col :span="6"> |
13 | <el-form-item label="业务来源" prop="ywly"> | 13 | <el-form-item label="业务来源" prop="ywly"> |
14 | <el-select v-model="queryForm.ywly" class="width100" filterable clearable placeholder="请选择业务来源"> | 14 | <el-select v-model="queryForm.ywly" class="width100" filterable clearable placeholder="请选择业务来源"> |
15 | <el-option v-for="item in dictData['ywly']" :key="item.dcode" :label="item.dname" :value="item.dcode"> | 15 | <el-option v-for="item in dictData['ywly']" :key="item.dcode" :label="item.dname" :value="item.dcode"> |
... | @@ -39,17 +39,12 @@ | ... | @@ -39,17 +39,12 @@ |
39 | </el-input> | 39 | </el-input> |
40 | </el-form-item> | 40 | </el-form-item> |
41 | </el-col> | 41 | </el-col> |
42 | 42 | <el-col :span="3" class="btnColRight"> | |
43 | <el-col :span="4" class="btnColRight"> | 43 | <el-button @click="handleReset">重置</el-button> |
44 | <el-form-item> | ||
45 | <el-button @click="handleReset">重置</el-button> | ||
46 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> | ||
47 | <!-- <el-button @click="moreQueryClick">高级查询</el-button> --> | ||
48 | </el-form-item> | ||
49 | </el-col> | 44 | </el-col> |
50 | </el-row> | 45 | </el-row> |
51 | <el-row> | 46 | <el-row> |
52 | <el-col :span="5"> | 47 | <el-col :span="6"> |
53 | <el-form-item label="不动产单元号" prop="bdcdyh"> | 48 | <el-form-item label="不动产单元号" prop="bdcdyh"> |
54 | <el-input placeholder="请输入不动产单元号" v-model.trim="queryForm.bdcdyh" clearable class="width100"> | 49 | <el-input placeholder="请输入不动产单元号" v-model.trim="queryForm.bdcdyh" clearable class="width100"> |
55 | </el-input> | 50 | </el-input> |
... | @@ -73,6 +68,13 @@ | ... | @@ -73,6 +68,13 @@ |
73 | </el-input> | 68 | </el-input> |
74 | </el-form-item> | 69 | </el-form-item> |
75 | </el-col> | 70 | </el-col> |
71 | <el-col :span="3" class="btnColRight"> | ||
72 | <el-form-item> | ||
73 | <el-button @click="handleReset">重置</el-button> | ||
74 | <el-button type="primary" native-type="submit" @click="handleSearch">查询</el-button> | ||
75 | <!-- <el-button @click="moreQueryClick">高级查询</el-button> --> | ||
76 | </el-form-item> | ||
77 | </el-col> | ||
76 | </el-row> | 78 | </el-row> |
77 | </el-form> | 79 | </el-form> |
78 | </div> | 80 | </div> | ... | ... |
-
Please register or sign in to post a comment