@@ -135,6 +141,11 @@ const onter_style = computed(() => {
const radius = `gap: ${new_style.value.content_outer_spacing + 'px'};`;
return `${radius}`;
});
+// 标签显示
+const shop_label_style = computed(() => {
+ const { shop_lable_color, shop_lable_size, shop_lable_padding, shop_lable_radius, shop_lable_color_list, shop_lable_direction, shop_lable_border_color, shop_lable_border_size } = new_style.value;
+ return `color: ${ shop_lable_color };font-size: ${ shop_lable_size }px;${ padding_computer(shop_lable_padding) };${ radius_computer(shop_lable_radius) };${ gradient_handle(shop_lable_color_list, shop_lable_direction) };border: ${ shop_lable_border_size }px solid ${ shop_lable_border_color };`
+});
// 公共样式
const style_container = computed(() => common_styles_computer(new_style.value.common_style));
@@ -158,6 +169,7 @@ type data_list = {
name: string;
logo: string;
new_cover: string[];
+ alias: string;
msg: string;
province_name: string;
city_name: string;
@@ -170,6 +182,7 @@ type data_list = {
const default_list = {
name: '测试门店标题',
province_name: '测试地址',
+ alias: '上海门店',
city_name: '',
county_name: '',
address: '',
diff --git a/src/components/model-realstore/model-realstore-content.vue b/src/components/model-realstore/model-realstore-content.vue
index e8c6fb6c..1bac41ea 100644
--- a/src/components/model-realstore/model-realstore-content.vue
+++ b/src/components/model-realstore/model-realstore-content.vue
@@ -41,10 +41,22 @@
-
-
-
+
+
+
+ 地址设置
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/components/model-realstore/model-realstore-styles.vue b/src/components/model-realstore/model-realstore-styles.vue
index c59bfc2a..d118b65a 100644
--- a/src/components/model-realstore/model-realstore-styles.vue
+++ b/src/components/model-realstore/model-realstore-styles.vue
@@ -6,22 +6,28 @@