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 {
});
},
handleGetCityList(id) {
if (id) {
let params = {
id: id,
};
getCityList(params).then((res) => {});
getCityList(params).then((res) => {
this.cityList = res.data;
});
} else {
this.cityList = [];
}
},
handleQuery() {
this.queryParams.pageNo = 1;
......
......@@ -321,8 +321,8 @@
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNo"
:limit.sync="queryParams.pageSize"
:page.sync="queryParams.page"
:limit.sync="queryParams.rows"
@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