bug修复和添加防抖
This commit is contained in:
parent
27375030c1
commit
b00333d103
@ -199,6 +199,7 @@ export default {
|
||||
},
|
||||
//是否可以点击
|
||||
canClick:true,
|
||||
subLoading: false
|
||||
};
|
||||
},
|
||||
onLoad(data) {
|
||||
@ -356,11 +357,14 @@ export default {
|
||||
})
|
||||
},
|
||||
confirmOpe(type) {
|
||||
if (!this.subLoading){
|
||||
this.subLoading = true
|
||||
if(this.selectWares.length==0){
|
||||
uni.showToast({
|
||||
title: '请选中要审核的配件!',
|
||||
icon: 'none'
|
||||
})
|
||||
this.subLoading = false
|
||||
return
|
||||
}
|
||||
if (this.canClick) {
|
||||
@ -401,11 +405,14 @@ export default {
|
||||
uni.navigateBack()
|
||||
}, 700)
|
||||
}
|
||||
this.subLoading = false
|
||||
})
|
||||
} catch (e) {
|
||||
this.subLoading = false
|
||||
this.canClick = true
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
|
@ -96,7 +96,7 @@
|
||||
<text class="label"></text>
|
||||
<text class="repairNum"></text>
|
||||
<view class="submit" @click="submit" v-if="!isInput">保存</view>
|
||||
<view class="submit" @click="inWare" v-else>入库</view>
|
||||
<view class="submit" @click="inWare" v-else :disabled="subLoading">入库</view>
|
||||
</view>
|
||||
</view>
|
||||
</template>
|
||||
@ -143,6 +143,7 @@ export default {
|
||||
unitList: [],
|
||||
query: null,
|
||||
selectRows: [],
|
||||
subLoading: false
|
||||
};
|
||||
},
|
||||
onLoad(data) {
|
||||
@ -424,6 +425,8 @@ export default {
|
||||
* 入库
|
||||
*/
|
||||
inWare() {
|
||||
if (!this.subLoading){
|
||||
this.subLoading = true
|
||||
const data = {
|
||||
id: this.soId,
|
||||
soNo: createUniqueCodeByHead("RK")
|
||||
@ -452,7 +455,9 @@ export default {
|
||||
uni.navigateBack()
|
||||
}, 700)
|
||||
}
|
||||
this.subLoading = false
|
||||
})
|
||||
}
|
||||
// this.partList.forEach(item => {
|
||||
// item.inCount = item.count
|
||||
// item.goodsId = item.id
|
||||
|
Loading…
Reference in New Issue
Block a user