资源分类

This commit is contained in:
shijingjing
2022-10-08 11:33:13 +08:00
parent 1bbb14bf5d
commit 89a22c82c9
2 changed files with 6 additions and 21 deletions

View File

@@ -15,7 +15,6 @@
</ai-search-bar>
<ai-table :tableData="tableData" :total="total" :current.sync="search.current" :size.sync="search.size"
@getList="getList()" :col-configs="colConfigs" :dict="dict">
<!-- @sort-change="changeTableSort" -->
</ai-table>
</template>
</ai-list>
@@ -66,7 +65,7 @@ export default {
}).then(res=> {
if(res?.data) {
this.tableData = res.data.records
this.total = res.total
this.total = res.data.total
}
})
},