2/21 界面优化1.0

20240912_adapter
wangwei 5 months ago
parent c38f1b639e
commit da9072ffcb

@ -20,7 +20,7 @@
style="display: flex; margin-top: 5px; float: right" style="display: flex; margin-top: 5px; float: right"
> >
<el-button size="mini" type="primary" @click.native="paizhao()" :loading="submitLoading" <el-button size="mini" type="primary" @click.native="paizhao()" :loading="submitLoading"
v-if="splitType=='out' && !redMesg" style="margin-right: 8px;border-radius: 5%;" :disabled=" collectSet.autoDecode == 1" v-if="splitType=='out' && !redMesg && collectSet.autoDecode == 0 " style="margin-right: 8px;border-radius: 5%;" :disabled=" collectSet.autoDecode == 1"
v-show="isLinkDisabled" v-show="isLinkDisabled"
>拍照解码 >拍照解码
</el-button> </el-button>
@ -999,7 +999,7 @@ export default {
{ {
let item = this.allWorkPlaces.find(item => item.workplaceId == this.orderFormData.workPlaceCode) let item = this.allWorkPlaces.find(item => item.workplaceId == this.orderFormData.workPlaceCode)
this.queueStatus = item.queueStatus this.queueStatus = item.queueStatus
if (isBlank(this.curQueue.code)){ if (this.curQueue == null){
if (this.queueStatus == 1) { if (this.queueStatus == 1) {
this.redMesg = true this.redMesg = true
this.redMesgOld = true this.redMesgOld = true
@ -2037,11 +2037,9 @@ export default {
} else { } else {
this.curQueueName = "当前取货槽:" + this.productName + "(" + this.curQueue.code + ")" this.curQueueName = "当前取货槽:" + this.productName + "(" + this.curQueue.code + ")"
} }
this.orderFormData.workPlaceQueueCode = this.curQueue.code this.orderFormData.workPlaceQueueCode = this.curQueue.code
this.scanCode = ''; this.scanCode = '';
this.redMesg = false
// // // //
this.getOrder() this.getOrder()
} else { } else {

@ -22,7 +22,7 @@
style="display: flex; margin-top: 5px; float: right" style="display: flex; margin-top: 5px; float: right"
> >
<el-button size="mini" type="primary" @click.native="paizhao()" <el-button size="mini" type="primary" @click.native="paizhao()"
v-if="!redMeg" style="margin-right: 8px;border-radius: 5%;" :disabled=" collectSet.autoDecode == 1" v-if="collectSet.autoDecode == 0" style="margin-right: 8px;border-radius: 5%;"
>拍照解码 >拍照解码
</el-button> </el-button>
<el-button size="mini" type="primary" @click.native="fallbackCode()" :disabled="redMeg" style="margin-right: 8px;border-radius: 5%;" <el-button size="mini" type="primary" @click.native="fallbackCode()" :disabled="redMeg" style="margin-right: 8px;border-radius: 5%;"
@ -676,6 +676,7 @@ export default {
getSet().then((response) => { getSet().then((response) => {
if (response.code == 20000) { if (response.code == 20000) {
this.collectSet = response.data this.collectSet = response.data
console.log("高拍仪设置" ,this.collectSet)
} }
}) })
}, },

Loading…
Cancel
Save