@@ -20,8 +20,4 @@ const props = defineProps({
},
});
-
+
diff --git a/src/components/model-data-magic/model-data-magic-styles.vue b/src/components/model-data-magic/model-data-magic-styles.vue
index 6a8a1bd5..cfc04e93 100644
--- a/src/components/model-data-magic/model-data-magic-styles.vue
+++ b/src/components/model-data-magic/model-data-magic-styles.vue
@@ -7,10 +7,10 @@
-
+
-
+
@@ -37,8 +37,18 @@ const common_style_update = (value: any) => {
form.value.common_style = value;
};
// 内容圆角
-const radius_change = (radius: any) => {
- form.value = Object.assign(form.value, pick(radius, [
+const img_radius_change = (radius: any) => {
+ form.value.img_radius = Object.assign(form.value.img_radius, pick(radius, [
+ 'radius',
+ 'radius_top_left',
+ 'radius_top_right',
+ 'radius_bottom_left',
+ 'radius_bottom_right',
+ ]));
+}
+// 内容圆角
+const data_radius_change = (radius: any) => {
+ form.value.data_radius = Object.assign(form.value.data_radius, pick(radius, [
'radius',
'radius_top_left',
'radius_top_right',
diff --git a/src/components/model-nav-group/model-nav-group-styles.vue b/src/components/model-nav-group/model-nav-group-styles.vue
index c3deee81..b09e3c79 100644
--- a/src/components/model-nav-group/model-nav-group-styles.vue
+++ b/src/components/model-nav-group/model-nav-group-styles.vue
@@ -7,9 +7,20 @@
-
-
-
+
+
+ 轮播设置
+
+
+
+
+
+
+
+
+
+
+
标题样式
@@ -90,7 +101,9 @@ const display_style_show = computed(() => {
});
diff --git a/src/components/model-shop-list/model-shop-list-content.vue b/src/components/model-shop-list/model-shop-list-content.vue
index 967ce0f4..05a1483b 100644
--- a/src/components/model-shop-list/model-shop-list-content.vue
+++ b/src/components/model-shop-list/model-shop-list-content.vue
@@ -29,7 +29,9 @@
-
diff --git a/src/types/components.d.ts b/src/types/components.d.ts
index 8dd4f9ee..5e1b96db 100644
--- a/src/types/components.d.ts
+++ b/src/types/components.d.ts
@@ -13,6 +13,7 @@ declare module 'vue' {
ColorPicker: typeof import('./../components/base/color-picker/index.vue')['default']
CommonStyles: typeof import('./../components/common/common-styles/index.vue')['default']
Components: typeof import('./../components/model-custom/components/index.vue')['default']
+ Content: typeof import('./../components/model-data-magic/components/content.vue')['default']
copy: typeof import('./../components/model-img-magic copy/index.vue')['default']
Cube: typeof import('./../components/common/cube/index.vue')['default']
Dialog: typeof import('./../components/model-custom/components/dialog.vue')['default']
@@ -51,6 +52,8 @@ declare module 'vue' {
ElSwitch: typeof import('element-plus/es')['ElSwitch']
ElTable: typeof import('element-plus/es')['ElTable']
ElTableColumn: typeof import('element-plus/es')['ElTableColumn']
+ ElTabPane: typeof import('element-plus/es')['ElTabPane']
+ ElTabs: typeof import('element-plus/es')['ElTabs']
ElTooltip: typeof import('element-plus/es')['ElTooltip']
ElTree: typeof import('element-plus/es')['ElTree']
ElUpload: typeof import('element-plus/es')['ElUpload']
@@ -177,6 +180,9 @@ declare module 'vue' {
RouterView: typeof import('vue-router')['RouterView']
Settings: typeof import('./../layout/components/settings/index.vue')['default']
Slider: typeof import('./../components/base/slider/index.vue')['default']
+ Styles: typeof import('./../components/model-data-magic/components/styles.vue')['default']
+ TabsContent: typeof import('./../components/model-data-magic/components/tabs-content.vue')['default']
+ TabsStyles: typeof import('./../components/model-data-magic/components/tabs-styles.vue')['default']
TabsView: typeof import('./../components/common/tabs-view/index.vue')['default']
TextSizeType: typeof import('./../components/common/text-size-type/index.vue')['default']
TMap: typeof import('./../components/base/maps/t-map.vue')['default']