耗材列表

This commit is contained in:
魏啾
2024-10-14 14:48:51 +08:00
parent f623106dce
commit f1a599881c
2 changed files with 7 additions and 1 deletions

View File

@@ -963,6 +963,7 @@ export default {
shopId: localStorage.getItem("shopId"), shopId: localStorage.getItem("shopId"),
productId: '',//预留耗材id productId: '',//预留耗材id
column: this.stockData.column,//列名 column: this.stockData.column,//列名
conName:this.query.conName,
createdAt: arr//耗材id createdAt: arr//耗材id
}) })
this.stockData.loading = false; this.stockData.loading = false;

View File

@@ -50,7 +50,12 @@
</div> </div>
<div class="head-container"> <div class="head-container">
<el-pagination :total="tableData.total" :current-page="tableData.page + 1" :page-size="tableData.size" <el-pagination :total="tableData.total" :current-page="tableData.page + 1" :page-size="tableData.size"
@current-change="paginationChange" layout="total, sizes, prev, pager, next, jumper"></el-pagination> @current-change="paginationChange" layout="total, sizes, prev, pager, next, jumper" @size-change="(e) => {
tableData.size = e;
tableData.page = 0;
getTableData();
}
"></el-pagination>
</div> </div>
</div> </div>
</template> </template>