diff --git a/src/common/js/commonJS.js b/src/common/js/commonJS.js
index f1bc642..9a515a2 100644
--- a/src/common/js/commonJS.js
+++ b/src/common/js/commonJS.js
@@ -2153,7 +2153,32 @@ ed.ui.registry.addButton('myuppercasea', {
ed.insertContent('–');
}
});
-
+ ed.ui.registry.addMenuButton('MoreSymbols', {
+ text: '···', // 按钮显示的三个点
+ tooltip: 'More Special Characters',
+ onAction: () => {}, // 菜单主按钮点击通常不执行操作,由子菜单执行
+ fetch: (callback) => {
+ const items = [
+ {
+ type: 'menuitem',
+ text: 'en-dash (短划线)',//短划线
+ onAction: () => ed.insertContent('–')
+ },
+ {
+ type: 'menuitem',
+ text: 'minus sign (减号)',//减号
+ onAction: () => ed.insertContent('−')
+ },
+ {
+ type: 'menuitem',
+ text: 'hyphen (连接符)',
+ onAction: () => ed.insertContent('-')
+ },
+
+ ];
+ callback(items);
+ }
+ });
ed.ui.registry.addButton('removeBlue', {
text: 'Blue', // 按钮文本
diff --git a/src/components/page/OnlineProofreading.vue b/src/components/page/OnlineProofreading.vue
index 74ca213..a956f0c 100644
--- a/src/components/page/OnlineProofreading.vue
+++ b/src/components/page/OnlineProofreading.vue
@@ -2,14 +2,66 @@
@@ -157,7 +214,8 @@
size="80vw"
>
-
+
+
-
+
-
+
diff --git a/src/components/page/components/table/content.vue b/src/components/page/components/table/content.vue
index cae86b5..810a740 100644
--- a/src/components/page/components/table/content.vue
+++ b/src/components/page/components/table/content.vue
@@ -16,7 +16,7 @@
:value="value"
:typesettingType="typesettingType"
class="paste-area text-container"
- :toolbar="!isAutomaticUpdate?['bold italic |customBlue removeBlue|LateX| myuppercase myuppercasea Line|subscript superscript|clearButton|searchreplace']:['bold italic |customBlue removeBlue| myuppercase myuppercasea Line|subscript superscript|clearButton|searchreplace']"
+ :toolbar="!isAutomaticUpdate?['bold italic |customBlue removeBlue|LateX| myuppercase myuppercasea Line MoreSymbols|subscript superscript|clearButton|searchreplace']:['bold italic |customBlue removeBlue| myuppercase myuppercasea Line|subscript superscript|clearButton|searchreplace']"
style="
/* white-space: pre-line; */
line-height: 12px;
diff --git a/src/components/page/components/table/word.vue b/src/components/page/components/table/word.vue
index 9345118..6c81474 100644
--- a/src/components/page/components/table/word.vue
+++ b/src/components/page/components/table/word.vue
@@ -1065,61 +1065,48 @@
-