Browse Source

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

- 将商品信息示例中的 `isDisabled` 参数值从 0 更改为 1
master
lizhuang 1 month 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

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

Loading…
Cancel
Save