Tencent / tdesign-miniprogram-starter-retail

TDesign - 微信小程序 - 零售行业模板
MIT License
631 stars 158 forks source link

请确认变量specID #130

Closed lvpeng closed 4 months ago

lvpeng commented 6 months ago

🤔 这个 PR 的性质是?

🔗 相关 Issue

💡 需求背景和解决方案

  1. 具体问题:在阅读下面代码时,对变量specID的命名产生了疑惑,因为此处'135681624','135681628'都是spuID
    const specID = ['135681624', '135681628'];
    if (specID.indexOf(id) > -1) {
    return allGoods.filter((good) => good.spuId === id)[0];
    }
  2. 修改建议: specID更改为spuIDs
    const spuID = ['135681624', '135681628'];
    if (spuID .indexOf(id) > -1) {
    return allGoods.filter((good) => good.spuId === id)[0];
    }

    📝 更新日志

☑️ 请求合并前的自查清单

⚠️ 请自检并全部勾选全部选项。⚠️

github-actions[bot] commented 4 months ago

这个 PR 已经过时了,因为它已经持续 45 天没有任何活动了。 删除 stale 的标签或评论,否则将在 10 天内关闭。

github-actions[bot] commented 4 months ago

此 PR 被自动关闭,因为它已经 stable 停滞了 10 天,没有任何活动。