确认发货
This commit is contained in:
@@ -58,7 +58,7 @@
|
||||
</div>
|
||||
</section>
|
||||
<section class="submit-bar">
|
||||
<button class="btn submit-button" :disabled="disabled1" :class="{'btn-disabled': dataList.length === 0}" @click="toSure">确认发货</button>
|
||||
<button class="btn submit-button" :disabled="disabled1" :class="{'btn-disabled': !val2 || !val3 || dataList.length === 0}" @click="toSure">确认发货</button>
|
||||
</section>
|
||||
</section>
|
||||
</template>
|
||||
@@ -127,7 +127,11 @@ export default {
|
||||
/** 确认发货--------- */
|
||||
toSure () {
|
||||
this.disabled1 = true
|
||||
this._xcoutconfirmoutstore()
|
||||
if (this.val2 && this.val3 && this.dataList.length) {
|
||||
this._xcoutconfirmoutstore()
|
||||
} else {
|
||||
this.disabled1 = false
|
||||
}
|
||||
},
|
||||
/** 1.2扫载具查询桶明细 */
|
||||
async _xcoutqueryStoragevehicle (e) {
|
||||
|
||||
Reference in New Issue
Block a user