rollback^2
xy 10 months ago
parent 037acc1fbc
commit e01b6c58f9

@ -60,7 +60,7 @@
icon="el-icon-search"
type="primary"
size="small"
@click="getList"
@click="getList(true)"
>搜索</el-button
>
<el-button
@ -572,10 +572,13 @@ export default {
}
},
async getList() {
async getList(refresh=false) {
if (this.loading) return
this.loading = true;
try {
if (refresh) {
this.select.page = 1
}
const res = await flowList(this.$route.params.type, this.select, false);
console.log(res);
if (this.$route.params.type === 'todo') {

Loading…
Cancel
Save