|
|
|
@ -12,14 +12,14 @@ configUseStore.$subscribe(() => {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
let asideValue = configUseStore.getAsideValue;
|
|
|
|
|
if(asideValue['izproduct']) {
|
|
|
|
|
if(typeof asideValue['izproduct'] == "string") {
|
|
|
|
|
let list = asideValue['izproduct'].split(',');
|
|
|
|
|
if(asideValue['izproductname']) {
|
|
|
|
|
if(typeof asideValue['izproductname'] == "string") {
|
|
|
|
|
let list = asideValue['izproductname'].split(',');
|
|
|
|
|
formValue.value.plans = list;
|
|
|
|
|
}else {
|
|
|
|
|
formValue.value.plans = asideValue['izproduct'];
|
|
|
|
|
formValue.value.plans = asideValue['izproductname'];
|
|
|
|
|
}
|
|
|
|
|
console.log("formValue.value.izproduct", formValue.value.plans);
|
|
|
|
|
console.log("formValue.value.izproductname", formValue.value.plans);
|
|
|
|
|
}else {
|
|
|
|
|
formValue.value.plans = [];
|
|
|
|
|
}
|
|
|
|
|