dolphin-weex-bc 0.0.46 → 0.0.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # 升级日志
2
2
 
3
+ ## 0.0.47
4
+
5
+ - [ ! ] 修复耗材组件购买信息判断逻辑
6
+ - [ ! ] date: 2026/06/30
7
+
3
8
  ## 0.0.46
4
9
 
5
10
  - [ ! ] 耗材套件去掉无法量化耗材跳转功能
@@ -3542,7 +3542,7 @@ var MaterialEvent = {
3542
3542
 
3543
3543
  if (purchaseInfoPurchaseEnable && it.purchaseInfo.searchLinkUrl) {
3544
3544
  //去掉有搜索列表的(优先级最高)
3545
- } else if (it.productCode && it.productCode != 0) {
3545
+ } else if (purchaseInfoPurchaseEnable && it.productCode && it.productCode != 0) {
3546
3546
  tmpcodeList.push(it.productCode);
3547
3547
  }
3548
3548