hookehuyr

fix(邮件白名单提示): 补全文案标点并调整文本对齐样式

补全默认提示文案末尾的句号,为提示内容区域添加左对齐样式优化排版展示
...@@ -85,7 +85,7 @@ export default { ...@@ -85,7 +85,7 @@ export default {
85 async showMailWhitelistPrompt (options = {}) { 85 async showMailWhitelistPrompt (options = {}) {
86 return openMailWhitelistPrompt({ 86 return openMailWhitelistPrompt({
87 title: options.title || '温馨提示', 87 title: options.title || '温馨提示',
88 - message: options.message || '请确保我们的发件邮箱:hagerminisite_cn@163.com,在您的收件白名单中', 88 + message: options.message || '请确保我们的发件邮箱:hagerminisite_cn@163.com,在您的收件白名单中',
89 confirmText: options.confirmText || '确定', 89 confirmText: options.confirmText || '确定',
90 }); 90 });
91 }, 91 },
......
...@@ -99,6 +99,7 @@ export default { ...@@ -99,6 +99,7 @@ export default {
99 color: @text-color; 99 color: @text-color;
100 line-height: 1.8; 100 line-height: 1.8;
101 word-break: break-word; 101 word-break: break-word;
102 + text-align: left;
102 } 103 }
103 104
104 .action-row, 105 .action-row,
......
...@@ -2,7 +2,7 @@ import Vue from 'vue'; ...@@ -2,7 +2,7 @@ import Vue from 'vue';
2 2
3 const defaultOptions = { 3 const defaultOptions = {
4 title: '温馨提示', 4 title: '温馨提示',
5 - message: '请确保我们的发件邮箱:hagerminisite_cn@163.com,在您的收件白名单中', 5 + message: '请确保我们的发件邮箱:hagerminisite_cn@163.com,在您的收件白名单中',
6 confirmText: '确定', 6 confirmText: '确定',
7 }; 7 };
8 8
......