+
@@ -96,7 +99,7 @@ const carousel_list = computed(() => {
color_list: [{ color: '', color_percentage: undefined }],
background_img_style: '2',
background_img: [],
- background_img_blur: 0,
+ background_img_blur: '0',
}
}
});
@@ -114,7 +117,7 @@ const add = () => {
color_list: [{ color: '', color_percentage: undefined }],
background_img_style: '2',
background_img: [],
- background_img_blur: 0,
+ background_img_blur: '0',
}
});
};
@@ -127,10 +130,6 @@ const carousel_tabs_mult_color_picker_event = (arry: color_list[], type: number,
form.value.carousel_list[index].style.color_list = arry;
form.value.carousel_list[index].style.direction = type.toString();
};
-// 内容区域背景图片设置
-const carousel_tabs_background_img_change = (arry: uploadList[], index: number) => {
- form.value.carousel_list[index].style.background_img = arry;
-};