|
@@ -16,7 +16,7 @@
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :xs="24" :sm="12" :md="8" :lg="6">
|
|
<a-col :xs="24" :sm="12" :md="8" :lg="6">
|
|
<a-form-item label="网点名称" :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol">
|
|
<a-form-item label="网点名称" :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol">
|
|
- <a-input id="collector-stationNo" allowClear :maxLength="30" v-model="queryParam.stationNo" placeholder="请输入网点名称" />
|
|
|
|
|
|
+ <a-input id="collector-stationName" allowClear :maxLength="30" v-model="queryParam.stationName" placeholder="请输入网点名称" />
|
|
</a-form-item>
|
|
</a-form-item>
|
|
</a-col>
|
|
</a-col>
|
|
<a-col :xs="24" :sm="12" :md="8" :lg="6">
|
|
<a-col :xs="24" :sm="12" :md="8" :lg="6">
|
|
@@ -95,7 +95,7 @@ export default {
|
|
registerBeginDate: null, // 开始时间
|
|
registerBeginDate: null, // 开始时间
|
|
registerEndDate: null, // 结束时间
|
|
registerEndDate: null, // 结束时间
|
|
nameOrPhone: '', // 采集员姓名或手机号
|
|
nameOrPhone: '', // 采集员姓名或手机号
|
|
- stationNo: '' // 网点名称
|
|
|
|
|
|
+ stationName: '' // 网点名称
|
|
},
|
|
},
|
|
// 表头
|
|
// 表头
|
|
columns: [
|
|
columns: [
|
|
@@ -153,7 +153,7 @@ export default {
|
|
this.queryParam.nameOrPhone = ''
|
|
this.queryParam.nameOrPhone = ''
|
|
this.time = []
|
|
this.time = []
|
|
this.$refs.table.refresh(true)
|
|
this.$refs.table.refresh(true)
|
|
- this.queryParam.stationNo = ''
|
|
|
|
|
|
+ this.queryParam.stationName = ''
|
|
},
|
|
},
|
|
// 新增、编辑网点
|
|
// 新增、编辑网点
|
|
handleEdit (row) {
|
|
handleEdit (row) {
|