liuguocan
2023-11-28 3f69b4dfc585c4dfbc3c07a6acf5cdd838033636
admin-web/src/views/stock/procure/purchaseOrder/index.vue
@@ -13,7 +13,8 @@
              <my-button name="新增" @click="handleAdd" site="tools" size="medium" />
              <my-button name="导入" @click="importSetting.dialogShow = true" site="tools" size="medium" />
            </div>
            <div :style="{ 'overflow-y': 'auto', height: `${clientHeight - 320}px` }" v-loading="loading">
            <div v-loading="loading" style="margin-bottom: 15px">
              <div :style="{ 'overflow-y': 'auto', height: 'calc(100vh - 352px)' }">
              <el-row v-if="list.length" class="card" :gutter="5">
                <el-col v-for="(item, index) in list" :key="index" class="cm-item">
                  <el-card class="card-data">
@@ -76,6 +77,8 @@
              </el-row>
              <div class="no-data" v-else>暂无数据</div>
            </div>
            </div>
            <el-pagination
              :small="false"
              :current-page="pageNum"
@@ -246,7 +249,6 @@
        this.list = res.datas;
        this.total = res.totalRows;
        this.loading = false;
        console.log(this.list);
      });
    },