|
@@ -169,7 +169,12 @@ export default {
|
|
|
|
|
|
if (arr.length > 0) {
|
|
|
this.data.stem = arr[0];
|
|
|
- this.data.option_list = arr.slice(1).map((content) => getOption(content));
|
|
|
+ let option_list = arr.slice(1);
|
|
|
+ this.data.option_list = option_list.map((item) => {
|
|
|
+ let item_arr = item.split(' ').map((content) => getOption(content));
|
|
|
+ return item_arr;
|
|
|
+ });
|
|
|
+ // this.data.option_list = arr.slice(1).map((content) => getOption(content));
|
|
|
}
|
|
|
},
|
|
|
changeType(item) {
|