|
@@ -374,9 +374,10 @@ import { mapGetters } from "vuex";
|
|
|
import urlConfig from "@/apis/url-config";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
import { listCol, options1, options8 } from "./columns";
|
|
|
+import companyHelper from "@/mixins/companyHelper";
|
|
|
export default {
|
|
|
name: "othgoodsOnline",
|
|
|
- mixins: [mixinPage, resToken],
|
|
|
+ mixins: [mixinPage, resToken,companyHelper],
|
|
|
computed: {
|
|
|
//组件SIZE设置
|
|
|
...mapGetters(["tablebtnSize", "searchSize", "size", "isSupertube"]),
|
|
@@ -804,7 +805,10 @@ export default {
|
|
|
model.company_name = this.select === "9" ? this.sinput : ""; // 部门
|
|
|
model.online_creater = this.select === "10" ? this.sinput : ""; // 上线创建人
|
|
|
|
|
|
- const { code, data, message } = await asyncRequest.list(model);
|
|
|
+ const { code, data, message } = await asyncRequest.list({
|
|
|
+ ...model,
|
|
|
+ needRela: true
|
|
|
+ });
|
|
|
if (code === 0) {
|
|
|
const { list, count } = data ?? {};
|
|
|
this.tableData = list ?? [];
|