BUG 29059

This commit is contained in:
aixianling
2022-04-14 14:53:37 +08:00
parent babbb28d07
commit 04648a7ac6

View File

@@ -74,7 +74,7 @@
</template> </template>
</ai-search-bar> </ai-search-bar>
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size" <ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size"
@getTableData="getTableData" :col-configs="colConfigs" :dict="dict"/> @getList="getTableData" :col-configs="colConfigs" :dict="dict"/>
</template> </template>
</ai-card> </ai-card>
</section> </section>
@@ -226,7 +226,7 @@ export default {
}).then(res => { }).then(res => {
if (res?.data) { if (res?.data) {
this.tableData = res.data?.records this.tableData = res.data?.records
this.page.total = res.data.total this.page.total = res.data.total + 20
} }
}) })
}, },
@@ -275,8 +275,6 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.loanSta { .loanSta {
height: 100%;
overflow-y: auto;
.col-row { .col-row {
overflow: hidden; overflow: hidden;
@@ -345,6 +343,7 @@ export default {
left: 50%; left: 50%;
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
width: 100px; width: 100px;
text-align: center;
& > p { & > p {
text-align: center; text-align: center;