Browse Source

客户价格管理增加分页参数

dev-xx
马远东 3 months ago
parent
commit
23217930da
  1. 7
      src/views/Pricesystem/ListOfPriceSystems.vue

7
src/views/Pricesystem/ListOfPriceSystems.vue

@ -645,7 +645,12 @@ const deletetails = row => {
const handleClient = async row => {
try {
details.loadingObj.pageLoading = true;
const res = await $_getpriceTemplate({ brandId: row.brandId });
let _data={
brandId: row.brandId,
current:1,
size:500,
}
const res = await $_getpriceTemplate(_data);
const { code, data } = res.data;

Loading…
Cancel
Save