|
@@ -180,8 +180,12 @@ export default {
|
|
|
methods: {
|
|
|
//大分类字典
|
|
|
getBigDicts(){
|
|
|
- getDicts('classification_items').then(response => {
|
|
|
- this.$set(this,'bigClassifyOptions',response.data);
|
|
|
+ getDicts('classify_dictionaries_all').then(response => {
|
|
|
+ let list = response.data;
|
|
|
+ getDicts('level_dictionaries_all').then(response => {
|
|
|
+ list = list.concat(response.data)
|
|
|
+ this.$set(this,'bigClassifyOptions',list);
|
|
|
+ });
|
|
|
});
|
|
|
},
|
|
|
//小分类字典
|