shawenguan 2 年之前
父節點
當前提交
5f9d9d30e2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Scripts/gandartHelper.js

+ 1 - 1
Scripts/gandartHelper.js

@@ -231,7 +231,7 @@ function refreshLstOnSale(castingId, price) {
                             for(let d of lst){
                                 if(d.transactionStatus == 2){//2=可购买,4=支付中
                                     const resalePrice = Number(d.resalePrice);
-                                    if(price <= resalePrice){
+                                    if(price >= resalePrice){
                                         retItem = d;
                                         lk.appendNotifyInfo(`🎉成功匹配产品[${d.collectionName}#${d.viewSort}],价格:${d.resalePrice}`);
                                         break;