|
@@ -190,7 +190,7 @@ export default {
|
|
computed: {
|
|
computed: {
|
|
...mapGetters(["tablebtnSize", "searchSize", "size"]),
|
|
...mapGetters(["tablebtnSize", "searchSize", "size"]),
|
|
},
|
|
},
|
|
- props: ["showModel", "once"],
|
|
|
|
|
|
+ props: ["showModel", "once", "isonline"],
|
|
|
|
|
|
/**
|
|
/**
|
|
* 属性集合
|
|
* 属性集合
|
|
@@ -225,6 +225,7 @@ export default {
|
|
status: "1", //
|
|
status: "1", //
|
|
company: "",
|
|
company: "",
|
|
supplier: "",
|
|
supplier: "",
|
|
|
|
+ isonline: "",
|
|
page: 1, // 页码
|
|
page: 1, // 页码
|
|
size: 15, // 每页显示条数
|
|
size: 15, // 每页显示条数
|
|
},
|
|
},
|
|
@@ -289,6 +290,7 @@ export default {
|
|
status: "1", //
|
|
status: "1", //
|
|
company: "",
|
|
company: "",
|
|
supplier: "",
|
|
supplier: "",
|
|
|
|
+ isonline: "",
|
|
page: 1, // 页码
|
|
page: 1, // 页码
|
|
size: 15, // 每页显示条数
|
|
size: 15, // 每页显示条数
|
|
};
|
|
};
|
|
@@ -319,6 +321,7 @@ export default {
|
|
this.parmValue.good_name = this.select === "2" ? this.sinput : "";
|
|
this.parmValue.good_name = this.select === "2" ? this.sinput : "";
|
|
this.parmValue.company = this.select === "3" ? this.sinput : "";
|
|
this.parmValue.company = this.select === "3" ? this.sinput : "";
|
|
this.parmValue.supplier = this.select === "4" ? this.sinput : "";
|
|
this.parmValue.supplier = this.select === "4" ? this.sinput : "";
|
|
|
|
+ this.parmValue.isonline = this.isonline || "";
|
|
let model = JSON.parse(JSON.stringify(this.parmValue));
|
|
let model = JSON.parse(JSON.stringify(this.parmValue));
|
|
model.cat_id =
|
|
model.cat_id =
|
|
model.cat_id.length > 0 ? model.cat_id[model.cat_id.length - 1] : "";
|
|
model.cat_id.length > 0 ? model.cat_id[model.cat_id.length - 1] : "";
|