|
@@ -24,7 +24,7 @@
|
|
|
<template #table-header="{}">
|
|
|
<div style="width: 100%" class="min">
|
|
|
<el-row style="padding: 0 0 0 80px">
|
|
|
- <el-col :span="12" style="width: 280px">
|
|
|
+ <!-- <el-col :span="12" style="width: 280px">
|
|
|
<search-work-company
|
|
|
:value="parmValue.companyNo"
|
|
|
:names="''"
|
|
@@ -33,7 +33,7 @@
|
|
|
:placeholder="'业务公司'"
|
|
|
@searchChange="supplierChange"
|
|
|
/>
|
|
|
- </el-col>
|
|
|
+ </el-col> -->
|
|
|
<el-col :span="6" style="width: 273px; padding: 0 0 0 10px">
|
|
|
<number-range
|
|
|
:lower="parmValue.stock_low"
|
|
@@ -185,12 +185,13 @@ import mixinPage from "@/mixins/elPaginationHandle";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
import { statusList } from "@/assets/js/statusList";
|
|
|
import asyncRequest from "@/apis/service/stock/stockWarning";
|
|
|
+import companyHelper from "@/mixins/companyHelper";
|
|
|
import colums from "./colums";
|
|
|
import addEdit from "./addEdit";
|
|
|
import { mapGetters } from "vuex";
|
|
|
export default {
|
|
|
name: "survey",
|
|
|
- mixins: [mixinPage, resToken],
|
|
|
+ mixins: [mixinPage, resToken, companyHelper],
|
|
|
components: {
|
|
|
addEdit,
|
|
|
},
|
|
@@ -268,8 +269,8 @@ export default {
|
|
|
const { code } = e;
|
|
|
this.parmValue.stock_code = code ? [code] : [];
|
|
|
this.stock_code = code || "";
|
|
|
- this.parmValue.stock_code = [];
|
|
|
- this.stock_code = "";
|
|
|
+ // this.parmValue.stock_code = [];
|
|
|
+ // this.stock_code = "";
|
|
|
this.parmValue.page = 1;
|
|
|
this.pageInfo.curr = 1;
|
|
|
await this.searchList();
|
|
@@ -342,6 +343,16 @@ export default {
|
|
|
this.sitem = sitem;
|
|
|
},
|
|
|
|
|
|
+ onCompanyChangeInner() {
|
|
|
+ this.parmValue.stock_code = [];
|
|
|
+ this.stock_code = "";
|
|
|
+
|
|
|
+ this.pageInfo.curr = 1
|
|
|
+ this.parmValue.page = 1
|
|
|
+ this.parmValue.companyNo = this.currentCompany
|
|
|
+ this.searchList()
|
|
|
+ },
|
|
|
+
|
|
|
async searchList() {
|
|
|
this.loading = true;
|
|
|
let model = JSON.parse(JSON.stringify(this.parmValue));
|
|
@@ -349,7 +360,10 @@ export default {
|
|
|
model.wsm_code = model.stock_code.toString() || "";
|
|
|
delete model["supplier_code"];
|
|
|
delete model["stock_code"];
|
|
|
- const res = await asyncRequest.list(model);
|
|
|
+ const res = await asyncRequest.list({
|
|
|
+ ...model,
|
|
|
+ needRela: true
|
|
|
+ });
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
res.data.list.forEach((element) => {
|
|
|
if (element.sort_s != "" && element.sort_t != "") {
|