修改显示

v1.0.0
于肖磊 2024-08-27 16:48:19 +08:00
parent 46e61357f5
commit a84b78a675
5 changed files with 10 additions and 13 deletions

View File

@ -7,7 +7,7 @@
<el-input v-model="form.title" placeholder="请输入标题"></el-input>
</el-form-item>
<el-form-item label="标题链接">
<el-input v-model="form.title_link" placeholder="请输入链接"></el-input>
<url-value v-model="form.title_link"></url-value>
</el-form-item>
</card-container>
<card-container class="mb-8">

View File

@ -69,10 +69,7 @@ const defaultArticleTabs: DefaultArticleTabs = {
field_show: ['0', '1'],
},
style: {
tabs_checked: [
{ color: 'rgba(212,212,212,2)', color_percentage: '' },
{ color: 'rgba(255,210,210,1)', color_percentage: '' },
],
tabs_checked: [{ color: '#FF9898', color_percentage: '' }, { color: '#FF2222', color_percentage: '' }],
tabs_direction: '90deg',
tabs_weight_checked: '500',
tabs_size_checked: 14,

View File

@ -85,7 +85,7 @@ const defaultProductList: DefaultProductList = {
shop_button_size: '1',
},
style: {
tabs_checked: [{ color: 'rgba(212,212,212,2)', color_percentage: '' }, { color: 'rgba(255,210,210,1)', color_percentage: '' }],
tabs_checked: [{ color: '#FF9898', color_percentage: '' }, { color: '#FF2222', color_percentage: '' }],
tabs_direction: '90deg',
tabs_weight_checked: '500',
tabs_size_checked: 14,

View File

@ -38,7 +38,7 @@ const defaultTabs: defaultTabs = {
],
},
style: {
tabs_checked: [{ color: 'rgba(212,212,212,2)', color_percentage: '' }, { color: 'rgba(255,210,210,1)', color_percentage: '' }],
tabs_checked: [{ color: '#FF9898', color_percentage: '' }, { color: '#FF2222', color_percentage: '' }],
tabs_direction: '90deg',
tabs_weight_checked: '500',
tabs_size_checked: 14,

View File

@ -4,18 +4,18 @@ import defaultCommon from "./index";
interface carousel_list {
id: string;
title: string;
link: string;
link: object;
is_show: boolean;
}
interface defaultSearch {
content: {
title: string,
title_link: string,
title_link: object,
keyword_show: true,
keyword_list: carousel_list[]
right_show: true,
right_title: string,
right_link: string,
right_link: object,
};
style: {
title_color: string,
@ -31,16 +31,16 @@ interface defaultSearch {
const defaultSearch: defaultSearch = {
content: {
title: '',
title_link: '',
title_link: {},
keyword_show: true,
right_show: true,
right_title: '更多',
right_link: '',
right_link: {},
keyword_list: [
{
id: get_math(),
title: '',
link: '',
link: {},
is_show: true
}
]