商家端保存商品列表筛选条件

This commit is contained in:
mabo
2021-05-14 17:28:01 +08:00
parent b6b45926f9
commit f2c2734b15
20 changed files with 132 additions and 105 deletions

View File

@@ -41,6 +41,7 @@
></DatePicker>
</Form-item>
<Button @click="handleSearch" type="primary" class="search-btn" icon="ios-search">搜索</Button>
<Button @click="handleReset" class="ml_10">重置</Button>
</Form>
</Row>
<Row class="operation">
@@ -207,6 +208,13 @@ export default {
this.searchForm.pageSize = 10;
this.getDataList();
},
handleReset() {
this.selectDate = ''
this.searchForm = {}
this.searchForm.pageNumber = 0;
this.searchForm.pageSize = 10;
this.getDataList();
},
edit(row) {
// 编辑
@@ -248,16 +256,9 @@ export default {
});
},
},
mounted() {
activated() {
this.init();
},
watch: {
$route(to, from) {
if (to.fullPath == "/promotion/full-cut") {
this.init();
}
},
},
}
};
</script>
<style lang="scss" scoped>