Browse Source

Merge branch 'linwenxin_dev' of https://gogs.zfire.top/zfire-front/zfire-newmall-admin into develop

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