Browse Source

refactor: 修改商品信息示例中的商品状态参数

- 将商品信息示例中的 `isDisabled` 参数值从 0 更改为 1
master
lizhuang 4 months ago
parent
commit
f8dcac9b3a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      examples/productInfoExample.js

+ 1
- 1
examples/productInfoExample.js View File

const res = await axios.get(serverClient.baseURL + "/system/operationGoods/noVerifyList", { const res = await axios.get(serverClient.baseURL + "/system/operationGoods/noVerifyList", {
params: { params: {
...serverClient.params, ...serverClient.params,
isDisabled: 0,
isDisabled: 1,
}, },
}); });
console.log(`\n`); console.log(`\n`);

Loading…
Cancel
Save