Browse Source

no message

linwenxin 1 year ago
parent
commit
80802d5149
1 changed files with 11 additions and 1 deletions
  1. 11 1
      src/views/secondHandMall/orderManagement/add.vue

+ 11 - 1
src/views/secondHandMall/orderManagement/add.vue

@@ -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: {
     
   }