Merge remote-tracking branch 'origin/master'
| | |
| | | <template> |
| | | <div> |
| | | <div style="padding-top:10px;"></div> |
| | | <table border="1" class="dataframe"> |
| | | <table border="1" class="dataframe" v-loading="loading"> |
| | | <thead> |
| | | <tr style="text-align: right;"> |
| | | <th>停车场</th> |
| | |
| | | export default { |
| | | data() { |
| | | return { |
| | | loading: true, |
| | | tableData: [], |
| | | urlPath: this.$systemconfig.basePath + '/ffzf/park/', |
| | | } |
| | |
| | | |
| | | methods: { |
| | | getTableData() { |
| | | this.loading = true |
| | | this.$byutil.postData4(this, this.urlPath + 'findPage', { size: 50 }, res => { |
| | | this.tableData = res.data.records |
| | | this.loading = false |
| | | }); |
| | | }, |
| | | |