zydx-plus 1.32.314 → 1.32.316
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/biz_header/src/bizHeader.vue +3 -3
- package/src/components/biz_header/src/button_name.js +8 -8
- package/src/components/biz_taskInfo/src/bizTaskInfo.vue +1 -1
- package/src/components/editor/src/editor.vue +5 -3
- package/src/components/editor2/src/editor.vue +5 -1
- package/src/index.js +1 -1
- package/src/components/flip/src/img/baocun.png +0 -0
- package/src/components/flip/src/img/guanbi.png +0 -0
- package/src/components/flip/src/img/houtui.png +0 -0
- package/src/components/flip/src/img/huabi.png +0 -0
- package/src/components/flip/src/img/jian.png +0 -0
- package/src/components/flip/src/img/jiantou.png +0 -0
- package/src/components/flip/src/img/juxing.png +0 -0
- package/src/components/flip/src/img/shubiao.png +0 -0
- package/src/components/flip/src/img/wenzi.png +0 -0
- package/src/components/flip/src/img/xiangpi.png +0 -0
- package/src/components/flip/src/img/yuan.png +0 -0
package/package.json
CHANGED
|
@@ -191,9 +191,9 @@ export default {
|
|
|
191
191
|
return node
|
|
192
192
|
},
|
|
193
193
|
clickRightBtn (selectItem, selectBtnIndex, selectBtnName) {
|
|
194
|
-
if(selectBtnIndex == this.selectBtnIndex && selectItem == this.selectItem) {
|
|
195
|
-
|
|
196
|
-
}
|
|
194
|
+
// if(selectBtnIndex == this.selectBtnIndex && selectItem == this.selectItem) {
|
|
195
|
+
// return false;
|
|
196
|
+
// }
|
|
197
197
|
this.$emit('clickRightBtn', {selectItem, selectBtnIndex, selectBtnName, 'nodeList': this.nodeList});
|
|
198
198
|
},
|
|
199
199
|
},
|
|
@@ -1928,8 +1928,8 @@ let buttonNames = {
|
|
|
1928
1928
|
},
|
|
1929
1929
|
lowLevel: {
|
|
1930
1930
|
default: "viewResource",
|
|
1931
|
-
createResource: '
|
|
1932
|
-
viewResource: '
|
|
1931
|
+
createResource: '创建试题',
|
|
1932
|
+
viewResource: '查看试题',
|
|
1933
1933
|
batchDelResource: '批量删除',
|
|
1934
1934
|
}
|
|
1935
1935
|
}
|
|
@@ -1953,8 +1953,8 @@ let buttonNames = {
|
|
|
1953
1953
|
},
|
|
1954
1954
|
lowLevel: {
|
|
1955
1955
|
default: "viewResource",
|
|
1956
|
-
createResource: '
|
|
1957
|
-
viewResource: '
|
|
1956
|
+
createResource: '创建试题',
|
|
1957
|
+
viewResource: '查看试题',
|
|
1958
1958
|
batchDelResource: '批量删除',
|
|
1959
1959
|
}
|
|
1960
1960
|
}
|
|
@@ -2162,8 +2162,8 @@ let buttonNames = {
|
|
|
2162
2162
|
},
|
|
2163
2163
|
lowLevel: {
|
|
2164
2164
|
default: "viewResource",
|
|
2165
|
-
createResource: '
|
|
2166
|
-
viewResource: '
|
|
2165
|
+
createResource: '创建试题',
|
|
2166
|
+
viewResource: '查看试题',
|
|
2167
2167
|
batchDelResource: '批量删除',
|
|
2168
2168
|
}
|
|
2169
2169
|
}
|
|
@@ -2442,8 +2442,8 @@ let buttonNames = {
|
|
|
2442
2442
|
},
|
|
2443
2443
|
lowLevel: {
|
|
2444
2444
|
default: "viewResource",
|
|
2445
|
-
createResource: '
|
|
2446
|
-
viewResource: '
|
|
2445
|
+
createResource: '创建试题',
|
|
2446
|
+
viewResource: '查看试题',
|
|
2447
2447
|
batchDelResource: '批量删除',
|
|
2448
2448
|
}
|
|
2449
2449
|
}
|
|
@@ -356,7 +356,7 @@ export default {
|
|
|
356
356
|
preventPaste(event) {
|
|
357
357
|
const text = event.clipboardData.getData('text/plain');
|
|
358
358
|
const text2 = text.replace(/[\r\n]/g, '').replace(/\s*/g, '')
|
|
359
|
-
this.editor.chain().focus().insertContentAt(this.selection(),
|
|
359
|
+
this.editor.chain().focus().insertContentAt(this.selection(), text2).run()
|
|
360
360
|
},
|
|
361
361
|
// 上传word
|
|
362
362
|
uploadDoc(e) {
|
|
@@ -1089,7 +1089,7 @@ export default {
|
|
|
1089
1089
|
}
|
|
1090
1090
|
|
|
1091
1091
|
:deep(p[data-signid="subject"]) {
|
|
1092
|
-
padding-bottom:
|
|
1092
|
+
padding-bottom: 20px;
|
|
1093
1093
|
}
|
|
1094
1094
|
|
|
1095
1095
|
:deep(.author) {
|
|
@@ -1099,7 +1099,9 @@ export default {
|
|
|
1099
1099
|
:deep(.text) {
|
|
1100
1100
|
text-indent: 2em;
|
|
1101
1101
|
}
|
|
1102
|
-
|
|
1102
|
+
:deep(.title) {
|
|
1103
|
+
padding: 10px 0 2px 0;
|
|
1104
|
+
}
|
|
1103
1105
|
.read-only-a {
|
|
1104
1106
|
position: absolute;
|
|
1105
1107
|
bottom: 36px;
|
|
@@ -863,7 +863,7 @@ export default {
|
|
|
863
863
|
}
|
|
864
864
|
|
|
865
865
|
.enclosure-list {
|
|
866
|
-
margin: 5px 0 0
|
|
866
|
+
margin: 5px 0 0 2em;
|
|
867
867
|
height: 22px;
|
|
868
868
|
line-height: 22px;
|
|
869
869
|
}
|
|
@@ -939,6 +939,10 @@ export default {
|
|
|
939
939
|
line-height: 16px;
|
|
940
940
|
box-sizing: border-box;
|
|
941
941
|
font-family: Arial;
|
|
942
|
+
-moz-text-align-last: justify;
|
|
943
|
+
text-align-last: justify;
|
|
944
|
+
word-break: break-all;
|
|
945
|
+
text-justify: distribute;
|
|
942
946
|
}
|
|
943
947
|
|
|
944
948
|
.but-f {
|
package/src/index.js
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|