zydx-plus 1.33.321 → 1.33.323
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/choice/src/choice.vue +1 -1
- package/src/components/dragPopup/src/dragPopup.vue +3 -3
- package/src/components/editor/src/editor.vue +1 -1
- package/src/components/editor2/src/editor.vue +12 -3
- package/src/components/tipBox/src/zydxStyle.css +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -143,9 +143,9 @@ export default {
|
|
|
143
143
|
let pop = JSON.parse(sessionStorage.getItem('pop'))
|
|
144
144
|
for(let i = 0; i< pop.length; i++) {
|
|
145
145
|
if(document.getElementById(pop[i]) === null) continue
|
|
146
|
-
document.getElementById(pop[i]).style.zIndex = '
|
|
146
|
+
document.getElementById(pop[i]).style.zIndex = '9999'
|
|
147
147
|
}
|
|
148
|
-
document.getElementById(this.id).style.zIndex = '
|
|
148
|
+
document.getElementById(this.id).style.zIndex = '10000'
|
|
149
149
|
},
|
|
150
150
|
clean() {
|
|
151
151
|
let pop = JSON.parse(sessionStorage.getItem('pop'))
|
|
@@ -389,7 +389,7 @@ export default {
|
|
|
389
389
|
box-shadow: 0 0 3px 2px #ccc;
|
|
390
390
|
background-color: #fff;
|
|
391
391
|
border-radius: 3px;
|
|
392
|
-
z-index:
|
|
392
|
+
z-index: 9999;
|
|
393
393
|
animation: linkDown .3s linear forwards;
|
|
394
394
|
opacity: 0;
|
|
395
395
|
}
|
|
@@ -719,9 +719,18 @@ export default {
|
|
|
719
719
|
html += '<p class="source" style="text-align: right;"></p>'
|
|
720
720
|
this.editor.commands.setContent(html)
|
|
721
721
|
}
|
|
722
|
-
if (v === 'centerH2')
|
|
723
|
-
|
|
724
|
-
|
|
722
|
+
if (v === 'centerH2') {
|
|
723
|
+
this.editor.chain().focus().setFontSize('16px').setTextAlign('center').run()
|
|
724
|
+
this.editor.chain().focus().setBold().run()
|
|
725
|
+
}
|
|
726
|
+
if (v === 'leftH2') {
|
|
727
|
+
this.editor.chain().focus().setFontSize('16px').setTextAlign('left').run()
|
|
728
|
+
this.editor.chain().focus().setBold().run()
|
|
729
|
+
}
|
|
730
|
+
if (v === 'rightH2') {
|
|
731
|
+
this.editor.chain().focus().setFontSize('16px').setTextAlign('right').run()
|
|
732
|
+
this.editor.chain().focus().setBold().run()
|
|
733
|
+
}
|
|
725
734
|
},
|
|
726
735
|
getRandomCode(length) {
|
|
727
736
|
if (length > 0) {
|