|
@@ -15,6 +15,7 @@
|
|
|
import getLbsAmapRegion from "./getLbsAmapRegion.js"
|
|
|
import ImageUpload from '@/components/file-upload'
|
|
|
import editTable from '@/components/template/editTable.js'
|
|
|
+import { getClassifyList } from '@/api/goods'
|
|
|
export default {
|
|
|
components: {ImageUpload},
|
|
|
mixins: [getLbsAmapRegion, editTable],
|
|
@@ -78,7 +79,8 @@ export default {
|
|
|
"wechatUserMobile": "",
|
|
|
"wechatUserName": "",
|
|
|
"wechatUserUrl": "",
|
|
|
- }
|
|
|
+ },
|
|
|
+ classifyList: []
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -402,6 +404,14 @@ export default {
|
|
|
}]
|
|
|
}
|
|
|
},
|
|
|
+ created(){
|
|
|
+ getClassifyList({
|
|
|
+ status:true,
|
|
|
+ type:5
|
|
|
+ }).then(res=>{
|
|
|
+ this.classifyList = res.data
|
|
|
+ })
|
|
|
+ },
|
|
|
methods: {
|
|
|
|
|
|
}
|