|
|
@ -154,10 +154,10 @@
|
|
|
|
</u-form-item> -->
|
|
|
|
</u-form-item> -->
|
|
|
|
<!-- 工单 -->
|
|
|
|
<!-- 工单 -->
|
|
|
|
<u-form-item label="原因分析:">
|
|
|
|
<u-form-item label="原因分析:">
|
|
|
|
<jPicker sureColor="#ff0000" :moren="moren" @bindpicker="selectProductlocCode" showKey="label" valKey="value" :val="workReason.value" :options="model.locList2" />
|
|
|
|
<jPicker sureColor="#ff0000" :moren="moren" @bindpicker="selectProductlocCode" @bindinput="selectbindinput" showKey="label" valKey="value" :val="workReason.value" :options="model.locList2" />
|
|
|
|
</u-form-item>
|
|
|
|
</u-form-item>
|
|
|
|
<u-form-item label="维修措施:">
|
|
|
|
<u-form-item label="维修措施:">
|
|
|
|
<jPicker sureColor="#ff0000" :moren="moren2" @bindpicker="selectProductlocCode2" showKey="label" valKey="value" :val="repairMeasures.value" :options="model.locList" />
|
|
|
|
<jPicker sureColor="#ff0000" :moren="moren2" @bindpicker="selectProductlocCode2" @bindinput="selectbindinput2" showKey="label" valKey="value" :val="repairMeasures.value" :options="model.locList" />
|
|
|
|
</u-form-item>
|
|
|
|
</u-form-item>
|
|
|
|
<u-form-item label="上传图片:">
|
|
|
|
<u-form-item label="上传图片:">
|
|
|
|
<scroll-view class="scroll-view_H" scroll-x="true" :scroll-left="scrollLeft1()">
|
|
|
|
<scroll-view class="scroll-view_H" scroll-x="true" :scroll-left="scrollLeft1()">
|
|
|
@ -305,6 +305,7 @@ export default class ChangePalletNew extends BasePage {
|
|
|
|
isvalue = false;
|
|
|
|
isvalue = false;
|
|
|
|
workReason: any = {};
|
|
|
|
workReason: any = {};
|
|
|
|
repairMeasures: any = {};
|
|
|
|
repairMeasures: any = {};
|
|
|
|
|
|
|
|
workReasonceshi: 'aaaaa';
|
|
|
|
async onReady() {
|
|
|
|
async onReady() {
|
|
|
|
//await this.model.getpalletLocation();
|
|
|
|
//await this.model.getpalletLocation();
|
|
|
|
//this.remove = this.model.WlList[0];
|
|
|
|
//this.remove = this.model.WlList[0];
|
|
|
@ -321,6 +322,7 @@ export default class ChangePalletNew extends BasePage {
|
|
|
|
this.Sparepartlist = this.model.rowdata;
|
|
|
|
this.Sparepartlist = this.model.rowdata;
|
|
|
|
console.log(1, this.model.rowdata, this.Sparepartlist);
|
|
|
|
console.log(1, this.model.rowdata, this.Sparepartlist);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(session);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 输入框焦点
|
|
|
|
// 输入框焦点
|
|
|
|
blur(item, value, index, index1) {
|
|
|
|
blur(item, value, index, index1) {
|
|
|
@ -442,10 +444,22 @@ export default class ChangePalletNew extends BasePage {
|
|
|
|
this.workReason = e.pickerName;
|
|
|
|
this.workReason = e.pickerName;
|
|
|
|
// await this.model.getpalletDestination(params);
|
|
|
|
// await this.model.getpalletDestination(params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async selectbindinput(e: any) {
|
|
|
|
|
|
|
|
model.locList2.push(e.pickerName);
|
|
|
|
|
|
|
|
this.workReason = e.pickerName;
|
|
|
|
|
|
|
|
console.log(this.workReason.value, e, model.locList2);
|
|
|
|
|
|
|
|
// await this.model.getpalletDestination(params);
|
|
|
|
|
|
|
|
}
|
|
|
|
async selectProductlocCode2(e: any) {
|
|
|
|
async selectProductlocCode2(e: any) {
|
|
|
|
this.repairMeasures = e.pickerName;
|
|
|
|
this.repairMeasures = e.pickerName;
|
|
|
|
// await this.model.getpalletDestination(params);
|
|
|
|
// await this.model.getpalletDestination(params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async selectbindinput2(e: any) {
|
|
|
|
|
|
|
|
model.locList.push(e.pickerName);
|
|
|
|
|
|
|
|
this.repairMeasures = e.pickerName;
|
|
|
|
|
|
|
|
console.log(this.workReason.value, e, model.locList2);
|
|
|
|
|
|
|
|
// await this.model.getpalletDestination(params);
|
|
|
|
|
|
|
|
}
|
|
|
|
scrollLeft() {
|
|
|
|
scrollLeft() {
|
|
|
|
return 222 * (this.imgList.length + 1);
|
|
|
|
return 222 * (this.imgList.length + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|