Parcourir la source

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

- 将商品信息示例中的 `isDisabled` 参数值从 0 更改为 1
master
lizhuang il y a 1 mois
Parent
révision
f8dcac9b3a
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      examples/productInfoExample.js

+ 1
- 1
examples/productInfoExample.js Voir le fichier

@@ -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`);

Chargement…
Annuler
Enregistrer