|
@@ -190,7 +190,7 @@ export default {
|
|
|
computed: {
|
|
|
...mapGetters(["tablebtnSize", "searchSize", "size"]),
|
|
|
},
|
|
|
- props: ["showModel", "once", "isonline"],
|
|
|
+ props: ["showModel", "once", "isonline", "is_stock"],
|
|
|
|
|
|
/**
|
|
|
* 属性集合
|
|
@@ -226,6 +226,7 @@ export default {
|
|
|
company: "",
|
|
|
supplier: "",
|
|
|
isonline: "",
|
|
|
+ is_stock: "",
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
},
|
|
@@ -288,6 +289,7 @@ export default {
|
|
|
brandid: [],
|
|
|
good_name: "", // 商品名称
|
|
|
status: "1", //
|
|
|
+ is_stock: "",
|
|
|
company: "",
|
|
|
supplier: "",
|
|
|
isonline: "",
|
|
@@ -322,12 +324,13 @@ export default {
|
|
|
this.parmValue.company = this.select === "3" ? this.sinput : "";
|
|
|
this.parmValue.supplier = this.select === "4" ? this.sinput : "";
|
|
|
this.parmValue.isonline = this.isonline || "";
|
|
|
+ this.parmValue.is_stock = this.is_stock || "";
|
|
|
let model = JSON.parse(JSON.stringify(this.parmValue));
|
|
|
model.cat_id =
|
|
|
model.cat_id.length > 0 ? model.cat_id[model.cat_id.length - 1] : "";
|
|
|
model.brandid =
|
|
|
model.brandid.length > 0 ? model.brandid[model.brandid.length - 1] : "";
|
|
|
-
|
|
|
+
|
|
|
const res = await asyncRequest.list(model);
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
this.tableData = res.data.list;
|