|
@@ -113,6 +113,19 @@
|
|
|
/>
|
|
|
</el-select>
|
|
|
</el-col>
|
|
|
+ <el-col :span="3" style="margin:0 10px">
|
|
|
+ <search-supplier
|
|
|
+ :size="'mini'"
|
|
|
+ style="width: 220px"
|
|
|
+ :value="supplierNo"
|
|
|
+ :disabled="false"
|
|
|
+ :placeholder="'供应商名称'"
|
|
|
+ :names="''"
|
|
|
+ :isDetail="false"
|
|
|
+ :noDisabled="true"
|
|
|
+ @searchChange="supplierChange"
|
|
|
+ />
|
|
|
+ </el-col>
|
|
|
<el-col :span="4" style="width: 420px; padding: 0 0 0 10px">
|
|
|
<el-input
|
|
|
:size="searchSize"
|
|
@@ -559,6 +572,11 @@ export default {
|
|
|
if(!this.currentIsBusinessCompany()) return
|
|
|
this.routeGoto('goodsCostDetail', { id: 'add', type: 'add' })
|
|
|
},
|
|
|
+ async supplierChange(e) {
|
|
|
+ const { code, label } = e;
|
|
|
+ this.supplierNo = code ? [code] : [];
|
|
|
+ this.searchList()
|
|
|
+ },
|
|
|
// 获取异常原因下拉列表
|
|
|
async getresultlist() {
|
|
|
const res = await asyncRequest.resultlist({
|
|
@@ -585,10 +603,8 @@ export default {
|
|
|
|
|
|
//有多选框的条件
|
|
|
this.parmValue.select = this.select;
|
|
|
- // this.parmValue.sselect = this.sselect ;
|
|
|
this.parmValue.sinput = this.sinput;
|
|
|
//
|
|
|
- console.log(this.parmValue);
|
|
|
let routerModel = {
|
|
|
options: JSON.parse(JSON.stringify(this.parmValue)),
|
|
|
router: this.$route.path,
|
|
@@ -797,6 +813,7 @@ export default {
|
|
|
item.cat_id = item.cat_id.length > 0 ? item.cat_id[item.cat_id.length - 1] : "";
|
|
|
const res = await asyncRequest.list({
|
|
|
...item,
|
|
|
+ supplierNo:Array.isArray(this.supplierNo) ? this.supplierNo[0] : '',
|
|
|
needRela: true
|
|
|
});
|
|
|
|