diff --git a/src/mycomponents/common/comMessage.vue b/src/mycomponents/common/comMessage.vue
index 75d4640c..ff095403 100644
--- a/src/mycomponents/common/comMessage.vue
+++ b/src/mycomponents/common/comMessage.vue
@@ -8,15 +8,21 @@
-
-
- {{content}}
-
-
-
+
+
+
+
+ {{content}}
+
+
+
+
+
+
+
-
+
{{ cancelText }}
@@ -61,7 +67,7 @@ const seconds = ref(0)
const success = ref(() => {})
const version = ref('')
const modal = ref(null)
-const textColor = ref('#000')
+const textColor = ref('')
const count = ref(0)
// onMounted(() => {
// const systemInfo = uni.getSystemInfoSync()
@@ -405,7 +411,7 @@ const showModal = (data) => {
if (data.textColor) {
textColor.value = data.textColor
} else {
- textColor.value = '#000'
+ textColor.value = ''
}
if (data.showConfirmButton === false || data.showConfirmButton === true) {
showConfirmButton.value = data.showConfirmButton
@@ -491,6 +497,7 @@ defineExpose({
display: flex; //弹性布局
flex-direction: column; //垂直排列
align-items: center; //子元素居中
+ margin: 8rpx;
// background-image: url()
}
@@ -542,4 +549,11 @@ defineExpose({
.def_text {
color: $uni-color-primary;
}
+.text_content{
+ padding: 10rpx;
+ font-size: 32rpx;
+ text-align: center;
+ word-break: break-all;
+ white-space: normal;
+}