kongdeqiang
2 天以前 66cea4479288064e1e50ee8c0c1d5b38526c67bb
Merge remote-tracking branch 'origin/master'
1个文件已修改
5 ■■■■ 已修改文件
src/components/page/smartPark.vue 5 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/page/smartPark.vue
@@ -1,7 +1,7 @@
<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>
@@ -26,6 +26,7 @@
export default {
  data() {
    return {
      loading: true,
      tableData: [],
      urlPath: this.$systemconfig.basePath + '/ffzf/park/',
    }
@@ -37,8 +38,10 @@
  methods: {
    getTableData() {
      this.loading = true
      this.$byutil.postData4(this, this.urlPath + 'findPage', { size: 50 }, res => {
        this.tableData = res.data.records
        this.loading = false
      });
    },