|
@@ -36,7 +36,17 @@
|
|
|
@searchChange="selectStock"
|
|
|
/>
|
|
|
</el-col>
|
|
|
- <el-col :span="12" style="width: 290px; margin: 0 10px">
|
|
|
+
|
|
|
+ <el-col :span="12" style="width:300px;margin:0px 10px;">
|
|
|
+ <el-input size="mini" placeholder="关键字" v-model="keyword" @blur="handleKeyWordInputBlur" @clear="handleKeyWordInputBlur" clearable >
|
|
|
+ <template slot="prepend">
|
|
|
+ <el-select size="mini" v-model="selectKey" style="width:130px" @change="handleKeyWordInputBlur">
|
|
|
+ <el-option v-for="opt in selectOptions" :key="opt.value" :value="opt.value" :label="opt.label" />
|
|
|
+ </el-select>
|
|
|
+ </template>
|
|
|
+ </el-input>
|
|
|
+ </el-col>
|
|
|
+ <!-- <el-col :span="12" style="width: 290px; margin: 0 10px">
|
|
|
<el-input
|
|
|
v-model="parmValue.good_name"
|
|
|
size="mini"
|
|
@@ -53,8 +63,8 @@
|
|
|
searchList();
|
|
|
"
|
|
|
/>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12" style="width: 290px; margin-right: 10px">
|
|
|
+ </el-col> -->
|
|
|
+ <!-- <el-col :span="12" style="width: 290px; margin-right: 10px">
|
|
|
<el-input
|
|
|
v-model="parmValue.spuCode"
|
|
|
clearable
|
|
@@ -71,7 +81,7 @@
|
|
|
searchList();
|
|
|
"
|
|
|
/>
|
|
|
- </el-col>
|
|
|
+ </el-col> -->
|
|
|
<el-col :span="12" style="width: 290px; margin-right: 10px">
|
|
|
<el-select
|
|
|
placeholder="是否库存品"
|
|
@@ -81,6 +91,7 @@
|
|
|
@change="
|
|
|
pageInfo.curr = 1;
|
|
|
parmValue.page = 1;
|
|
|
+ stockList();
|
|
|
searchList();
|
|
|
"
|
|
|
>
|
|
@@ -194,6 +205,12 @@ export default {
|
|
|
label: "减少",
|
|
|
},
|
|
|
],
|
|
|
+ selectOptions:[
|
|
|
+ {value: 'good_name', label: '商品名称'},
|
|
|
+ {value: 'spuCode', label: '商品成本编码'}
|
|
|
+ ],
|
|
|
+ keyword: "",
|
|
|
+ selectKey: "",
|
|
|
stock_code: "",
|
|
|
supplier_code: "",
|
|
|
parmValue: {
|
|
@@ -346,10 +363,18 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
+ this.selectKey = this.selectOptions[0].value;
|
|
|
+ console.log(this.selectKey)
|
|
|
this.onCompanyChangeInner()
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
+ handleKeyWordInputBlur(){
|
|
|
+ this.parmValue.page = 1;
|
|
|
+ this.pageInfo.curr = 1;
|
|
|
+ this.stockList()
|
|
|
+ this.searchList();
|
|
|
+ },
|
|
|
//业务公司选择
|
|
|
supplierChange(e) {
|
|
|
const { code } = e;
|
|
@@ -393,10 +418,14 @@ export default {
|
|
|
|
|
|
//获取表格上方的卡片数据
|
|
|
async stockList() {
|
|
|
+ if(!this.currentCompany) return
|
|
|
+
|
|
|
let model = {
|
|
|
companyNo: this.parmValue.companyNo,
|
|
|
supplier_code: this.supplier_code,
|
|
|
wsm_code: this.stock_code,
|
|
|
+ [this.selectKey]: this.keyword,
|
|
|
+ is_stock:this.parmValue.is_stock
|
|
|
};
|
|
|
const res = await asyncRequest.getstockwsm(model);
|
|
|
|
|
@@ -448,12 +477,14 @@ export default {
|
|
|
let model = JSON.parse(JSON.stringify(this.parmValue));
|
|
|
model.supplier_code = this.supplier_code;
|
|
|
model.wsm_code = Array.isArray(this.stock_code) ? this.stock_code[0] : this.stock_code;
|
|
|
+ model[this.selectKey] = this.keyword
|
|
|
delete model['stock_code']
|
|
|
|
|
|
const res = await asyncRequest.list({
|
|
|
...model,
|
|
|
needRela: true
|
|
|
});
|
|
|
+
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
this.tableData = res.data.list;
|
|
|
this.tableData.forEach((v) => {
|