xiaoe_mp_npm 0.5.43 → 0.5.44-test1
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/.gitlab-ci.yml
CHANGED
|
@@ -372,6 +372,7 @@ Component({
|
|
|
372
372
|
}
|
|
373
373
|
},
|
|
374
374
|
changeVal(event) {
|
|
375
|
+
console.log('event',event)
|
|
375
376
|
let data = event.detail
|
|
376
377
|
if (data <= 0) {
|
|
377
378
|
data = 1
|
|
@@ -391,6 +392,7 @@ Component({
|
|
|
391
392
|
},
|
|
392
393
|
// init 是否初次触发
|
|
393
394
|
countBlur(init) {
|
|
395
|
+
console.log('init',init)
|
|
394
396
|
if (this.data.count === this.data.goodsCount && init !== true) {
|
|
395
397
|
return false;
|
|
396
398
|
}
|
package/package.json
CHANGED
|
@@ -372,6 +372,7 @@ Component({
|
|
|
372
372
|
}
|
|
373
373
|
},
|
|
374
374
|
changeVal(event) {
|
|
375
|
+
console.log('event',event)
|
|
375
376
|
let data = event.detail
|
|
376
377
|
if (data <= 0) {
|
|
377
378
|
data = 1
|
|
@@ -391,6 +392,7 @@ Component({
|
|
|
391
392
|
},
|
|
392
393
|
// init 是否初次触发
|
|
393
394
|
countBlur(init) {
|
|
395
|
+
console.log('init',init)
|
|
394
396
|
if (this.data.count === this.data.goodsCount && init !== true) {
|
|
395
397
|
return false;
|
|
396
398
|
}
|