|
@@ -16,7 +16,7 @@
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
<a-form-item label="网点名称" :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol">
|
|
|
- <a-input id="network-name" allowClear :maxLength="30" v-model="queryParam.name" placeholder="请输入网点名称" />
|
|
|
+ <a-input id="network-queryWord" allowClear :maxLength="30" v-model="queryParam.queryWord" placeholder="请输入网点名称" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
@@ -104,7 +104,7 @@ export default {
|
|
|
queryParam: {
|
|
|
beginDate: null, // 开始时间
|
|
|
endDate: null, // 结束时间
|
|
|
- name: '', // 网点名称
|
|
|
+ queryWord: '', // 网点名称
|
|
|
provinceCode: null, // 省
|
|
|
cityCode: null, // 市
|
|
|
districtCode: null // 区
|
|
@@ -172,7 +172,7 @@ export default {
|
|
|
handleReset () {
|
|
|
this.queryParam.beginDate = null
|
|
|
this.queryParam.endDate = null
|
|
|
- this.queryParam.name = ''
|
|
|
+ this.queryParam.queryWord = ''
|
|
|
this.queryParam.provinceCode = null
|
|
|
this.queryParam.cityCode = null
|
|
|
this.queryParam.districtCode = null
|