diff --git a/common/css/page.css b/common/css/page.css
index 6d58ee38..8867a3f9 100644
--- a/common/css/page.css
+++ b/common/css/page.css
@@ -842,7 +842,7 @@ button[disabled].bg-grey {
/* 添加标准属性以增加兼容性 */
line-clamp: 1;
-webkit-box-orient: vertical;
- word-break: break-word;
+ word-break: break-all;
overflow-wrap: break-word;
word-wrap: break-word;
}
@@ -854,7 +854,7 @@ button[disabled].bg-grey {
/* 添加标准属性以增加兼容性 */
line-clamp: 2;
-webkit-box-orient: vertical;
- word-break: break-word;
+ word-break: break-all;
overflow-wrap: break-word;
word-wrap: break-word;
}
diff --git a/components/diy/diy.vue b/components/diy/diy.vue
index 06cdd7e0..7ce5c69b 100644
--- a/components/diy/diy.vue
+++ b/components/diy/diy.vue
@@ -45,6 +45,7 @@
+
@@ -137,6 +138,7 @@
import componentDiyAsk from '@/components/diy/ask';
import componentDiyAskTabs from '@/components/diy/ask-tabs';
import componentDiyActivity from '@/components/diy/activity';
+ import componentDiySalerecords from '@/components/diy/salerecords'
import componentDiyTabsCarousel from '@/components/diy/tabs-carousel';
import componentDataTabs from '@/components/diy/data-tabs';
import componentGoodsList from '@/components/goods-list/goods-list';
@@ -202,6 +204,7 @@
componentDiyAsk,
componentDiyAskTabs,
componentDiyActivity,
+ componentDiySalerecords,
componentDiyTabsCarousel,
componentDataTabs,
componentGoodsList,
diff --git a/components/diy/goods-list.vue b/components/diy/goods-list.vue
index 31436d89..55a9191f 100644
--- a/components/diy/goods-list.vue
+++ b/components/diy/goods-list.vue
@@ -217,7 +217,7 @@
},
propNewList: {
type: Array,
- default: []
+ default: () => ([])
},
propIsUseAuto: {
type: Boolean,
diff --git a/components/diy/header.vue b/components/diy/header.vue
index dad3919d..0eb3f057 100644
--- a/components/diy/header.vue
+++ b/components/diy/header.vue
@@ -24,7 +24,7 @@
-
+
@@ -40,7 +40,7 @@
- {{ form.content.title }}
+ {{ form.content.title }}
diff --git a/components/diy/modules/image-empty.vue b/components/diy/modules/image-empty.vue
index c5bc7522..1d489e09 100644
--- a/components/diy/modules/image-empty.vue
+++ b/components/diy/modules/image-empty.vue
@@ -1,6 +1,6 @@
-
+
@@ -68,6 +68,13 @@
img_url: img_url,
});
},
+ error_change() {
+ this.setData({
+ empty_outer_style: 'background: #f4fcff;display:flex;align-items: center;justify-content: center;',
+ empty_style: `${this.propErrorStyle}`,
+ img_url: this.default_image,
+ });
+ }
},
};