|
@@ -91,6 +91,7 @@ import { getToken } from "@/util/auth";
|
|
|
import goodsType from '@/components/goodsType/index'
|
|
|
import {getList as GYSgetList} from "@/api/basicData/client";
|
|
|
import {getList as getListpp } from "@/api/tirePartsMall/basicData/brandPage";
|
|
|
+import {listAll, listAllP} from "../../api/tirePartsMall/basicData/listingManagement";
|
|
|
export default {
|
|
|
name: "index",
|
|
|
data() {
|
|
@@ -194,6 +195,17 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
getAllWorkDicts() {
|
|
|
+
|
|
|
+ var type = {
|
|
|
+ type : 'GN'
|
|
|
+ }
|
|
|
+
|
|
|
+ listAllP(type).then(res => {
|
|
|
+ console.log(res.data.data)
|
|
|
+ this.findObject(this.option.column, "categoryitem").dicData = res.data.data;
|
|
|
+ })
|
|
|
+
|
|
|
+
|
|
|
this.getWorkDicts("label").then(res => {
|
|
|
this.findObject(this.option.column, "label").dicData = res.data.data;
|
|
|
});
|