采购收货增加打印顺序&光标定位bug解决

master
guoshuang 8 months ago
parent 5ce425ee86
commit c5ab39d5e1

@ -142,7 +142,7 @@ export default class LoginPage extends BasePage {
// console.log('Version////', this.Version); // console.log('Version////', this.Version);
} }
///****************** ///******************
version = '0.0.128'; // version = '0.0.129'; //
//version = '0.0.14'; // //version = '0.0.14'; //
//*************** false true **************** //*************** false true ****************
//isTest = true; //isTest = true;

@ -214,7 +214,11 @@ export default class ProductionREQ extends BasePage {
title: '请勿重复扫描标志卡', title: '请勿重复扫描标志卡',
}); });
this.Idcard = ''; this.Idcard = '';
this.twofouces = false;
this.$nextTick(() => {
this.twofouces = true; this.twofouces = true;
});
return; return;
} }
} }
@ -242,6 +246,11 @@ export default class ProductionREQ extends BasePage {
//alreadyList.flage = true; //alreadyList.flage = true;
// //
} }
this.Idcard = '';
this.twofouces = false;
this.$nextTick(() => {
this.twofouces = true;
});
}, },
}); });
} else { } else {
@ -257,14 +266,20 @@ export default class ProductionREQ extends BasePage {
type: 'waring', type: 'waring',
}); });
this.Idcard = ''; this.Idcard = '';
this.twofouces = false;
this.$nextTick(() => {
this.twofouces = true; this.twofouces = true;
});
return; return;
} }
//alreadyList.handlematerialCode = alreadyList.materialCode.slice(alreadyList.materialCode.search(/[1-9]/)); //alreadyList.handlematerialCode = alreadyList.materialCode.slice(alreadyList.materialCode.search(/[1-9]/));
this.Idcard = ''; this.Idcard = '';
this.twofouces = false;
this.$nextTick(() => {
this.twofouces = true; this.twofouces = true;
});
} }
} }
confirmNumber(changeobj) { confirmNumber(changeobj) {

@ -116,6 +116,10 @@
<view class="list-item"> 托盘: </view> <view class="list-item"> 托盘: </view>
<view>{{ item.sn }}</view> <view>{{ item.sn }}</view>
</view> </view>
<view class="row-list">
<view class="list-item"> 打印顺序: </view>
<view>{{ item.userDefined9 }}</view>
</view>
<view class="row-list"> <view class="row-list">
<view class="list-item"> 实际收货: </view> <view class="list-item"> 实际收货: </view>
<u-input border placeholder="" @blur="confirmNumber(item)" v-model="item.planNumber" /> <u-input border placeholder="" @blur="confirmNumber(item)" v-model="item.planNumber" />

@ -122,6 +122,10 @@
<view class="list-item"> 托盘: </view> <view class="list-item"> 托盘: </view>
<view>{{ item.sn }}</view> <view>{{ item.sn }}</view>
</view> </view>
<view class="row-list">
<view class="list-item"> 打印顺序: </view>
<view>{{ item.userDefined9 }}</view>
</view>
<view class="row-list"> <view class="row-list">
<view class="list-item">实际收货: </view> <view class="list-item">实际收货: </view>
<u-input border placeholder="" @blur="confirmNumber(item)" v-model="item.planNumber" /> <u-input border placeholder="" @blur="confirmNumber(item)" v-model="item.planNumber" />
@ -301,7 +305,10 @@ export default class receiveSRM extends BasePage {
return item.handlematerialCode == this.bimWl.value; return item.handlematerialCode == this.bimWl.value;
}); });
this.receivedlist = []; this.receivedlist = [];
this.locfouces = false;
this.$nextTick(() => {
this.locfouces = true; this.locfouces = true;
});
} }
selectProductCodeType(e) { selectProductCodeType(e) {
console.log(e); console.log(e);
@ -373,7 +380,10 @@ export default class receiveSRM extends BasePage {
//this.confirmNumber(); //this.confirmNumber();
this.Idcard = ''; this.Idcard = '';
this.twofouces = false;
this.$nextTick(() => {
this.twofouces = true; this.twofouces = true;
});
} }
} }
histroyItem: any = {}; histroyItem: any = {};
@ -385,7 +395,10 @@ export default class receiveSRM extends BasePage {
}; };
await this.model.getworkloc(params); await this.model.getworkloc(params);
this.waCodeList = model.workloclist; this.waCodeList = model.workloclist;
this.twofouces = false;
this.$nextTick(() => {
this.twofouces = true; this.twofouces = true;
});
} }
selectProductwaCode(e: any) { selectProductwaCode(e: any) {
this.waCodeTypeList = e.pickerName; this.waCodeTypeList = e.pickerName;

Loading…
Cancel
Save