Commit 45ee1c7a by Sxy

fix: 页面

parent a3d5a784
......@@ -93,12 +93,12 @@
page: 1,
loading: false,
checkAll: false,
checkAll: true,
checkedConditions: options.map((item, index) => {
return index + 1
}),
conditions: options,
isIndeterminate: true
isIndeterminate: false
}
},
methods: {
......@@ -110,7 +110,9 @@
let data = await axios.post(`/list`, {
page: this.page,
limit: this.limit,
conditions: this.checkedConditions,
conditions: this.checkedConditions.sort((a, b) => {
return a - b
}),
name: this.formInline.name
});
data = data.data;
......
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