|
@@ -204,7 +204,12 @@
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
- <el-col :xs="12" :sm="12" :lg="18" class="tr">
|
|
|
|
|
|
+ <el-col :xs="12" :sm="6" :lg="6">
|
|
|
|
+ <el-form-item prop="type" label="存货类别">
|
|
|
|
+ <el-input v-model="screenForm.type" placeholder="请输入存货类别"></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :xs="12" :sm="12" :lg="12" class="tr">
|
|
<el-form-item label="">
|
|
<el-form-item label="">
|
|
<el-button size="small" @click="resetScreenForm">清空</el-button>
|
|
<el-button size="small" @click="resetScreenForm">清空</el-button>
|
|
<el-button size="small" type="primary" @click="submitScreenForm">搜索</el-button>
|
|
<el-button size="small" type="primary" @click="submitScreenForm">搜索</el-button>
|
|
@@ -334,6 +339,7 @@ export default {
|
|
model: '',
|
|
model: '',
|
|
date: '',
|
|
date: '',
|
|
warehouse: '',
|
|
warehouse: '',
|
|
|
|
+ type: '',
|
|
},
|
|
},
|
|
currentPage: 1,
|
|
currentPage: 1,
|
|
listTotal: 0,
|
|
listTotal: 0,
|
|
@@ -478,6 +484,7 @@ export default {
|
|
startTime: this.screenForm.date ? this.screenForm.date[0] : '',
|
|
startTime: this.screenForm.date ? this.screenForm.date[0] : '',
|
|
endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
endTime: this.screenForm.date ? this.screenForm.date[1] : '',
|
|
correspondId: this.screenForm.warehouse,
|
|
correspondId: this.screenForm.warehouse,
|
|
|
|
+ categoryName: this.screenForm.type,
|
|
}).then(res => {
|
|
}).then(res => {
|
|
let oldGoodsList = this.goodsList;
|
|
let oldGoodsList = this.goodsList;
|
|
let newGoodsList = res.data.records;
|
|
let newGoodsList = res.data.records;
|