|
@@ -81,8 +81,15 @@
|
|
</el-date-picker>
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
-
|
|
|
|
- <el-col :xs="24" :sm="12" :lg="18" class="tr">
|
|
|
|
|
|
+<el-col :xs="24" :sm="12" :lg="6">
|
|
|
|
+ <el-form-item label="出库单号" prop="id">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="screenForm.id"
|
|
|
|
+ placeholder="请输入出库单号"
|
|
|
|
+ ></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :xs="24" :sm="12" :lg="6" class="tr">
|
|
<el-form-item label="">
|
|
<el-form-item label="">
|
|
<el-button @click="resetScreenForm">清空</el-button>
|
|
<el-button @click="resetScreenForm">清空</el-button>
|
|
<el-button type="primary" @click="submitScreenForm">搜索</el-button>
|
|
<el-button type="primary" @click="submitScreenForm">搜索</el-button>
|
|
@@ -289,6 +296,7 @@ export default {
|
|
status: '',
|
|
status: '',
|
|
approval:'',
|
|
approval:'',
|
|
mainOrderId: '',
|
|
mainOrderId: '',
|
|
|
|
+ id:''
|
|
},
|
|
},
|
|
statusList: [
|
|
statusList: [
|
|
{ label: '已保存', value: 'SAVE' },
|
|
{ label: '已保存', value: 'SAVE' },
|
|
@@ -342,6 +350,7 @@ export default {
|
|
approvalStartTime: this.screenForm.approval ? this.screenForm.approval[0] : "",
|
|
approvalStartTime: this.screenForm.approval ? this.screenForm.approval[0] : "",
|
|
approvalEndTime: this.screenForm.approval ? this.screenForm.approval[1] : "",
|
|
approvalEndTime: this.screenForm.approval ? this.screenForm.approval[1] : "",
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
|
|
+ id:this.screenForm.id
|
|
}
|
|
}
|
|
},
|
|
},
|
|
},
|
|
},
|
|
@@ -375,6 +384,7 @@ export default {
|
|
approvalStartTime: this.screenForm.approval ? this.screenForm.approval[0] : "",
|
|
approvalStartTime: this.screenForm.approval ? this.screenForm.approval[0] : "",
|
|
approvalEndTime: this.screenForm.approval ? this.screenForm.approval[1] : "",
|
|
approvalEndTime: this.screenForm.approval ? this.screenForm.approval[1] : "",
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
|
|
+ id:this.screenForm.id
|
|
};
|
|
};
|
|
getList(params).then((res) => {
|
|
getList(params).then((res) => {
|
|
res.data.records.forEach(item => {
|
|
res.data.records.forEach(item => {
|