|
@@ -116,8 +116,15 @@
|
|
|
</el-date-picker>
|
|
|
</el-form-item>
|
|
|
</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="12" class="tr">
|
|
|
<el-form-item label="">
|
|
|
<el-button @click="resetScreenForm">清空</el-button>
|
|
|
<el-button type="primary" @click="submitScreenForm"
|
|
@@ -476,6 +483,7 @@ export default {
|
|
|
status: "",
|
|
|
mainOrderId: "",
|
|
|
approval:'',
|
|
|
+ id:''
|
|
|
|
|
|
},
|
|
|
statusList: [
|
|
@@ -530,6 +538,8 @@ export default {
|
|
|
approvalStartTime: this.screenForm.approval ? this.screenForm.approval[0] : "",
|
|
|
approvalEndTime: this.screenForm.approval ? this.screenForm.approval[1] : "",
|
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
|
+
|
|
|
+ id: this.screenForm.id
|
|
|
};
|
|
|
},
|
|
|
},
|
|
@@ -563,6 +573,7 @@ export default {
|
|
|
approvalStartTime: this.screenForm.approval ? this.screenForm.approval[0] : "",
|
|
|
approvalEndTime: this.screenForm.approval ? this.screenForm.approval[1] : "",
|
|
|
mainOrderId: this.screenForm.mainOrderId,
|
|
|
+ id: this.screenForm.id
|
|
|
};
|
|
|
getList(params).then((res) => {
|
|
|
res.data.records.forEach((item) => {
|