fix:问题修复
parent
06f8b7c0b8
commit
53cb5e338c
|
@ -71,15 +71,15 @@
|
|||
// 方法
|
||||
methods: {
|
||||
onSubmit() {
|
||||
if (props.disable) return
|
||||
if (this.disable) return
|
||||
this.$emit('onSubmit');
|
||||
},
|
||||
onCancel() {
|
||||
if (props.disable) return
|
||||
if (this.disable) return
|
||||
this.$emit('onCancel');
|
||||
},
|
||||
onCheck() {
|
||||
if (props.disable) return
|
||||
if (this.disable) return
|
||||
this.$emit('onCheck');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
</view>
|
||||
<bottomBtn :isSubmit="true" :isWhite="false" position="fixed" :disable="isButtonDisabled"
|
||||
:texts="['确认叫料']" @onSubmit="submitPallet"></bottomBtn>
|
||||
:texts="['呼叫出库']" @onSubmit="submitPallet"></bottomBtn>
|
||||
<view class="cu-modal" :class="msgModalName=='Modal'?'show':''">
|
||||
<view class="cu-dialog">
|
||||
<view class="cu-bar bg-white justify-end">
|
||||
|
|
|
@ -19,8 +19,10 @@
|
|||
</view>
|
||||
</uni-forms-item>
|
||||
<uni-forms-item label="物料描述" name="skuName">
|
||||
|
||||
</uni-forms-item>
|
||||
<view class="textarea">
|
||||
<textarea class="full-width-textarea" v-model="this.skuName" disabled/>
|
||||
</view>
|
||||
<uni-forms-item label="余料数量" name="surplusQty">
|
||||
<view class="fromItem">
|
||||
<uni-easyinput v-model="formData.surplusQty" type="number" placeholder="请输入余料数量"/>
|
||||
|
|
Loading…
Reference in New Issue