|
@@ -478,8 +478,11 @@ export default {
|
|
|
return item.type == 1 && !item.optionType;
|
|
|
});
|
|
|
let res = resultArr.map((item) => {
|
|
|
+ console.log(item.options);
|
|
|
let r = {};
|
|
|
- r[item.fieldKey] = item.options;
|
|
|
+ if (item.options?.static) {
|
|
|
+ r[item.fieldKey] = JSON.stringify(item.options?.static);
|
|
|
+ }
|
|
|
return r;
|
|
|
});
|
|
|
return JSON.stringify(res);
|