修改博客选项卡显示
parent
9859ac78c5
commit
c9ca5ba46e
|
|
@ -227,8 +227,8 @@ const blog_theme_change = (val: any) => {
|
|||
const list = base_list.blog_theme_list.filter(item => item.value == val);
|
||||
if (list.length > 0) {
|
||||
// emits('theme_change', list[0].width, list[0].height);
|
||||
styles.value.content_img_width = list[0].width;
|
||||
styles.value.content_img_height = list[0].height;
|
||||
styles.content_img_width = list[0].width;
|
||||
styles.content_img_height = list[0].height;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -73,8 +73,8 @@ interface DefaultBlogList {
|
|||
blog_spacing: number;
|
||||
content_spacing: number;
|
||||
blog_height: number;
|
||||
content_img_width: number | undefined;
|
||||
content_img_height: number | undefined;
|
||||
content_img_width: number;
|
||||
content_img_height: number;
|
||||
interval_time: number; //滚动时间
|
||||
is_roll: number;
|
||||
rolling_fashion: string;
|
||||
|
|
|
|||
|
|
@ -127,8 +127,8 @@ interface DefaultBlogTabs {
|
|||
blog_spacing: number;
|
||||
content_spacing: number;
|
||||
blog_height: number;
|
||||
content_img_width: number | undefined;
|
||||
content_img_height: number | undefined;
|
||||
content_img_width: number;
|
||||
content_img_height: number;
|
||||
interval_time: number; //滚动时间
|
||||
is_roll: number;
|
||||
rolling_fashion: string;
|
||||
|
|
|
|||
Loading…
Reference in New Issue