Commit ab1c965c authored by chenwei's avatar chenwei

Merge branch 'feature/099_customer_filter' into 'dev'

Feature/099 customer filter

See merge request !5
parents bd0fef39 c615e028
...@@ -268,10 +268,16 @@ export default { ...@@ -268,10 +268,16 @@ export default {
}); });
}, },
handleGetCityList(id) { handleGetCityList(id) {
let params = { if (id) {
id: id, let params = {
}; id: id,
getCityList(params).then((res) => {}); };
getCityList(params).then((res) => {
this.cityList = res.data;
});
} else {
this.cityList = [];
}
}, },
handleQuery() { handleQuery() {
this.queryParams.pageNo = 1; this.queryParams.pageNo = 1;
......
...@@ -321,8 +321,8 @@ ...@@ -321,8 +321,8 @@
<pagination <pagination
v-show="total > 0" v-show="total > 0"
:total="total" :total="total"
:page.sync="queryParams.pageNo" :page.sync="queryParams.page"
:limit.sync="queryParams.pageSize" :limit.sync="queryParams.rows"
@pagination="getList" @pagination="getList"
/> />
<!-- 查看 编辑 新增弹窗 --> <!-- 查看 编辑 新增弹窗 -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment