dolphin-weex-bc 0.0.45 → 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/package.json
CHANGED
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
<text v-if="it.btnType == 3" class="txt-purhase">更换</text>
|
|
205
205
|
<text v-if="it.btnType == 4" class="txt-purhase">清洗</text>
|
|
206
206
|
</div>
|
|
207
|
-
<image class="arrow-icon" resize="stretch" :src="arrowIcon"></image>
|
|
207
|
+
<image v-if="it.remainingValueType != 5" class="arrow-icon" resize="stretch" :src="arrowIcon"></image>
|
|
208
208
|
</div>
|
|
209
209
|
</div>
|
|
210
210
|
</div>
|
|
@@ -403,6 +403,8 @@ export default {
|
|
|
403
403
|
|
|
404
404
|
// 跳转耗材详情
|
|
405
405
|
goDetail(item, device) {
|
|
406
|
+
if(item.remainingValueType == 5) return
|
|
407
|
+
|
|
406
408
|
console.log('跳转前itemmmm===' + JSON.stringify(item))
|
|
407
409
|
console.log('跳转前device===' + JSON.stringify(device.deviceInfo))
|
|
408
410
|
// item.replacementMethodInfo = {}
|
|
@@ -842,7 +842,7 @@ const MaterialEvent = {
|
|
|
842
842
|
|
|
843
843
|
if (purchaseInfoPurchaseEnable && it.purchaseInfo.searchLinkUrl) {
|
|
844
844
|
//去掉有搜索列表的(优先级最高)
|
|
845
|
-
} else if (it.productCode && it.productCode != 0) {
|
|
845
|
+
} else if (purchaseInfoPurchaseEnable && it.productCode && it.productCode != 0) {
|
|
846
846
|
tmpcodeList.push(it.productCode)
|
|
847
847
|
}
|
|
848
848
|
|