|
@@ -23,7 +23,7 @@
|
|
|
<view
|
|
|
class="iconfont icon-jianhao"
|
|
|
:class="[isQuantity == true ? 'disabled' : '']"
|
|
|
- @click="changeCountSub()"
|
|
|
+ @click.stop="changeCountSub()"
|
|
|
></view>
|
|
|
<input
|
|
|
class="btn-input"
|
|
@@ -35,7 +35,7 @@
|
|
|
<view
|
|
|
class="iconfont icon-jiahao"
|
|
|
:class="[isStock == true ? 'disabled' : '']"
|
|
|
- @click="changeCountAdd()"
|
|
|
+ @click.stop="changeCountAdd()"
|
|
|
></view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -68,7 +68,7 @@ export default {
|
|
|
buyRetailPriceStep: 1
|
|
|
}
|
|
|
},
|
|
|
- onLoad() {
|
|
|
+ onLoad(option) {
|
|
|
// 获取机构id
|
|
|
const clubInfo = uni.getStorageSync('clubInfo')
|
|
|
this.userId = clubInfo.userId
|