This commit is contained in:
caoyuchun 2025-04-18 08:44:34 +08:00
parent b07d4a93a0
commit a945b24701
70 changed files with 3072 additions and 2799 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

View File

@ -3,17 +3,17 @@
display: flex !important;
}
.catalog-node-label[data-v-179d841f] {
.catalog-node-label[data-v-61c986fa] {
display: flex;
align-items: center;
}
.catalog-node-label img[data-v-179d841f] {
.catalog-node-label img[data-v-61c986fa] {
margin-right: 4px;
}
.xml-show-catalog[data-v-179d841f] .el-tree-node__content {
.xml-show-catalog[data-v-61c986fa] .el-tree-node__content {
height: auto;
}
.xml-show-catalog[data-v-179d841f] .el-tree-node__content .catalog-node-label {
.xml-show-catalog[data-v-61c986fa] .el-tree-node__content .catalog-node-label {
max-width: calc(100% - 24px);
word-break: break-all;
white-space: normal;

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
//
@ -307,7 +307,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-179d841f";
const __vue_scope_id__ = "data-v-61c986fa";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1 +1 @@
.xml-show-catalog .el-tree-node__content{display:flex!important}.catalog-node-label[data-v-179d841f]{display:flex;align-items:center}.catalog-node-label img[data-v-179d841f]{margin-right:4px}.xml-show-catalog[data-v-179d841f] .el-tree-node__content{height:auto}.xml-show-catalog[data-v-179d841f] .el-tree-node__content .catalog-node-label{max-width:calc(100% - 24px);word-break:break-all;white-space:normal}
.xml-show-catalog .el-tree-node__content{display:flex!important}.catalog-node-label[data-v-61c986fa]{display:flex;align-items:center}.catalog-node-label img[data-v-61c986fa]{margin-right:4px}.xml-show-catalog[data-v-61c986fa] .el-tree-node__content{height:auto}.xml-show-catalog[data-v-61c986fa] .el-tree-node__content .catalog-node-label{max-width:calc(100% - 24px);word-break:break-all;white-space:normal}

View File

@ -1,9 +1,9 @@
.xml-ebook-container-h5[data-v-2d482ab2] {
.xml-ebook-container-h5[data-v-0dc97d3c] {
}
.xml-ebook-container-pc[data-v-2d482ab2] {
.xml-ebook-container-pc[data-v-0dc97d3c] {
}
.xml-ebook-container-pad[data-v-2d482ab2] {
.xml-ebook-container-pad[data-v-0dc97d3c] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
//
@ -412,6 +412,10 @@ var script = {
type: String,
default: ''
},
bookReaderPath: {
type: String,
default: ''
},
//当前所处组的规则
currentRule: {
type: Object,
@ -484,10 +488,10 @@ var script = {
if (info.source != 'netlink') {
const baseUrl = info.uploadFileUrl.indexOf('./') !== -1 ? this.resourceBasisPath + info.uploadFileUrl.split('./')[1] : info.uploadFileUrl;
if (info.uploadFileUrl.indexOf('.epub') > 0) {
this.baseUrl = '/static/epubjs/index.html#/epub-read?flow=scrolled&bookPath=' + baseUrl;
this.baseUrl = this.bookReaderPath + '/static/epubjs/index.html#/epub-read?flow=scrolled&bookPath=' + baseUrl;
} else {
// const baseUrl = this.resourceBasisPath + info.uploadFileUrl.split('./')[1]
this.baseUrl = `/static/pdfjs/web/viewer.html?file=${baseUrl}`;
this.baseUrl = this.bookReaderPath + `/static/pdfjs/web/viewer.html?file=${baseUrl}`;
}
if (this.isReader) {
this.$emit('showFileReader', {
@ -540,9 +544,9 @@ var script = {
let src = '';
let uploadFileUrl = item.uploadFileUrl.indexOf('./') !== -1 ? this.resourceBasisPath + item.uploadFileUrl.split('./')[1] : item.uploadFileUrl;
if (item.uploadFileUrl.indexOf('.epub') !== -1) {
src = '/static/epubjs/index.html#/epub-read?flow=scrolled&bookPath=' + uploadFileUrl;
src = this.bookReaderPath + '/static/epubjs/index.html#/epub-read?flow=scrolled&bookPath=' + uploadFileUrl;
} else if (item.uploadFileUrl.indexOf('.pdf') !== -1) {
src = '/static/pdfjs/web/viewer.html?file=' + uploadFileUrl;
src = this.bookReaderPath + '/static/pdfjs/web/viewer.html?file=' + uploadFileUrl;
} else {
src = item.uploadFileUrl;
}
@ -860,7 +864,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-2d482ab2";
const __vue_scope_id__ = "data-v-0dc97d3c";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
//
@ -217,7 +217,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-66bda01b";
const __vue_scope_id__ = "data-v-1ac9ed94";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
//

View File

@ -4,15 +4,15 @@
}
.el-image__inner[data-v-4910c4a4] {
.el-image__inner[data-v-78061ae9] {
width: 100% !important;
}
.xml-image-ping-pu-h5[data-v-4910c4a4] {
.xml-image-ping-pu-h5[data-v-78061ae9] {
display: flex;
flex-direction: column;
align-items: center;
}
.xml-image-hua-lang[data-v-4910c4a4] {
.xml-image-hua-lang[data-v-78061ae9] {
display: flex;
flex-direction: column;
align-items: center;

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
import Vue from 'vue';
@ -1114,7 +1114,7 @@ __vue_render__$2._withStripped = true;
/* style */
const __vue_inject_styles__$1 = undefined;
/* scoped */
const __vue_scope_id__$1 = "data-v-4910c4a4";
const __vue_scope_id__$1 = "data-v-78061ae9";
/* module identifier */
const __vue_module_identifier__$1 = undefined;
/* functional template */
@ -1612,6 +1612,12 @@ var script = {
currentIndex: -1
};
},
inject: {
getSysEnv: {
from: 'getSysEnv',
default: () => () => {}
}
},
computed: {
blockPreviewList() {
let images = this.blockData.imageList || [],
@ -1656,6 +1662,9 @@ var script = {
}
});
return !has;
},
sysEnv() {
return this.getSysEnv();
}
},
watch: {
@ -1727,7 +1736,16 @@ var script = {
// window.href = href
if (linkId) {
// window.open(link, '_blank')
if (this.mode == 'reader') {
window.open(this.sysEnv.webBaseUrl + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_blank');
// this.$EventBus.$emit('hotzoneClick', {
// type: 'looseleaf',
// value: linkId,
// label: ''
// })
} else {
window.open(process.env.VUE_APP_TEXTBOOK_WEB + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_blank');
}
} else {
this.$message.warning('获取资源链接失败,请检查链接地址');
}

View File

@ -1 +1 @@
.xml-image-lun-bo .el-carousel__item{text-align:center}.el-image__inner[data-v-4910c4a4]{width:100%!important}.xml-image-ping-pu-h5[data-v-4910c4a4]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-4910c4a4]{display:flex;flex-direction:column;align-items:center}
.xml-image-lun-bo .el-carousel__item{text-align:center}.el-image__inner[data-v-78061ae9]{width:100%!important}.xml-image-ping-pu-h5[data-v-78061ae9]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-78061ae9]{display:flex;flex-direction:column;align-items:center}

View File

@ -1,40 +1,40 @@
/*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=fourth.vue.map */
/*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=eighth.vue.map */
/*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=sixth.vue.map */
/*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=seventh.vue.map */
/*# sourceMappingURL=fifth.vue.map */
.xml-text-h5[data-v-4666e3b2] {
}
.xml-text-pc[data-v-4666e3b2] {
}
.xml-text-h5[data-v-4666e3b2] {
}
.xml-image-lun-bo .el-carousel__item {
text-align: center;
}
.xml-text-h5[data-v-ab7c5c76] {
}
.xml-text-pc[data-v-ab7c5c76] {
}
.xml-text-h5[data-v-ab7c5c76] {
}
.xml-text-h5 .inline-audio-wrap,
.xml-text-h5 .inline-link-wrap {
align-items: center;
@ -711,15 +711,15 @@
.el-image__inner[data-v-4910c4a4] {
.el-image__inner[data-v-78061ae9] {
width: 100% !important;
}
.xml-image-ping-pu-h5[data-v-4910c4a4] {
.xml-image-ping-pu-h5[data-v-78061ae9] {
display: flex;
flex-direction: column;
align-items: center;
}
.xml-image-hua-lang[data-v-4910c4a4] {
.xml-image-hua-lang[data-v-78061ae9] {
display: flex;
flex-direction: column;
align-items: center;

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
import Vue from 'vue';
@ -1114,7 +1114,7 @@ __vue_render__$e._withStripped = true;
/* style */
const __vue_inject_styles__$d = undefined;
/* scoped */
const __vue_scope_id__$d = "data-v-4910c4a4";
const __vue_scope_id__$d = "data-v-78061ae9";
/* module identifier */
const __vue_module_identifier__$d = undefined;
/* functional template */
@ -1612,6 +1612,12 @@ var script$c = {
currentIndex: -1
};
},
inject: {
getSysEnv: {
from: 'getSysEnv',
default: () => () => {}
}
},
computed: {
blockPreviewList() {
let images = this.blockData.imageList || [],
@ -1656,6 +1662,9 @@ var script$c = {
}
});
return !has;
},
sysEnv() {
return this.getSysEnv();
}
},
watch: {
@ -1727,7 +1736,16 @@ var script$c = {
// window.href = href
if (linkId) {
// window.open(link, '_blank')
if (this.mode == 'reader') {
window.open(this.sysEnv.webBaseUrl + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_blank');
// this.$EventBus.$emit('hotzoneClick', {
// type: 'looseleaf',
// value: linkId,
// label: ''
// })
} else {
window.open(process.env.VUE_APP_TEXTBOOK_WEB + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_blank');
}
} else {
this.$message.warning('获取资源链接失败,请检查链接地址');
}
@ -2467,7 +2485,7 @@ __vue_render__$b._withStripped = true;
/* style */
const __vue_inject_styles__$b = undefined;
/* scoped */
const __vue_scope_id__$b = "data-v-9094a8a8";
const __vue_scope_id__$b = "data-v-3afbe29e";
/* module identifier */
const __vue_module_identifier__$b = undefined;
/* functional template */
@ -11721,7 +11739,7 @@ __vue_render__$a._withStripped = true;
/* style */
const __vue_inject_styles__$a = undefined;
/* scoped */
const __vue_scope_id__$a = "data-v-6f58d350";
const __vue_scope_id__$a = "data-v-7aa6099d";
/* module identifier */
const __vue_module_identifier__$a = undefined;
/* functional template */
@ -50693,6 +50711,13 @@ var script$7 = {
blockId: this.blockId
};
},
isImportContent() {
let htmlStr = this.pBlockData?.html || '';
return this.pBlockData?.inputBy?.includes('import--') || htmlStr.includes('<section class="docx">') && htmlStr.includes('</section>');
},
isPureTextComponent() {
return this.currentRule.componentsName === 'xml-single-text-group';
},
userType() {
return this.getProviderUserType();
},
@ -52120,11 +52145,20 @@ var __vue_render__$7 = function () {
[
_vm.mode === "editor"
? _vm._t("editor", null, { feedback: _vm.feedback })
: _c("div", {
: _c(
"div",
{
staticClass: "richtext-reset-wrapper--view",
class: [_vm.isPureTextComponent && "pure-text-component"],
attrs: { id: _vm.markRootId },
},
[
_c("section", {
class: _vm.isImportContent && "docx",
domProps: { innerHTML: _vm._s(_vm.richContent) },
}),
]
),
_vm._v(" "),
_vm._t("mater-lib-dialog"),
_vm._v(" "),
@ -52953,7 +52987,7 @@ __vue_render__$7._withStripped = true;
/* style */
const __vue_inject_styles__$7 = undefined;
/* scoped */
const __vue_scope_id__$7 = "data-v-ab7c5c76";
const __vue_scope_id__$7 = "data-v-4666e3b2";
/* module identifier */
const __vue_module_identifier__$7 = undefined;
/* functional template */
@ -53245,7 +53279,7 @@ __vue_render__$6._withStripped = true;
/* style */
const __vue_inject_styles__$6 = undefined;
/* scoped */
const __vue_scope_id__$6 = "data-v-2aaa640c";
const __vue_scope_id__$6 = "data-v-42df40de";
/* module identifier */
const __vue_module_identifier__$6 = undefined;
/* functional template */
@ -53535,7 +53569,7 @@ __vue_render__$5._withStripped = true;
/* style */
const __vue_inject_styles__$5 = undefined;
/* scoped */
const __vue_scope_id__$5 = "data-v-6677213e";
const __vue_scope_id__$5 = "data-v-01022b03";
/* module identifier */
const __vue_module_identifier__$5 = undefined;
/* functional template */
@ -53875,7 +53909,7 @@ __vue_render__$4._withStripped = true;
/* style */
const __vue_inject_styles__$4 = undefined;
/* scoped */
const __vue_scope_id__$4 = "data-v-f76eba0a";
const __vue_scope_id__$4 = "data-v-0751fc96";
/* module identifier */
const __vue_module_identifier__$4 = undefined;
/* functional template */
@ -54170,7 +54204,7 @@ __vue_render__$3._withStripped = true;
/* style */
const __vue_inject_styles__$3 = undefined;
/* scoped */
const __vue_scope_id__$3 = "data-v-7fa56ccd";
const __vue_scope_id__$3 = "data-v-e03e6adc";
/* module identifier */
const __vue_module_identifier__$3 = undefined;
/* functional template */
@ -54433,7 +54467,7 @@ __vue_render__$2._withStripped = true;
/* style */
const __vue_inject_styles__$2 = undefined;
/* scoped */
const __vue_scope_id__$2 = "data-v-78447962";
const __vue_scope_id__$2 = "data-v-f2f9072c";
/* module identifier */
const __vue_module_identifier__$2 = undefined;
/* functional template */
@ -54738,7 +54772,7 @@ __vue_render__$1._withStripped = true;
/* style */
const __vue_inject_styles__$1 = undefined;
/* scoped */
const __vue_scope_id__$1 = "data-v-782b11c5";
const __vue_scope_id__$1 = "data-v-6c942a60";
/* module identifier */
const __vue_module_identifier__$1 = undefined;
/* functional template */
@ -55037,7 +55071,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-7d2599be";
const __vue_scope_id__ = "data-v-6d42e319";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1 +1 @@
.xml-image-lun-bo .el-carousel__item{text-align:center}.xml-text-h5 .inline-audio-wrap,.xml-text-h5 .inline-link-wrap{align-items:center}.xml-text-h5 .inline-audio-wrap span,.xml-text-h5 .inline-link-wrap span{display:inline-block}.xml-text-h5 .inline-audio-box{width:20px;height:20px;box-sizing:border-box;position:relative;margin-left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol{width:20px;height:20px;box-sizing:border-box;overflow:hidden;transform:rotate(135deg);position:relative}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle{border:3px solid #418eed;border-radius:50%;position:absolute}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.first{width:3px;height:3px;background:#0076bc;top:14px;left:14px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.second{width:15px;height:15px;top:10px;left:10px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.third{width:24px;height:24px;top:6px;left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .second{animation:fadeInOut 1s infinite .2s}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .third{animation:fadeInOut 1s infinite .4s}@keyframes fadeInOut{0%{opacity:0}100%{opacity:1}}.virtual-input .el-textarea__inner{min-height:0!important;height:0!important;padding:0!important;margin:0!important;border:none!important}.el-image__inner[data-v-4910c4a4]{width:100%!important}.xml-image-ping-pu-h5[data-v-4910c4a4]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-4910c4a4]{display:flex;flex-direction:column;align-items:center}
.xml-image-lun-bo .el-carousel__item{text-align:center}.xml-text-h5 .inline-audio-wrap,.xml-text-h5 .inline-link-wrap{align-items:center}.xml-text-h5 .inline-audio-wrap span,.xml-text-h5 .inline-link-wrap span{display:inline-block}.xml-text-h5 .inline-audio-box{width:20px;height:20px;box-sizing:border-box;position:relative;margin-left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol{width:20px;height:20px;box-sizing:border-box;overflow:hidden;transform:rotate(135deg);position:relative}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle{border:3px solid #418eed;border-radius:50%;position:absolute}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.first{width:3px;height:3px;background:#0076bc;top:14px;left:14px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.second{width:15px;height:15px;top:10px;left:10px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.third{width:24px;height:24px;top:6px;left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .second{animation:fadeInOut 1s infinite .2s}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .third{animation:fadeInOut 1s infinite .4s}@keyframes fadeInOut{0%{opacity:0}100%{opacity:1}}.virtual-input .el-textarea__inner{min-height:0!important;height:0!important;padding:0!important;margin:0!important;border:none!important}.el-image__inner[data-v-78061ae9]{width:100%!important}.xml-image-ping-pu-h5[data-v-78061ae9]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-78061ae9]{display:flex;flex-direction:column;align-items:center}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
import Vue from 'vue';

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var playIcon = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAABxBJREFUeF7dW2tsFFUU/s5sCygo7W4JwfggkZAYNNYnqBB31iI2jYnERwyiRuILFcJuwZQEAgYfDbSzii8CYqDlYRQhUQNIS3cFkRbERxXTYMCCgGI7U0ssXbbbOWa2bu1ruzOzM8suN9lfe+53vvPdc2fu4wwhBc1ddjYPjnA+VM4XBMdogHPAyGFoP2onQgsxt6is/g1QI1RuRFZWY9Cb22g3PbLLgcevFLKqFjKRm4AbTPth3gjQtmHZqNox13XWNE6cjpYK4C5TJhOpj4BQCNA4i8kqALZAVVcH5o86ZBW2JQKIkjID4BkAiqwilgBntVVCJCWA6FeKAC4BY3KKAu/lhsGlWWGhtLrE2WrWvykBCt5Uru5ktQRMs806tqofAT8xqDTgc24yg2lYgHvKW0SV1FUAxptxaFsfxocRYdiivd7hfxjxYUgAj7/5cWaqMOIgxbYNTFgc9Lq26PWrWwBRkr9I4UNOL/8B7ZhoUdDrfE0PiC4BREmuAlCgBzBdbJjopaDX+W4iPgkFEP3yWjBmJQJKy/+ZnwwU5w06ZQcVwF3etJRIWJKWwekkRcC0Gp9rVzzzuAJ4pObpDNqq0086m9ULwtB7d88bcWYgkgMK4Fl+5lrOzv4SzNemc2T6uVFlwOd8QrcAbkneSsB0/Q7S35KI59Z4897uy7RfBrjLlZlEXJn+IRlkyDjtECJTqr2jj/Xs2UuAwpU8NBRp+Qbgmw3CZ4r5moDP9WxcATySUsLgNzIlGlM8mYoCxc7tsb7dGVBQqozsHML1AK42BZwhnYiwrsbreqqfAJ5yZTYTv5chcSRDs41JuD523NadAaJf3mv3vn786CxMGJOF+lMdONrUmUwQSfallwM+5woNJCqAWCZPg4CdSaIO2n1J0QjcPX5It82+o2FU1oVw5EzETrfxsA8EfK6J3QLYveTtG3yMVaiDUVnXjs0HQykXgRl3BItdtV0ZICkBgN12sfj8xVwMHxJ/2/Hd7x3YUBvCDyc77KLQD5dApTU+50IqXClfHorA9JlaIsbavF814/JEZtH/Nx5oj06LcIR12Sdp1BDwua4jtyTfR8COJMHids+/MhvSw5fphm/4MxKdFvuP2Z8NHecdTnJLTc8ThPd1MzRoaFSAGPy2H0KorA3h73bVoEcD5qp6K3kk5Q3WjrZtamYF0OicUDqj2bC7IWwLO2I8ogmwmcGP2uIBQDICxDjtPHwey3e1WU6RmUpI9Ct7wWzbxYYVAmiRf3wohFV7zlkqAhGVkSjJPwOYYClyDzCrBNAgZ1W0olG2bgVJhA9I9MunwLgiEwQoq2rD9p/PW0aVgC1aBmh5dYllqH2ArMyA13f8g2prH4jVmgAtAHIyQYAn1rXiZIt1U4BBn5MoKd8DnJ/uAqyvbcf6/e3W0iSqII9f2cbMD1iL/D9aslNAWxRX2BF811b4LfL4ZT8z5qWjANomSQu+/qQ9W2Zm9RVNgKeZsSadBIioXaO+oc7ilO8bpMNRQGJZ0y0QhG/TRYCDx7tG/fBpe0a9R5yhYVnOHOo6Cle0N4Etr8JxoxxYPXNkQn3PRxjag+6j1B2OVAd8rqn/HYjI+wDcmZClSYPPXsjFiKHxD0Rqf+sadW0rnKqmzf9g8ailUVYX6kisLczRwD85lPojMXTypMCCvLquDFjRPBEOqrVT/YEORbXgf/3LuoWNbv6EuoDXNUmz73ksXgtG9KTUrqatCW68KgtfHQlbuqkxyjeW/r0EsHsaGCVppz3DcVvQlxN983VnwDSp1RlGR50NJa52xmIG+9OAz/VQrGOvR7PH3zKHWV1pBjVj+pDwYMCb21350u/dJPpl258FF0osIhys8bpu7+m/f4GEX3mMmDdcKJJ2+mWB7g/Oc2r1jt1twNWJW5K3E7SS94unaYXVQV/ewr4RDSiA6FfuAngXGJdeFBIQ9nBr/T3BpWK/pWbc9alban6JQP2KijJQEAUseALFuT8OxH3QQkmxXF4LytAq0f+iJVW4u2Z+7p54A5ewVNYtNX9HoJsycOTBRDODXufGwbgnFEDrLEpySq5rrRSZGWXBYteCRJi6BNBAMunNQKB3anzOOYmC77UU1mMsSspygBOqqgfLLhsCXq3xuRbrxdedATFAUZK9AJYBGK7XSYrsDH8tYjgDukVY0TyRBVpGhKkpCm5wNya/FzItQIxNdAstCM/Yebc4WOTazQ4ErO67vDUyKIanQF/wKf62MQ713HOpFMKKwGNxJC1ADEgTIhvhh1RWC23aR7SCeBN3CpuC851fGxnlpNcBRp25pdZxAqmFAHuYo+V3Zi9fTwHYycD+LIGqquc5TxjlksjesgwYzJF7RZMbAtyCIFzDTGMBHgtgLAgtYGh3EtqviUCNKtTjADc6OtVfdi8YrRVv29r+BTKBrQtOiFe6AAAAAElFTkSuQmCC";

View File

@ -1,108 +1,75 @@
/*# sourceMappingURL=ninth.vue.map */
/*# sourceMappingURL=isosceles.vue.map */
/*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=tenth.vue.map */
/*# sourceMappingURL=eighth.vue.map */
/*# sourceMappingURL=seventh.vue.map */
/*# sourceMappingURL=ninth.vue.map */
/*# sourceMappingURL=wave.vue.map */
/*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=quadrangle.vue.map */
/*# sourceMappingURL=eleven.vue.map */
/*# sourceMappingURL=fourteen.vue.map */
/*# sourceMappingURL=seventh.vue.map */
/*# sourceMappingURL=twelve.vue.map */
/*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=Greentheme5.vue.map */
/*# sourceMappingURL=fifteen.vue.map */
/*# sourceMappingURL=eleven.vue.map */
/*# sourceMappingURL=thirteen.vue.map */
/*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */
/*# sourceMappingURL=Yellowtheme4.vue.map */
/*# sourceMappingURL=tenth.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=fourteen.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=fifteen.vue.map */
/*# sourceMappingURL=Redtheme1.vue.map */
/*# sourceMappingURL=SanQintheme1.vue.map */
/*# sourceMappingURL=Redtheme4.vue.map */
/*# sourceMappingURL=Redtheme2.vue.map */
/*# sourceMappingURL=Thirtyseven2.vue.map */
/*# sourceMappingURL=Yellowtheme5.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=Yellowtheme3.vue.map */
/*# sourceMappingURL=Redtheme5.vue.map */
/*# sourceMappingURL=Redtheme4.vue.map */
/*# sourceMappingURL=Thirtysix.vue.map */
/*# sourceMappingURL=Greentheme5.vue.map */
/*# sourceMappingURL=Redtheme6.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=Forty.vue.map */
/*# sourceMappingURL=Yellowtheme4.vue.map */
/*# sourceMappingURL=SanQintheme3.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=Thirtyfive.vue.map */
@ -111,22 +78,55 @@
/*# sourceMappingURL=Redtheme3.vue.map */
/*# sourceMappingURL=Thirtyseven.vue.map */
/*# sourceMappingURL=SanQintheme3.vue.map */
/*# sourceMappingURL=SanQintheme1.vue.map */
/*# sourceMappingURL=Redtheme6.vue.map */
/*# sourceMappingURL=Redtheme2.vue.map */
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=Thirtysix.vue.map */
/*# sourceMappingURL=Redtheme1.vue.map */
/*# sourceMappingURL=Redtheme5.vue.map */
/*# sourceMappingURL=Thirtyeight.vue.map */
/*# sourceMappingURL=Yellowtheme5.vue.map */
/*# sourceMappingURL=SanQintheme2.vue.map */
/*# sourceMappingURL=Thirtyseven.vue.map */
/*# sourceMappingURL=Thirtyseven3.vue.map */
/*# sourceMappingURL=Thirtyeight.vue.map */
/*# sourceMappingURL=Forty.vue.map */
.xml-text-h5[data-v-ab7c5c76] {
/*# sourceMappingURL=Thirtyseven2.vue.map */
.xml-text-h5[data-v-4666e3b2] {
}
.xml-text-pc[data-v-ab7c5c76] {
.xml-text-pc[data-v-4666e3b2] {
}
.xml-text-h5[data-v-ab7c5c76] {
.xml-text-h5[data-v-4666e3b2] {
}
.xml-text-h5 .inline-audio-wrap,

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
import crypto from 'crypto';
@ -9364,7 +9364,7 @@ __vue_render__$J._withStripped = true;
/* style */
const __vue_inject_styles__$I = undefined;
/* scoped */
const __vue_scope_id__$I = "data-v-6f58d350";
const __vue_scope_id__$I = "data-v-7aa6099d";
/* module identifier */
const __vue_module_identifier__$I = undefined;
/* functional template */
@ -48782,6 +48782,13 @@ var script$F = {
blockId: this.blockId
};
},
isImportContent() {
let htmlStr = this.pBlockData?.html || '';
return this.pBlockData?.inputBy?.includes('import--') || htmlStr.includes('<section class="docx">') && htmlStr.includes('</section>');
},
isPureTextComponent() {
return this.currentRule.componentsName === 'xml-single-text-group';
},
userType() {
return this.getProviderUserType();
},
@ -50209,11 +50216,20 @@ var __vue_render__$F = function () {
[
_vm.mode === "editor"
? _vm._t("editor", null, { feedback: _vm.feedback })
: _c("div", {
: _c(
"div",
{
staticClass: "richtext-reset-wrapper--view",
class: [_vm.isPureTextComponent && "pure-text-component"],
attrs: { id: _vm.markRootId },
},
[
_c("section", {
class: _vm.isImportContent && "docx",
domProps: { innerHTML: _vm._s(_vm.richContent) },
}),
]
),
_vm._v(" "),
_vm._t("mater-lib-dialog"),
_vm._v(" "),
@ -51042,7 +51058,7 @@ __vue_render__$F._withStripped = true;
/* style */
const __vue_inject_styles__$F = undefined;
/* scoped */
const __vue_scope_id__$F = "data-v-ab7c5c76";
const __vue_scope_id__$F = "data-v-4666e3b2";
/* module identifier */
const __vue_module_identifier__$F = undefined;
/* functional template */
@ -51391,7 +51407,7 @@ __vue_render__$E._withStripped = true;
/* style */
const __vue_inject_styles__$E = undefined;
/* scoped */
const __vue_scope_id__$E = "data-v-e331edcc";
const __vue_scope_id__$E = "data-v-34720a5f";
/* module identifier */
const __vue_module_identifier__$E = undefined;
/* functional template */
@ -51650,7 +51666,7 @@ __vue_render__$D._withStripped = true;
/* style */
const __vue_inject_styles__$D = undefined;
/* scoped */
const __vue_scope_id__$D = "data-v-38bb728f";
const __vue_scope_id__$D = "data-v-0f442a2c";
/* module identifier */
const __vue_module_identifier__$D = undefined;
/* functional template */
@ -51879,7 +51895,7 @@ __vue_render__$C._withStripped = true;
/* style */
const __vue_inject_styles__$C = undefined;
/* scoped */
const __vue_scope_id__$C = "data-v-ed58270a";
const __vue_scope_id__$C = "data-v-47af8c80";
/* module identifier */
const __vue_module_identifier__$C = undefined;
/* functional template */
@ -52145,7 +52161,7 @@ __vue_render__$B._withStripped = true;
/* style */
const __vue_inject_styles__$B = undefined;
/* scoped */
const __vue_scope_id__$B = "data-v-2fa14092";
const __vue_scope_id__$B = "data-v-0b406fd2";
/* module identifier */
const __vue_module_identifier__$B = undefined;
/* functional template */
@ -52382,7 +52398,7 @@ __vue_render__$A._withStripped = true;
/* style */
const __vue_inject_styles__$A = undefined;
/* scoped */
const __vue_scope_id__$A = "data-v-632dc964";
const __vue_scope_id__$A = "data-v-533fdd02";
/* module identifier */
const __vue_module_identifier__$A = undefined;
/* functional template */
@ -52661,7 +52677,7 @@ __vue_render__$z._withStripped = true;
/* style */
const __vue_inject_styles__$z = undefined;
/* scoped */
const __vue_scope_id__$z = "data-v-31109da6";
const __vue_scope_id__$z = "data-v-09b4a172";
/* module identifier */
const __vue_module_identifier__$z = undefined;
/* functional template */
@ -53094,7 +53110,7 @@ __vue_render__$y._withStripped = true;
/* style */
const __vue_inject_styles__$y = undefined;
/* scoped */
const __vue_scope_id__$y = "data-v-1e2ce5a2";
const __vue_scope_id__$y = "data-v-2bb6d1f4";
/* module identifier */
const __vue_module_identifier__$y = undefined;
/* functional template */
@ -53443,7 +53459,7 @@ __vue_render__$x._withStripped = true;
/* style */
const __vue_inject_styles__$x = undefined;
/* scoped */
const __vue_scope_id__$x = "data-v-4ec5f0ac";
const __vue_scope_id__$x = "data-v-3edf16f6";
/* module identifier */
const __vue_module_identifier__$x = undefined;
/* functional template */
@ -53664,7 +53680,7 @@ __vue_render__$w._withStripped = true;
/* style */
const __vue_inject_styles__$w = undefined;
/* scoped */
const __vue_scope_id__$w = "data-v-157d4fe0";
const __vue_scope_id__$w = "data-v-5fa06695";
/* module identifier */
const __vue_module_identifier__$w = undefined;
/* functional template */
@ -54101,7 +54117,7 @@ __vue_render__$v._withStripped = true;
/* style */
const __vue_inject_styles__$v = undefined;
/* scoped */
const __vue_scope_id__$v = "data-v-348561bf";
const __vue_scope_id__$v = "data-v-7e14161a";
/* module identifier */
const __vue_module_identifier__$v = undefined;
/* functional template */
@ -54343,7 +54359,7 @@ __vue_render__$u._withStripped = true;
/* style */
const __vue_inject_styles__$u = undefined;
/* scoped */
const __vue_scope_id__$u = "data-v-11049dff";
const __vue_scope_id__$u = "data-v-7d1ea5cc";
/* module identifier */
const __vue_module_identifier__$u = undefined;
/* functional template */
@ -54598,7 +54614,7 @@ __vue_render__$t._withStripped = true;
/* style */
const __vue_inject_styles__$t = undefined;
/* scoped */
const __vue_scope_id__$t = "data-v-2bc30923";
const __vue_scope_id__$t = "data-v-068fd504";
/* module identifier */
const __vue_module_identifier__$t = undefined;
/* functional template */
@ -54822,7 +54838,7 @@ __vue_render__$s._withStripped = true;
/* style */
const __vue_inject_styles__$s = undefined;
/* scoped */
const __vue_scope_id__$s = "data-v-51388e80";
const __vue_scope_id__$s = "data-v-065da6db";
/* module identifier */
const __vue_module_identifier__$s = undefined;
/* functional template */
@ -55040,7 +55056,7 @@ __vue_render__$r._withStripped = true;
/* style */
const __vue_inject_styles__$r = undefined;
/* scoped */
const __vue_scope_id__$r = "data-v-7543aefd";
const __vue_scope_id__$r = "data-v-3509e8fc";
/* module identifier */
const __vue_module_identifier__$r = undefined;
/* functional template */
@ -55264,7 +55280,7 @@ __vue_render__$q._withStripped = true;
/* style */
const __vue_inject_styles__$q = undefined;
/* scoped */
const __vue_scope_id__$q = "data-v-8d09dbfc";
const __vue_scope_id__$q = "data-v-2308cfc7";
/* module identifier */
const __vue_module_identifier__$q = undefined;
/* functional template */
@ -55488,7 +55504,7 @@ __vue_render__$p._withStripped = true;
/* style */
const __vue_inject_styles__$p = undefined;
/* scoped */
const __vue_scope_id__$p = "data-v-1345fb7e";
const __vue_scope_id__$p = "data-v-5889c61c";
/* module identifier */
const __vue_module_identifier__$p = undefined;
/* functional template */
@ -55706,7 +55722,7 @@ __vue_render__$o._withStripped = true;
/* style */
const __vue_inject_styles__$o = undefined;
/* scoped */
const __vue_scope_id__$o = "data-v-5a02a2e8";
const __vue_scope_id__$o = "data-v-3583e8d1";
/* module identifier */
const __vue_module_identifier__$o = undefined;
/* functional template */
@ -55926,7 +55942,7 @@ __vue_render__$n._withStripped = true;
/* style */
const __vue_inject_styles__$n = undefined;
/* scoped */
const __vue_scope_id__$n = "data-v-06e641dd";
const __vue_scope_id__$n = "data-v-e15e2ebc";
/* module identifier */
const __vue_module_identifier__$n = undefined;
/* functional template */
@ -56154,7 +56170,7 @@ __vue_render__$m._withStripped = true;
/* style */
const __vue_inject_styles__$m = undefined;
/* scoped */
const __vue_scope_id__$m = "data-v-486d33bf";
const __vue_scope_id__$m = "data-v-00744ec4";
/* module identifier */
const __vue_module_identifier__$m = undefined;
/* functional template */
@ -56392,7 +56408,7 @@ __vue_render__$l._withStripped = true;
/* style */
const __vue_inject_styles__$l = undefined;
/* scoped */
const __vue_scope_id__$l = "data-v-6b24580c";
const __vue_scope_id__$l = "data-v-b271bf5e";
/* module identifier */
const __vue_module_identifier__$l = undefined;
/* functional template */
@ -56618,7 +56634,7 @@ __vue_render__$k._withStripped = true;
/* style */
const __vue_inject_styles__$k = undefined;
/* scoped */
const __vue_scope_id__$k = "data-v-14063573";
const __vue_scope_id__$k = "data-v-9d718864";
/* module identifier */
const __vue_module_identifier__$k = undefined;
/* functional template */
@ -56838,7 +56854,7 @@ __vue_render__$j._withStripped = true;
/* style */
const __vue_inject_styles__$j = undefined;
/* scoped */
const __vue_scope_id__$j = "data-v-4cb210ac";
const __vue_scope_id__$j = "data-v-366de105";
/* module identifier */
const __vue_module_identifier__$j = undefined;
/* functional template */
@ -57064,7 +57080,7 @@ __vue_render__$i._withStripped = true;
/* style */
const __vue_inject_styles__$i = undefined;
/* scoped */
const __vue_scope_id__$i = "data-v-5389fb1e";
const __vue_scope_id__$i = "data-v-737c08cc";
/* module identifier */
const __vue_module_identifier__$i = undefined;
/* functional template */
@ -57286,7 +57302,7 @@ __vue_render__$h._withStripped = true;
/* style */
const __vue_inject_styles__$h = undefined;
/* scoped */
const __vue_scope_id__$h = "data-v-63289eae";
const __vue_scope_id__$h = "data-v-9c512fa4";
/* module identifier */
const __vue_module_identifier__$h = undefined;
/* functional template */
@ -57503,7 +57519,7 @@ __vue_render__$g._withStripped = true;
/* style */
const __vue_inject_styles__$g = undefined;
/* scoped */
const __vue_scope_id__$g = "data-v-07399a7f";
const __vue_scope_id__$g = "data-v-44762fcc";
/* module identifier */
const __vue_module_identifier__$g = undefined;
/* functional template */
@ -57724,7 +57740,7 @@ __vue_render__$f._withStripped = true;
/* style */
const __vue_inject_styles__$f = undefined;
/* scoped */
const __vue_scope_id__$f = "data-v-07ddc59b";
const __vue_scope_id__$f = "data-v-59f586a0";
/* module identifier */
const __vue_module_identifier__$f = undefined;
/* functional template */
@ -57945,7 +57961,7 @@ __vue_render__$e._withStripped = true;
/* style */
const __vue_inject_styles__$e = undefined;
/* scoped */
const __vue_scope_id__$e = "data-v-4cd23c3b";
const __vue_scope_id__$e = "data-v-c22c0580";
/* module identifier */
const __vue_module_identifier__$e = undefined;
/* functional template */
@ -58203,7 +58219,7 @@ __vue_render__$d._withStripped = true;
/* style */
const __vue_inject_styles__$d = undefined;
/* scoped */
const __vue_scope_id__$d = "data-v-5b18c8fa";
const __vue_scope_id__$d = "data-v-5ec0ce56";
/* module identifier */
const __vue_module_identifier__$d = undefined;
/* functional template */
@ -58420,7 +58436,7 @@ __vue_render__$c._withStripped = true;
/* style */
const __vue_inject_styles__$c = undefined;
/* scoped */
const __vue_scope_id__$c = "data-v-ed428dc0";
const __vue_scope_id__$c = "data-v-2b65e80a";
/* module identifier */
const __vue_module_identifier__$c = undefined;
/* functional template */
@ -58637,7 +58653,7 @@ __vue_render__$b._withStripped = true;
/* style */
const __vue_inject_styles__$b = undefined;
/* scoped */
const __vue_scope_id__$b = "data-v-3c26e20c";
const __vue_scope_id__$b = "data-v-8f1046d6";
/* module identifier */
const __vue_module_identifier__$b = undefined;
/* functional template */
@ -58902,7 +58918,7 @@ __vue_render__$a._withStripped = true;
/* style */
const __vue_inject_styles__$a = undefined;
/* scoped */
const __vue_scope_id__$a = "data-v-73ff8571";
const __vue_scope_id__$a = "data-v-7f1062f6";
/* module identifier */
const __vue_module_identifier__$a = undefined;
/* functional template */
@ -59196,7 +59212,7 @@ __vue_render__$9._withStripped = true;
/* style */
const __vue_inject_styles__$9 = undefined;
/* scoped */
const __vue_scope_id__$9 = "data-v-7b19e590";
const __vue_scope_id__$9 = "data-v-0f688b55";
/* module identifier */
const __vue_module_identifier__$9 = undefined;
/* functional template */
@ -59479,7 +59495,7 @@ __vue_render__$8._withStripped = true;
/* style */
const __vue_inject_styles__$8 = undefined;
/* scoped */
const __vue_scope_id__$8 = "data-v-6d05cc82";
const __vue_scope_id__$8 = "data-v-0be464c4";
/* module identifier */
const __vue_module_identifier__$8 = undefined;
/* functional template */
@ -59711,7 +59727,7 @@ __vue_render__$7._withStripped = true;
/* style */
const __vue_inject_styles__$7 = undefined;
/* scoped */
const __vue_scope_id__$7 = "data-v-2dc78421";
const __vue_scope_id__$7 = "data-v-a9c15308";
/* module identifier */
const __vue_module_identifier__$7 = undefined;
/* functional template */
@ -59957,7 +59973,7 @@ __vue_render__$6._withStripped = true;
/* style */
const __vue_inject_styles__$6 = undefined;
/* scoped */
const __vue_scope_id__$6 = "data-v-4d160be8";
const __vue_scope_id__$6 = "data-v-470edaad";
/* module identifier */
const __vue_module_identifier__$6 = undefined;
/* functional template */
@ -60203,7 +60219,7 @@ __vue_render__$5._withStripped = true;
/* style */
const __vue_inject_styles__$5 = undefined;
/* scoped */
const __vue_scope_id__$5 = "data-v-421a25c2";
const __vue_scope_id__$5 = "data-v-02e8551d";
/* module identifier */
const __vue_module_identifier__$5 = undefined;
/* functional template */
@ -60506,7 +60522,7 @@ __vue_render__$4._withStripped = true;
/* style */
const __vue_inject_styles__$4 = undefined;
/* scoped */
const __vue_scope_id__$4 = "data-v-579a8cb9";
const __vue_scope_id__$4 = "data-v-220187fe";
/* module identifier */
const __vue_module_identifier__$4 = undefined;
/* functional template */
@ -60809,7 +60825,7 @@ __vue_render__$3._withStripped = true;
/* style */
const __vue_inject_styles__$3 = undefined;
/* scoped */
const __vue_scope_id__$3 = "data-v-30ba95a0";
const __vue_scope_id__$3 = "data-v-97901996";
/* module identifier */
const __vue_module_identifier__$3 = undefined;
/* functional template */
@ -61112,7 +61128,7 @@ __vue_render__$2._withStripped = true;
/* style */
const __vue_inject_styles__$2 = undefined;
/* scoped */
const __vue_scope_id__$2 = "data-v-0055241a";
const __vue_scope_id__$2 = "data-v-672aa810";
/* module identifier */
const __vue_module_identifier__$2 = undefined;
/* functional template */
@ -61410,7 +61426,7 @@ __vue_render__$1._withStripped = true;
/* style */
const __vue_inject_styles__$1 = undefined;
/* scoped */
const __vue_scope_id__$1 = "data-v-c953f3be";
const __vue_scope_id__$1 = "data-v-75ed3c66";
/* module identifier */
const __vue_module_identifier__$1 = undefined;
/* functional template */
@ -61630,7 +61646,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-7b42d7e1";
const __vue_scope_id__ = "data-v-c1839608";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,9 +1,9 @@
.xml-question-container-h5[data-v-64e4f348] {
.xml-question-container-h5[data-v-bbb516e6] {
}
.xml-question-container-pc[data-v-64e4f348] {
.xml-question-container-pc[data-v-bbb516e6] {
}
.xml-question-container-pad[data-v-64e4f348] {
.xml-question-container-pad[data-v-bbb516e6] {
}
@ -12,10 +12,10 @@
/*# sourceMappingURL=QuestionItem.vue.map */
.content[data-v-b67ffd48] {
.content[data-v-6db419e1] {
width: 100%;
}
.content .stem-content[data-v-b67ffd48] {
.content .stem-content[data-v-6db419e1] {
width: 100%;
box-sizing: border-box;
padding: 5px 14px;
@ -24,12 +24,12 @@
border-radius: 6px;
cursor: pointer;
}
.content .stem-content.no-border[data-v-b67ffd48] {
.content .stem-content.no-border[data-v-6db419e1] {
padding: 0;
border: none;
cursor: default;
}
.content .stem-content .placeholder[data-v-b67ffd48] {
.content .stem-content .placeholder[data-v-6db419e1] {
color: #c0c4cc;
font-size: 14px;
cursor: pointer;
@ -37,98 +37,10 @@
}
/*# sourceMappingURL=common.vue.map */
.option-item + .option-item[data-v-5cd637ec] {
margin-top: 16px;
}
.option-item[data-v-5cd637ec] {
display: flex;
background: #fbfbfb;
border-radius: 6px;
padding-left: 16px;
cursor: pointer;
transition: all ease 0.3s;
border: 1px solid #fbfbfb;
}
.option-item .questionSeq[data-v-5cd637ec] {
padding: 8px 0;
}
.option-item.isActive[data-v-5cd637ec] {
border-color: #2e9adb;
}
.option-item.isTrue[data-v-5cd637ec] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-5cd637ec] .el-radio__input.is-checked .el-radio__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-5cd637ec] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-5cd637ec] .el-radio__input.is-checked .el-radio__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-5cd637ec]:hover {
background: #ddd;
}
.option-item[data-v-5cd637ec] .content {
cursor: pointer;
}
.option-item[data-v-5cd637ec] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=radio.vue.map */
.option-item + .option-item[data-v-758ca1a6] {
margin-top: 16px;
}
.option-item[data-v-758ca1a6] {
display: flex;
background: #fbfbfb;
border-radius: 6px;
padding-left: 16px;
cursor: pointer;
transition: all ease 0.3s;
border: 1px solid #fbfbfb;
}
.option-item.isActive[data-v-758ca1a6] {
border-color: #2e9adb;
}
.option-item .questionSeq[data-v-758ca1a6] {
padding: 8px 0;
}
.option-item.isTrue[data-v-758ca1a6] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-758ca1a6] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-758ca1a6] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-758ca1a6] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-758ca1a6]:hover {
background: #ddd;
}
.option-item[data-v-758ca1a6] .content {
cursor: pointer;
}
.option-item[data-v-758ca1a6] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=checkbox.vue.map */
.content[data-v-5a1894ea] {
.content[data-v-f3840eb4] {
width: 100%;
}
.content .stem-content[data-v-5a1894ea] {
.content .stem-content[data-v-f3840eb4] {
width: 100%;
box-sizing: border-box;
padding: 5px 14px;
@ -137,12 +49,12 @@
border-radius: 6px;
cursor: pointer;
}
.content .stem-content.no-border[data-v-5a1894ea] {
.content .stem-content.no-border[data-v-f3840eb4] {
padding: 0;
border: none;
cursor: default;
}
.content .stem-content .placeholder[data-v-5a1894ea] {
.content .stem-content .placeholder[data-v-f3840eb4] {
color: #c0c4cc;
font-size: 14px;
cursor: pointer;
@ -150,10 +62,10 @@
}
/*# sourceMappingURL=common.vue.map */
.option-item + .option-item[data-v-4605914c] {
.option-item + .option-item[data-v-303501f1] {
margin-top: 16px;
}
.option-item[data-v-4605914c] {
.option-item[data-v-303501f1] {
display: flex;
background: #fbfbfb;
border-radius: 6px;
@ -162,42 +74,42 @@
transition: all ease 0.3s;
border: 1px solid #fbfbfb;
}
.option-item .questionSeq[data-v-4605914c] {
.option-item .questionSeq[data-v-303501f1] {
padding: 8px 0;
}
.option-item.isActive[data-v-4605914c] {
.option-item.isActive[data-v-303501f1] {
border-color: #2e9adb;
}
.option-item.isTrue[data-v-4605914c] {
.option-item.isTrue[data-v-303501f1] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-4605914c] .el-radio__input.is-checked .el-radio__inner {
.option-item.isTrue[data-v-303501f1] .el-radio__input.is-checked .el-radio__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-4605914c] {
.option-item.isFalse[data-v-303501f1] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-4605914c] .el-radio__input.is-checked .el-radio__inner {
.option-item.isFalse[data-v-303501f1] .el-radio__input.is-checked .el-radio__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-4605914c]:hover {
.option-item[data-v-303501f1]:hover {
background: #ddd;
}
.option-item[data-v-4605914c] .content {
.option-item[data-v-303501f1] .content {
cursor: pointer;
}
.option-item[data-v-4605914c] .stem-content.no-border {
.option-item[data-v-303501f1] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=radio.vue.map */
.option-item + .option-item[data-v-9f3637dc] {
.option-item + .option-item[data-v-6c11c1df] {
margin-top: 16px;
}
.option-item[data-v-9f3637dc] {
.option-item[data-v-6c11c1df] {
display: flex;
background: #fbfbfb;
border-radius: 6px;
@ -206,321 +118,291 @@
transition: all ease 0.3s;
border: 1px solid #fbfbfb;
}
.option-item.isActive[data-v-9f3637dc] {
border-color: #2e9adb;
}
.option-item .questionSeq[data-v-9f3637dc] {
.option-item .questionSeq[data-v-6c11c1df] {
padding: 8px 0;
}
.option-item.isTrue[data-v-9f3637dc] {
.option-item.isActive[data-v-6c11c1df] {
border-color: #2e9adb;
}
.option-item.isTrue[data-v-6c11c1df] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-9f3637dc] .el-checkbox__input.is-checked .el-checkbox__inner {
.option-item.isTrue[data-v-6c11c1df] .el-radio__input.is-checked .el-radio__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-9f3637dc] {
.option-item.isFalse[data-v-6c11c1df] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-9f3637dc] .el-checkbox__input.is-checked .el-checkbox__inner {
.option-item.isFalse[data-v-6c11c1df] .el-radio__input.is-checked .el-radio__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-9f3637dc]:hover {
.option-item[data-v-6c11c1df]:hover {
background: #ddd;
}
.option-item[data-v-9f3637dc] .content {
.option-item[data-v-6c11c1df] .content {
cursor: pointer;
}
.option-item[data-v-9f3637dc] .stem-content.no-border {
.option-item[data-v-6c11c1df] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=radio.vue.map */
.option-item + .option-item[data-v-3d438652] {
margin-top: 16px;
}
.option-item[data-v-3d438652] {
display: flex;
background: #fbfbfb;
border-radius: 6px;
padding-left: 16px;
cursor: pointer;
transition: all ease 0.3s;
border: 1px solid #fbfbfb;
}
.option-item.isActive[data-v-3d438652] {
border-color: #2e9adb;
}
.option-item .questionSeq[data-v-3d438652] {
padding: 8px 0;
}
.option-item.isTrue[data-v-3d438652] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-3d438652] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-3d438652] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-3d438652] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-3d438652]:hover {
background: #ddd;
}
.option-item[data-v-3d438652] .content {
cursor: pointer;
}
.option-item[data-v-3d438652] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=checkbox.vue.map */
.line-content[data-v-a868932e] {
.option-item + .option-item[data-v-cc053d1c] {
margin-top: 16px;
}
.option-item[data-v-cc053d1c] {
display: flex;
background: #fbfbfb;
border-radius: 6px;
padding-left: 16px;
cursor: pointer;
transition: all ease 0.3s;
border: 1px solid #fbfbfb;
}
.option-item.isActive[data-v-cc053d1c] {
border-color: #2e9adb;
}
.option-item .questionSeq[data-v-cc053d1c] {
padding: 8px 0;
}
.option-item.isTrue[data-v-cc053d1c] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-cc053d1c] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-cc053d1c] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-cc053d1c] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-cc053d1c]:hover {
background: #ddd;
}
.option-item[data-v-cc053d1c] .content {
cursor: pointer;
}
.option-item[data-v-cc053d1c] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=checkbox.vue.map */
.line-content[data-v-685addee] {
width: 100%;
position: relative;
}
.line-content .line-content--item[data-v-a868932e] {
.line-content .line-content--item[data-v-685addee] {
flex: 1;
}
.line-content .line-content--item[data-v-a868932e] .stem-content {
.line-content .line-content--item[data-v-685addee] .stem-content {
height: 100%;
}
.line-content + .line-content[data-v-a868932e] {
.line-content + .line-content[data-v-685addee] {
margin-top: 10px;
}
.create-option[data-v-a868932e] {
.create-option[data-v-685addee] {
width: 100%;
margin-top: 10px;
border-style: dashed !important;
}
.option-item[data-v-a868932e] {
.option-item[data-v-685addee] {
flex: 1;
min-width: 0;
}
.option-item + .option-item[data-v-a868932e] {
.option-item + .option-item[data-v-685addee] {
margin-left: 100px;
}
.option-item.isMobile + .option-item.isMobile[data-v-a868932e] {
.option-item.isMobile + .option-item.isMobile[data-v-685addee] {
margin-left: 50px;
}
.option-item[data-v-a868932e] {
.option-item[data-v-685addee] {
margin-bottom: 10px;
background: #fbfbfb;
border-radius: 6px;
padding-left: 16px;
}
.option-item .questionSeq[data-v-a868932e] {
.option-item .questionSeq[data-v-685addee] {
padding: 8px 0;
}
.option-item[data-v-a868932e] .stem-content.no-border {
.option-item[data-v-685addee] .stem-content.no-border {
padding: 8px 14px !important;
}
/*# sourceMappingURL=view-line.vue.map */
.line-content[data-v-4a22b201] {
.line-content[data-v-56033706] {
width: 100%;
position: relative;
}
.line-content .line-content--item[data-v-4a22b201] {
.line-content .line-content--item[data-v-56033706] {
flex: 1;
}
.line-content .line-content--item[data-v-4a22b201] .stem-content {
.line-content .line-content--item[data-v-56033706] .stem-content {
height: 100%;
}
.line-content + .line-content[data-v-4a22b201] {
.line-content + .line-content[data-v-56033706] {
margin-top: 10px;
}
.create-option[data-v-4a22b201] {
.create-option[data-v-56033706] {
width: 100%;
margin-top: 10px;
border-style: dashed !important;
}
.option-item[data-v-4a22b201] {
.option-item[data-v-56033706] {
flex: 1;
min-width: 0;
}
.option-item + .option-item[data-v-4a22b201] {
.option-item + .option-item[data-v-56033706] {
margin-left: 100px;
}
.option-item.isMobile + .option-item.isMobile[data-v-4a22b201] {
.option-item.isMobile + .option-item.isMobile[data-v-56033706] {
margin-left: 50px;
}
.option-item[data-v-4a22b201] {
.option-item[data-v-56033706] {
margin-bottom: 10px;
background: #FBFBFB;
border-radius: 6px;
padding-left: 16px;
border: 1px solid #fbfbfb;
}
.option-item .questionSeq[data-v-4a22b201] {
.option-item .questionSeq[data-v-56033706] {
padding: 8px 0;
}
.option-item[data-v-4a22b201] .stem-content.no-border {
.option-item[data-v-56033706] .stem-content.no-border {
padding: 8px 14px !important;
}
/*# sourceMappingURL=view-line-answer.vue.map */
.image-file[data-v-070c50ee] {
.image-file[data-v-2d3153b3] {
width: 218px;
object-fit: scale-down;
}
.video-file[data-v-070c50ee] {
.video-file[data-v-2d3153b3] {
width: 408px;
}
.file-render[data-v-070c50ee] {
.file-render[data-v-2d3153b3] {
width: 100%;
}
.file-info[data-v-070c50ee] {
.file-info[data-v-2d3153b3] {
flex: 1;
min-width: 0;
}
.file-info.videoHandler[data-v-070c50ee] {
.file-info.videoHandler[data-v-2d3153b3] {
display: flex;
flex-direction: column;
justify-content: center;
}
.file-info.videoHandler .fileName[data-v-070c50ee] {
.file-info.videoHandler .fileName[data-v-2d3153b3] {
font-size: 18px;
color: #333333;
margin-bottom: 19px;
}
.file-info.videoHandler .fileInfo[data-v-070c50ee] {
.file-info.videoHandler .fileInfo[data-v-2d3153b3] {
font-size: 14px;
color: #666666;
margin-bottom: 19px;
}
/*# sourceMappingURL=index.vue.map */
.image-file[data-v-111cf251] {
.image-file[data-v-6cd8acd6] {
width: 218px;
object-fit: scale-down;
}
.video-file[data-v-111cf251] {
.video-file[data-v-6cd8acd6] {
width: 408px;
}
.file-render[data-v-111cf251] {
.file-render[data-v-6cd8acd6] {
width: 100%;
}
.file-info[data-v-111cf251] {
.file-info[data-v-6cd8acd6] {
flex: 1;
min-width: 0;
}
.file-info.videoHandler[data-v-111cf251] {
.file-info.videoHandler[data-v-6cd8acd6] {
display: flex;
flex-direction: column;
justify-content: center;
}
.file-info.videoHandler .fileName[data-v-111cf251] {
.file-info.videoHandler .fileName[data-v-6cd8acd6] {
font-size: 18px;
color: #333333;
margin-bottom: 19px;
}
.file-info.videoHandler .fileInfo[data-v-111cf251] {
.file-info.videoHandler .fileInfo[data-v-6cd8acd6] {
font-size: 14px;
color: #666666;
margin-bottom: 19px;
}
/*# sourceMappingURL=index.vue.map */
.audio .audio-icon[data-v-706e281e] {
width: 36px;
height: 36px;
margin-right: 20px;
}
.audio .audio-icon img[data-v-706e281e] {
width: 100%;
height: 100%;
display: block;
}
.audio .audio-controls[data-v-706e281e] {
width: 100%;
max-width: 200px;
flex: 1;
height: 36px;
}
.audio .audio-controls .audio-controls--progress[data-v-706e281e], .audio .audio-controls .audio-controls--handler[data-v-706e281e] {
width: 100%;
}
.audio .audio-controls .audio-controls--handler[data-v-706e281e] {
line-height: 1;
}
.audio .audio-controls .audio-controls--handler .play[data-v-706e281e] {
font-size: 24px;
}
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-706e281e] {
width: 22px;
height: 22px;
display: block;
cursor: pointer;
}
.audio .audio-controls .audio-controls--handler .current-time[data-v-706e281e], .audio .audio-controls .audio-controls--handler .total-time[data-v-706e281e] {
font-size: 12px;
color: #333;
}
.play-handler.mobile[data-v-706e281e] {
width: 20px;
height: 20px;
}
.audio-component[data-v-706e281e] {
display: none;
}
[data-v-706e281e] .el-slider__runway {
margin: 0 0 4px 0;
background: #e3e3e3;
height: 4px;
}
[data-v-706e281e] .el-slider__bar {
height: 4px;
}
[data-v-706e281e] .el-slider__button {
width: 10px;
height: 10px;
}
[data-v-706e281e] .el-slider__button-wrapper {
top: -15px;
}
/*# sourceMappingURL=audio-play-new.vue.map */
.audio .audio-icon[data-v-43ef9f54] {
width: 36px;
height: 36px;
margin-right: 20px;
}
.audio .audio-icon img[data-v-43ef9f54] {
width: 100%;
height: 100%;
display: block;
}
.audio .audio-controls[data-v-43ef9f54] {
width: 100%;
max-width: 200px;
flex: 1;
height: 36px;
}
.audio .audio-controls .audio-controls--progress[data-v-43ef9f54], .audio .audio-controls .audio-controls--handler[data-v-43ef9f54] {
width: 100%;
}
.audio .audio-controls .audio-controls--handler[data-v-43ef9f54] {
line-height: 1;
}
.audio .audio-controls .audio-controls--handler .play[data-v-43ef9f54] {
font-size: 24px;
}
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-43ef9f54] {
width: 22px;
height: 22px;
display: block;
cursor: pointer;
}
.audio .audio-controls .audio-controls--handler .current-time[data-v-43ef9f54], .audio .audio-controls .audio-controls--handler .total-time[data-v-43ef9f54] {
font-size: 12px;
color: #333;
}
.play-handler.mobile[data-v-43ef9f54] {
width: 20px;
height: 20px;
}
.audio-component[data-v-43ef9f54] {
display: none;
}
[data-v-43ef9f54] .el-slider__runway {
margin: 0 0 4px 0;
background: #e3e3e3;
height: 4px;
}
[data-v-43ef9f54] .el-slider__bar {
height: 4px;
}
[data-v-43ef9f54] .el-slider__button {
width: 10px;
height: 10px;
}
[data-v-43ef9f54] .el-slider__button-wrapper {
top: -15px;
}
/*# sourceMappingURL=audio-play-new.vue.map */
[data-v-432b6cd2] .el-dialog__header {
[data-v-aec120a0] .el-dialog__header {
padding: 10px;
}
.video-content[data-v-432b6cd2] {
.video-content[data-v-aec120a0] {
width: 180px;
height: 135px;
border-radius: 6px;
overflow: hidden;
position: relative;
}
.video-content .play[data-v-432b6cd2] {
.video-content .play[data-v-aec120a0] {
position: absolute;
left: 50%;
top: 50%;
cursor: pointer;
transform: translateX(-50%) translateY(-50%);
}
.video-mask[data-v-432b6cd2] {
.video-mask[data-v-aec120a0] {
position: absolute;
left: 0;
top: 0;
@ -528,36 +410,36 @@
height: 100%;
background: rgba(0, 0, 0, 0.5);
}
.video-mask img[data-v-432b6cd2] {
.video-mask img[data-v-aec120a0] {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50% -50%);
display: block;
}
.video-player[data-v-432b6cd2] {
.video-player[data-v-aec120a0] {
width: 100%;
}
/*# sourceMappingURL=video-play.vue.map */
[data-v-33a4cdd5] .el-dialog__header {
[data-v-ac616226] .el-dialog__header {
padding: 10px;
}
.video-content[data-v-33a4cdd5] {
.video-content[data-v-ac616226] {
width: 180px;
height: 135px;
border-radius: 6px;
overflow: hidden;
position: relative;
}
.video-content .play[data-v-33a4cdd5] {
.video-content .play[data-v-ac616226] {
position: absolute;
left: 50%;
top: 50%;
cursor: pointer;
transform: translateX(-50%) translateY(-50%);
}
.video-mask[data-v-33a4cdd5] {
.video-mask[data-v-ac616226] {
position: absolute;
left: 0;
top: 0;
@ -565,15 +447,133 @@
height: 100%;
background: rgba(0, 0, 0, 0.5);
}
.video-mask img[data-v-33a4cdd5] {
.video-mask img[data-v-ac616226] {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50% -50%);
display: block;
}
.video-player[data-v-33a4cdd5] {
.video-player[data-v-ac616226] {
width: 100%;
}
/*# sourceMappingURL=video-play.vue.map */
.audio .audio-icon[data-v-9c5a6694] {
width: 36px;
height: 36px;
margin-right: 20px;
}
.audio .audio-icon img[data-v-9c5a6694] {
width: 100%;
height: 100%;
display: block;
}
.audio .audio-controls[data-v-9c5a6694] {
width: 100%;
max-width: 200px;
flex: 1;
height: 36px;
}
.audio .audio-controls .audio-controls--progress[data-v-9c5a6694], .audio .audio-controls .audio-controls--handler[data-v-9c5a6694] {
width: 100%;
}
.audio .audio-controls .audio-controls--handler[data-v-9c5a6694] {
line-height: 1;
}
.audio .audio-controls .audio-controls--handler .play[data-v-9c5a6694] {
font-size: 24px;
}
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-9c5a6694] {
width: 22px;
height: 22px;
display: block;
cursor: pointer;
}
.audio .audio-controls .audio-controls--handler .current-time[data-v-9c5a6694], .audio .audio-controls .audio-controls--handler .total-time[data-v-9c5a6694] {
font-size: 12px;
color: #333;
}
.play-handler.mobile[data-v-9c5a6694] {
width: 20px;
height: 20px;
}
.audio-component[data-v-9c5a6694] {
display: none;
}
[data-v-9c5a6694] .el-slider__runway {
margin: 0 0 4px 0;
background: #e3e3e3;
height: 4px;
}
[data-v-9c5a6694] .el-slider__bar {
height: 4px;
}
[data-v-9c5a6694] .el-slider__button {
width: 10px;
height: 10px;
}
[data-v-9c5a6694] .el-slider__button-wrapper {
top: -15px;
}
/*# sourceMappingURL=audio-play-new.vue.map */
.audio .audio-icon[data-v-1fe2904e] {
width: 36px;
height: 36px;
margin-right: 20px;
}
.audio .audio-icon img[data-v-1fe2904e] {
width: 100%;
height: 100%;
display: block;
}
.audio .audio-controls[data-v-1fe2904e] {
width: 100%;
max-width: 200px;
flex: 1;
height: 36px;
}
.audio .audio-controls .audio-controls--progress[data-v-1fe2904e], .audio .audio-controls .audio-controls--handler[data-v-1fe2904e] {
width: 100%;
}
.audio .audio-controls .audio-controls--handler[data-v-1fe2904e] {
line-height: 1;
}
.audio .audio-controls .audio-controls--handler .play[data-v-1fe2904e] {
font-size: 24px;
}
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-1fe2904e] {
width: 22px;
height: 22px;
display: block;
cursor: pointer;
}
.audio .audio-controls .audio-controls--handler .current-time[data-v-1fe2904e], .audio .audio-controls .audio-controls--handler .total-time[data-v-1fe2904e] {
font-size: 12px;
color: #333;
}
.play-handler.mobile[data-v-1fe2904e] {
width: 20px;
height: 20px;
}
.audio-component[data-v-1fe2904e] {
display: none;
}
[data-v-1fe2904e] .el-slider__runway {
margin: 0 0 4px 0;
background: #e3e3e3;
height: 4px;
}
[data-v-1fe2904e] .el-slider__bar {
height: 4px;
}
[data-v-1fe2904e] .el-slider__button {
width: 10px;
height: 10px;
}
[data-v-1fe2904e] .el-slider__button-wrapper {
top: -15px;
}
/*# sourceMappingURL=audio-play-new.vue.map */

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
import crypto from 'crypto';
@ -385,7 +385,7 @@ __vue_render__$g._withStripped = true;
/* style */
const __vue_inject_styles__$g = undefined;
/* scoped */
const __vue_scope_id__$g = "data-v-43ef9f54";
const __vue_scope_id__$g = "data-v-1fe2904e";
/* module identifier */
const __vue_module_identifier__$g = undefined;
/* functional template */
@ -13575,7 +13575,7 @@ __vue_render__$f._withStripped = true;
/* style */
const __vue_inject_styles__$f = undefined;
/* scoped */
const __vue_scope_id__$f = "data-v-432b6cd2";
const __vue_scope_id__$f = "data-v-ac616226";
/* module identifier */
const __vue_module_identifier__$f = undefined;
/* functional template */
@ -13788,7 +13788,7 @@ __vue_render__$e._withStripped = true;
/* style */
const __vue_inject_styles__$e = undefined;
/* scoped */
const __vue_scope_id__$e = "data-v-111cf251";
const __vue_scope_id__$e = "data-v-6cd8acd6";
/* module identifier */
const __vue_module_identifier__$e = undefined;
/* functional template */
@ -13980,7 +13980,7 @@ __vue_render__$d._withStripped = true;
/* style */
const __vue_inject_styles__$d = undefined;
/* scoped */
const __vue_scope_id__$d = "data-v-5a1894ea";
const __vue_scope_id__$d = "data-v-f3840eb4";
/* module identifier */
const __vue_module_identifier__$d = undefined;
/* functional template */
@ -14356,7 +14356,7 @@ __vue_render__$c._withStripped = true;
/* style */
const __vue_inject_styles__$c = undefined;
/* scoped */
const __vue_scope_id__$c = "data-v-4605914c";
const __vue_scope_id__$c = "data-v-6c11c1df";
/* module identifier */
const __vue_module_identifier__$c = undefined;
/* functional template */
@ -14672,7 +14672,7 @@ __vue_render__$b._withStripped = true;
/* style */
const __vue_inject_styles__$b = undefined;
/* scoped */
const __vue_scope_id__$b = "data-v-9f3637dc";
const __vue_scope_id__$b = "data-v-3d438652";
/* module identifier */
const __vue_module_identifier__$b = undefined;
/* functional template */
@ -19789,7 +19789,7 @@ __vue_render__$a._withStripped = true;
/* style */
const __vue_inject_styles__$a = undefined;
/* scoped */
const __vue_scope_id__$a = "data-v-4a22b201";
const __vue_scope_id__$a = "data-v-56033706";
/* module identifier */
const __vue_module_identifier__$a = undefined;
/* functional template */
@ -20091,7 +20091,7 @@ __vue_render__$9._withStripped = true;
/* style */
const __vue_inject_styles__$9 = undefined;
/* scoped */
const __vue_scope_id__$9 = "data-v-a868932e";
const __vue_scope_id__$9 = "data-v-685addee";
/* module identifier */
const __vue_module_identifier__$9 = undefined;
/* functional template */
@ -20969,7 +20969,7 @@ __vue_render__$8._withStripped = true;
/* style */
const __vue_inject_styles__$8 = undefined;
/* scoped */
const __vue_scope_id__$8 = "data-v-56f16adc";
const __vue_scope_id__$8 = "data-v-cbaaf53e";
/* module identifier */
const __vue_module_identifier__$8 = undefined;
/* functional template */
@ -21303,7 +21303,7 @@ __vue_render__$7._withStripped = true;
/* style */
const __vue_inject_styles__$7 = undefined;
/* scoped */
const __vue_scope_id__$7 = "data-v-706e281e";
const __vue_scope_id__$7 = "data-v-9c5a6694";
/* module identifier */
const __vue_module_identifier__$7 = undefined;
/* functional template */
@ -21520,7 +21520,7 @@ __vue_render__$6._withStripped = true;
/* style */
const __vue_inject_styles__$6 = undefined;
/* scoped */
const __vue_scope_id__$6 = "data-v-33a4cdd5";
const __vue_scope_id__$6 = "data-v-aec120a0";
/* module identifier */
const __vue_module_identifier__$6 = undefined;
/* functional template */
@ -21733,7 +21733,7 @@ __vue_render__$5._withStripped = true;
/* style */
const __vue_inject_styles__$5 = undefined;
/* scoped */
const __vue_scope_id__$5 = "data-v-070c50ee";
const __vue_scope_id__$5 = "data-v-2d3153b3";
/* module identifier */
const __vue_module_identifier__$5 = undefined;
/* functional template */
@ -21925,7 +21925,7 @@ __vue_render__$4._withStripped = true;
/* style */
const __vue_inject_styles__$4 = undefined;
/* scoped */
const __vue_scope_id__$4 = "data-v-b67ffd48";
const __vue_scope_id__$4 = "data-v-6db419e1";
/* module identifier */
const __vue_module_identifier__$4 = undefined;
/* functional template */
@ -22241,7 +22241,7 @@ __vue_render__$3._withStripped = true;
/* style */
const __vue_inject_styles__$3 = undefined;
/* scoped */
const __vue_scope_id__$3 = "data-v-5cd637ec";
const __vue_scope_id__$3 = "data-v-303501f1";
/* module identifier */
const __vue_module_identifier__$3 = undefined;
/* functional template */
@ -22550,7 +22550,7 @@ __vue_render__$2._withStripped = true;
/* style */
const __vue_inject_styles__$2 = undefined;
/* scoped */
const __vue_scope_id__$2 = "data-v-758ca1a6";
const __vue_scope_id__$2 = "data-v-cc053d1c";
/* module identifier */
const __vue_module_identifier__$2 = undefined;
/* functional template */
@ -23276,7 +23276,7 @@ __vue_render__$1._withStripped = true;
/* style */
const __vue_inject_styles__$1 = undefined;
/* scoped */
const __vue_scope_id__$1 = "data-v-7a21e98c";
const __vue_scope_id__$1 = "data-v-992fef82";
/* module identifier */
const __vue_module_identifier__$1 = undefined;
/* functional template */
@ -23528,7 +23528,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-64e4f348";
const __vue_scope_id__ = "data-v-bbb516e6";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

File diff suppressed because one or more lines are too long

View File

@ -1,9 +1,9 @@
.read-the-docs[data-v-a8861796] {
.read-the-docs[data-v-1eead8ba] {
color: #888;
}
.read-the-docs[data-v-be1c9976] {
.read-the-docs[data-v-7b73b520] {
color: #888;
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
//
@ -112,7 +112,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__$1 = undefined;
/* scoped */
const __vue_scope_id__$1 = "data-v-be1c9976";
const __vue_scope_id__$1 = "data-v-7b73b520";
/* module identifier */
const __vue_module_identifier__$1 = undefined;
/* functional template */
@ -225,7 +225,7 @@ const __vue_script__ = script;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-a8861796";
const __vue_scope_id__ = "data-v-1eead8ba";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1 +1 @@
.read-the-docs[data-v-a8861796]{color:#888}.read-the-docs[data-v-be1c9976]{color:#888}
.read-the-docs[data-v-1eead8ba]{color:#888}.read-the-docs[data-v-7b73b520]{color:#888}

View File

@ -1,5 +1,5 @@
.preview-item-file[data-v-f6556cdc]:hover,
.slip-over-cover[data-v-f6556cdc]:hover {
.preview-item-file[data-v-9bdcd2a6]:hover,
.slip-over-cover[data-v-9bdcd2a6]:hover {
cursor: pointer;
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var epub = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAoCAMAAAChHKjRAAAAAXNSR0IArs4c6QAAAjdQTFRFAAAAiXb/kG/0inD6inX6jW72jXL2eGLpe2fuinL2i3H3iHf6i3L5dmTvjHH3inP4inH2i3L2d2TuhW7vjHH5d2TqjnH5fWnyd2bskHb5jXX1jHH2i3H3i3H4i3H4d2Xsd2Xqi3H4cmLoi3L4inH3i3L3inL3i3L3jHL3hG3zi3L3jHL4jnT5i3L3i3L3jHH2bFPvbl/nb2DncF/ncVP1cWHncWHocWHpclP2cmLpc2Lpc2Lqc2Ppc2PqdGPpdGPqd1r1d1z0d2TreFv2eFz0eFz1eGDxeGbseVv1eVz1el31el32el71el72e133e1/2e2TxfGD1fGXxfWD3fWH2fmjxf2T2f2rwgGX3gGnygWX2gWb2gWb3gWrzgWzzgmb3gmf2gmzyg23zhGj3hGn2hGr2hGr3hG3zhWr3hWv2hWv3hWz3hW7zhW70hmz3h233h273iG34iG/3iW34iW74iW/3iXD3iXH2inD4inH3inP2i3D4i3H3i3H4i3L3i3L4i3P4jHL3jHL4jHP3jHP4jHT2jHT3jHrxjHryjXP4jXT3jXT5jXX3jXvyjnT5jnX4j3T5j3T6j3b3lYH2l4H4mIL4mYP4movynY/xpJL3pJfzpZL5pZjzqJX5q5n5r576saD6uaz3va/7zMT5zcP7z8X70Mb70sj708n708r71c381c761s382ND72db4393549z+4+H55+b66OL96+b+6+r67+v+8/L99PD/9vT+///9///+////0H5GmAAAADB0Uk5TAA0XMjI6OkZNVVpefX+HjJCRkpSeoausra2vs7W2t7i5v8TN1tbd3t/o6+7v8PH8u0jmrQAAAapJREFUOMtjYGBgYBZQ1sMAOpoKHAwIwF+HDfSlG9nzElADVGRuZScEVcNWiVORvY29KESRZDluRfb2VhJgRSp1OBQlgRTZW8uDFKnjUpRrZgtSZamER1Fji5MhSJG9qTgDgxoORXXd5e5mYGDMjltRXV9nTiIIxAkjKeoq8veFg5DK5rqWvgl9QDBRCklRacG8BfOhYMHs/Bq4hBySIu9Fe5DAXH+4hDRCUaXnqj3b12+EgE3rJidjVeS1ZM9ig4AgMAh1S+3HpWiFX2EJGBRXN9fhUrQyBFt0oylaahIWBQZ5bbgVrW2eMhUMyrLacCqCgx2TUnAr2gUFW1szcCpaHd7RCwLtkVlduB1uEREDAvGFXXWUBcFy5+x8MMgrwh2Yyxyy8sCgKDqtB6sijzV7dm7eAgHbNkxLwKaoznvhbqSkMjMYq6La2BlzZkHBnOmZ9VgVtVX4OLpCgUtgUzNWRXV1zS1w0Ig9CHADaZyZEwnIMGgQViTLoEpYkQiDWBUhNTXcDKwEDdJnZGAQJKCmgQtUQvHhVaPNCSkRWQSVdfWwAi1FHiagAgAPu3js6FbZbgAAAABJRU5ErkJggg==";
@ -1417,7 +1417,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-f6556cdc";
const __vue_scope_id__ = "data-v-9bdcd2a6";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1 +1 @@
.preview-item-file[data-v-f6556cdc]:hover,.slip-over-cover[data-v-f6556cdc]:hover{cursor:pointer}
.preview-item-file[data-v-9bdcd2a6]:hover,.slip-over-cover[data-v-9bdcd2a6]:hover{cursor:pointer}

View File

@ -1,7 +1,7 @@
.xml-single-ebook-group-h5[data-v-25b5113c] {
.xml-single-ebook-group-h5[data-v-55908341] {
}
.xml-single-ebook-group-pc[data-v-25b5113c] {
.xml-single-ebook-group-pc[data-v-55908341] {
}
.xml-single-ebook-group-pad[data-v-25b5113c] {
.xml-single-ebook-group-pad[data-v-55908341] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var singleGroupMixin = {
@ -306,7 +306,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-25b5113c";
const __vue_scope_id__ = "data-v-55908341";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,7 +1,7 @@
.xml-single-ebook-group-h5[data-v-0f8e6fa6] {
.xml-single-ebook-group-h5[data-v-af9b8d4c] {
}
.xml-single-ebook-group-pc[data-v-0f8e6fa6] {
.xml-single-ebook-group-pc[data-v-af9b8d4c] {
}
.xml-single-ebook-group-pad[data-v-0f8e6fa6] {
.xml-single-ebook-group-pad[data-v-af9b8d4c] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var singleGroupMixin = {
@ -128,6 +128,10 @@ var script = {
type: String,
default: ''
},
bookReaderPath: {
type: String,
default: ''
},
extendParams: {
type: Object,
default: function () {
@ -305,6 +309,7 @@ var __vue_render__ = function () {
"rule-index": _vm.ruleIndex,
mode: _vm.mode,
resourceBasisPath: _vm.resourceBasisPath,
bookReaderPath: _vm.bookReaderPath,
isReader: _vm.isReader,
},
on: {
@ -325,7 +330,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-0f8e6fa6";
const __vue_scope_id__ = "data-v-af9b8d4c";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,7 +1,7 @@
.xml-single-ebook-group-h5[data-v-0d2309a4] {
.xml-single-ebook-group-h5[data-v-0b9200e9] {
}
.xml-single-ebook-group-pc[data-v-0d2309a4] {
.xml-single-ebook-group-pc[data-v-0b9200e9] {
}
.xml-single-ebook-group-pad[data-v-0d2309a4] {
.xml-single-ebook-group-pad[data-v-0b9200e9] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var singleGroupMixin = {
@ -329,7 +329,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-0d2309a4";
const __vue_scope_id__ = "data-v-0b9200e9";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var singleGroupMixin = {

View File

@ -1,7 +1,7 @@
.xml-single-music-group-h5[data-v-2afe911e] {
.xml-single-music-group-h5[data-v-0ba26268] {
}
.xml-single-music-group-pc[data-v-2afe911e] {
.xml-single-music-group-pc[data-v-0ba26268] {
}
.xml-single-music-group-pad[data-v-2afe911e] {
.xml-single-music-group-pad[data-v-0ba26268] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var singleGroupMixin = {
@ -313,7 +313,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-2afe911e";
const __vue_scope_id__ = "data-v-0ba26268";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,7 +1,7 @@
.xml-single-question-group-h5[data-v-30e02b9d] {
.xml-single-question-group-h5[data-v-77922a38] {
}
.xml-single-question-group-pc[data-v-30e02b9d] {
.xml-single-question-group-pc[data-v-77922a38] {
}
.xml-single-question-group-pad[data-v-30e02b9d] {
.xml-single-question-group-pad[data-v-77922a38] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var singleGroupMixin = {
@ -345,7 +345,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-30e02b9d";
const __vue_scope_id__ = "data-v-77922a38";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,7 +1,7 @@
.xml-single-question-group-h5[data-v-eb16744a] {
.xml-single-question-group-h5[data-v-34ba0440] {
}
.xml-single-question-group-pc[data-v-eb16744a] {
.xml-single-question-group-pc[data-v-34ba0440] {
}
.xml-single-question-group-pad[data-v-eb16744a] {
.xml-single-question-group-pad[data-v-34ba0440] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var singleGroupMixin = {
@ -337,7 +337,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-eb16744a";
const __vue_scope_id__ = "data-v-34ba0440";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,7 +1,7 @@
.xml-single-question-group-h5[data-v-eb16744a] {
.xml-single-question-group-h5[data-v-34ba0440] {
}
.xml-single-question-group-pc[data-v-eb16744a] {
.xml-single-question-group-pc[data-v-34ba0440] {
}
.xml-single-question-group-pad[data-v-eb16744a] {
.xml-single-question-group-pad[data-v-34ba0440] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var singleGroupMixin = {
@ -337,7 +337,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-eb16744a";
const __vue_scope_id__ = "data-v-34ba0440";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,7 +1,7 @@
.xml-single-text-group-h5[data-v-345e24df] {
.xml-single-text-group-h5[data-v-05ca7fa4] {
}
.xml-single-text-group-pc[data-v-345e24df] {
.xml-single-text-group-pc[data-v-05ca7fa4] {
}
.xml-single-text-group-pad[data-v-345e24df] {
.xml-single-text-group-pad[data-v-05ca7fa4] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var singleGroupMixin = {
@ -361,7 +361,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-345e24df";
const __vue_scope_id__ = "data-v-05ca7fa4";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,7 +1,7 @@
.xml-single-video-group-h5[data-v-ef0341ca] {
.xml-single-video-group-h5[data-v-3ae74720] {
}
.xml-single-video-group-pc[data-v-ef0341ca] {
.xml-single-video-group-pc[data-v-3ae74720] {
}
.xml-single-video-group-pad[data-v-ef0341ca] {
.xml-single-video-group-pad[data-v-3ae74720] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
var singleGroupMixin = {
@ -325,7 +325,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-ef0341ca";
const __vue_scope_id__ = "data-v-3ae74720";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,102 +1,110 @@
/*# sourceMappingURL=Greytheme1.vue.map */
/*# sourceMappingURL=ninth.vue.map */
/*# sourceMappingURL=fourth.vue.map */
/*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */
/*# sourceMappingURL=eighth.vue.map */
/*# sourceMappingURL=Greytheme6.vue.map */
/*# sourceMappingURL=seventh.vue.map */
/*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=Greytheme5.vue.map */
/*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=Greytheme3.vue.map */
/*# sourceMappingURL=tenth.vue.map */
/*# sourceMappingURL=Greytheme4.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=eleventh.vue.map */
/*# sourceMappingURL=ninth.vue.map */
/*# sourceMappingURL=sixth.vue.map */
/*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=seventh.vue.map */
/*# sourceMappingURL=fourth.vue.map */
/*# sourceMappingURL=tenth.vue.map */
/*# sourceMappingURL=eighth.vue.map */
/*# sourceMappingURL=Greytheme1.vue.map */
/*# sourceMappingURL=Greytheme3.vue.map */
/*# sourceMappingURL=Greytheme4.vue.map */
/*# sourceMappingURL=Greytheme2.vue.map */
/*# sourceMappingURL=eleventh.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=Greytheme6.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=Redtheme1.vue.map */
/*# sourceMappingURL=Yellowtheme4.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=Yellowtheme4.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=Yellowtheme3.vue.map */
/*# sourceMappingURL=Bluetheme2.vue.map */
/*# sourceMappingURL=Redtheme4.vue.map */
/*# sourceMappingURL=Greentheme1.vue.map */
/*# sourceMappingURL=Greytheme5.vue.map */
/*# sourceMappingURL=Bluetheme4.vue.map */
/*# sourceMappingURL=Redtheme3.vue.map */
/*# sourceMappingURL=Redtheme2.vue.map */
/*# sourceMappingURL=Bluetheme3.vue.map */
/*# sourceMappingURL=Greentheme1.vue.map */
/*# sourceMappingURL=Bluetheme2.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=Greytheme2.vue.map */
/*# sourceMappingURL=Redtheme3.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */
/*# sourceMappingURL=Bluetheme1.vue.map */
.xml-text-h5[data-v-4666e3b2] {
}
.xml-text-pc[data-v-4666e3b2] {
}
.xml-text-h5[data-v-4666e3b2] {
}
/*# sourceMappingURL=Bluetheme4.vue.map */
.xml-text-h5 .inline-audio-wrap,
.xml-text-h5 .inline-link-wrap {
align-items: center;
@ -168,14 +176,6 @@
/*# sourceMappingURL=XmlText.vue.map */
.xml-text-h5[data-v-ab7c5c76] {
}
.xml-text-pc[data-v-ab7c5c76] {
}
.xml-text-h5[data-v-ab7c5c76] {
}
/*# sourceMappingURL=XmlTextDialog.vue.map */

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
import crypto from 'crypto';
@ -9364,7 +9364,7 @@ __vue_render__$B._withStripped = true;
/* style */
const __vue_inject_styles__$A = undefined;
/* scoped */
const __vue_scope_id__$A = "data-v-6f58d350";
const __vue_scope_id__$A = "data-v-7aa6099d";
/* module identifier */
const __vue_module_identifier__$A = undefined;
/* functional template */
@ -48782,6 +48782,13 @@ var script$x = {
blockId: this.blockId
};
},
isImportContent() {
let htmlStr = this.pBlockData?.html || '';
return this.pBlockData?.inputBy?.includes('import--') || htmlStr.includes('<section class="docx">') && htmlStr.includes('</section>');
},
isPureTextComponent() {
return this.currentRule.componentsName === 'xml-single-text-group';
},
userType() {
return this.getProviderUserType();
},
@ -50209,11 +50216,20 @@ var __vue_render__$x = function () {
[
_vm.mode === "editor"
? _vm._t("editor", null, { feedback: _vm.feedback })
: _c("div", {
: _c(
"div",
{
staticClass: "richtext-reset-wrapper--view",
class: [_vm.isPureTextComponent && "pure-text-component"],
attrs: { id: _vm.markRootId },
},
[
_c("section", {
class: _vm.isImportContent && "docx",
domProps: { innerHTML: _vm._s(_vm.richContent) },
}),
]
),
_vm._v(" "),
_vm._t("mater-lib-dialog"),
_vm._v(" "),
@ -51042,7 +51058,7 @@ __vue_render__$x._withStripped = true;
/* style */
const __vue_inject_styles__$x = undefined;
/* scoped */
const __vue_scope_id__$x = "data-v-ab7c5c76";
const __vue_scope_id__$x = "data-v-4666e3b2";
/* module identifier */
const __vue_module_identifier__$x = undefined;
/* functional template */
@ -51314,7 +51330,7 @@ __vue_render__$w._withStripped = true;
/* style */
const __vue_inject_styles__$w = undefined;
/* scoped */
const __vue_scope_id__$w = "data-v-e6c9fe86";
const __vue_scope_id__$w = "data-v-2bc4bb7c";
/* module identifier */
const __vue_module_identifier__$w = undefined;
/* functional template */
@ -51509,7 +51525,7 @@ __vue_render__$v._withStripped = true;
/* style */
const __vue_inject_styles__$v = undefined;
/* scoped */
const __vue_scope_id__$v = "data-v-fb736abc";
const __vue_scope_id__$v = "data-v-6f11c332";
/* module identifier */
const __vue_module_identifier__$v = undefined;
/* functional template */
@ -51700,7 +51716,7 @@ __vue_render__$u._withStripped = true;
/* style */
const __vue_inject_styles__$u = undefined;
/* scoped */
const __vue_scope_id__$u = "data-v-15db9268";
const __vue_scope_id__$u = "data-v-64b07e51";
/* module identifier */
const __vue_module_identifier__$u = undefined;
/* functional template */
@ -51897,7 +51913,7 @@ __vue_render__$t._withStripped = true;
/* style */
const __vue_inject_styles__$t = undefined;
/* scoped */
const __vue_scope_id__$t = "data-v-f7e63308";
const __vue_scope_id__$t = "data-v-701026d2";
/* module identifier */
const __vue_module_identifier__$t = undefined;
/* functional template */
@ -52094,7 +52110,7 @@ __vue_render__$s._withStripped = true;
/* style */
const __vue_inject_styles__$s = undefined;
/* scoped */
const __vue_scope_id__$s = "data-v-1aedf48a";
const __vue_scope_id__$s = "data-v-ca50cd36";
/* module identifier */
const __vue_module_identifier__$s = undefined;
/* functional template */
@ -52295,7 +52311,7 @@ __vue_render__$r._withStripped = true;
/* style */
const __vue_inject_styles__$r = undefined;
/* scoped */
const __vue_scope_id__$r = "data-v-b4e57fd2";
const __vue_scope_id__$r = "data-v-ebd7fe48";
/* module identifier */
const __vue_module_identifier__$r = undefined;
/* functional template */
@ -52516,7 +52532,7 @@ __vue_render__$q._withStripped = true;
/* style */
const __vue_inject_styles__$q = undefined;
/* scoped */
const __vue_scope_id__$q = "data-v-573b56e9";
const __vue_scope_id__$q = "data-v-6c00036e";
/* module identifier */
const __vue_module_identifier__$q = undefined;
/* functional template */
@ -52713,7 +52729,7 @@ __vue_render__$p._withStripped = true;
/* style */
const __vue_inject_styles__$p = undefined;
/* scoped */
const __vue_scope_id__$p = "data-v-e50253fe";
const __vue_scope_id__$p = "data-v-1888461c";
/* module identifier */
const __vue_module_identifier__$p = undefined;
/* functional template */
@ -52910,7 +52926,7 @@ __vue_render__$o._withStripped = true;
/* style */
const __vue_inject_styles__$o = undefined;
/* scoped */
const __vue_scope_id__$o = "data-v-182aaf7b";
const __vue_scope_id__$o = "data-v-43776a56";
/* module identifier */
const __vue_module_identifier__$o = undefined;
/* functional template */
@ -53107,7 +53123,7 @@ __vue_render__$n._withStripped = true;
/* style */
const __vue_inject_styles__$n = undefined;
/* scoped */
const __vue_scope_id__$n = "data-v-61e2f18f";
const __vue_scope_id__$n = "data-v-1d7ec26a";
/* module identifier */
const __vue_module_identifier__$n = undefined;
/* functional template */
@ -53306,7 +53322,7 @@ __vue_render__$m._withStripped = true;
/* style */
const __vue_inject_styles__$m = undefined;
/* scoped */
const __vue_scope_id__$m = "data-v-3e2c52f5";
const __vue_scope_id__$m = "data-v-390efcba";
/* module identifier */
const __vue_module_identifier__$m = undefined;
/* functional template */
@ -53517,7 +53533,7 @@ __vue_render__$l._withStripped = true;
/* style */
const __vue_inject_styles__$l = undefined;
/* scoped */
const __vue_scope_id__$l = "data-v-65cda570";
const __vue_scope_id__$l = "data-v-cc50973a";
/* module identifier */
const __vue_module_identifier__$l = undefined;
/* functional template */
@ -53728,7 +53744,7 @@ __vue_render__$k._withStripped = true;
/* style */
const __vue_inject_styles__$k = undefined;
/* scoped */
const __vue_scope_id__$k = "data-v-17b5d032";
const __vue_scope_id__$k = "data-v-acfeac7c";
/* module identifier */
const __vue_module_identifier__$k = undefined;
/* functional template */
@ -53939,7 +53955,7 @@ __vue_render__$j._withStripped = true;
/* style */
const __vue_inject_styles__$j = undefined;
/* scoped */
const __vue_scope_id__$j = "data-v-72f80cc0";
const __vue_scope_id__$j = "data-v-3fb693db";
/* module identifier */
const __vue_module_identifier__$j = undefined;
/* functional template */
@ -54150,7 +54166,7 @@ __vue_render__$i._withStripped = true;
/* style */
const __vue_inject_styles__$i = undefined;
/* scoped */
const __vue_scope_id__$i = "data-v-45e77c7c";
const __vue_scope_id__$i = "data-v-12a60397";
/* module identifier */
const __vue_module_identifier__$i = undefined;
/* functional template */
@ -54361,7 +54377,7 @@ __vue_render__$h._withStripped = true;
/* style */
const __vue_inject_styles__$h = undefined;
/* scoped */
const __vue_scope_id__$h = "data-v-18d6ec38";
const __vue_scope_id__$h = "data-v-34d5195a";
/* module identifier */
const __vue_module_identifier__$h = undefined;
/* functional template */
@ -54572,7 +54588,7 @@ __vue_render__$g._withStripped = true;
/* style */
const __vue_inject_styles__$g = undefined;
/* scoped */
const __vue_scope_id__$g = "data-v-28734818";
const __vue_scope_id__$g = "data-v-8ef639e2";
/* module identifier */
const __vue_module_identifier__$g = undefined;
/* functional template */
@ -54763,7 +54779,7 @@ __vue_render__$f._withStripped = true;
/* style */
const __vue_inject_styles__$f = undefined;
/* scoped */
const __vue_scope_id__$f = "data-v-01d8a966";
const __vue_scope_id__$f = "data-v-1871b8e8";
/* module identifier */
const __vue_module_identifier__$f = undefined;
/* functional template */
@ -54954,7 +54970,7 @@ __vue_render__$e._withStripped = true;
/* style */
const __vue_inject_styles__$e = undefined;
/* scoped */
const __vue_scope_id__$e = "data-v-a61d382c";
const __vue_scope_id__$e = "data-v-73611cf6";
/* module identifier */
const __vue_module_identifier__$e = undefined;
/* functional template */
@ -55145,7 +55161,7 @@ __vue_render__$d._withStripped = true;
/* style */
const __vue_inject_styles__$d = undefined;
/* scoped */
const __vue_scope_id__$d = "data-v-5acf1c87";
const __vue_scope_id__$d = "data-v-742d2a22";
/* module identifier */
const __vue_module_identifier__$d = undefined;
/* functional template */
@ -55336,7 +55352,7 @@ __vue_render__$c._withStripped = true;
/* style */
const __vue_inject_styles__$c = undefined;
/* scoped */
const __vue_scope_id__$c = "data-v-08acd524";
const __vue_scope_id__$c = "data-v-220ae2bf";
/* module identifier */
const __vue_module_identifier__$c = undefined;
/* functional template */
@ -55527,7 +55543,7 @@ __vue_render__$b._withStripped = true;
/* style */
const __vue_inject_styles__$b = undefined;
/* scoped */
const __vue_scope_id__$b = "data-v-d692ea4c";
const __vue_scope_id__$b = "data-v-6f969a42";
/* module identifier */
const __vue_module_identifier__$b = undefined;
/* functional template */
@ -55718,7 +55734,7 @@ __vue_render__$a._withStripped = true;
/* style */
const __vue_inject_styles__$a = undefined;
/* scoped */
const __vue_scope_id__$a = "data-v-3392c359";
const __vue_scope_id__$a = "data-v-6710eb5e";
/* module identifier */
const __vue_module_identifier__$a = undefined;
/* functional template */
@ -55909,7 +55925,7 @@ __vue_render__$9._withStripped = true;
/* style */
const __vue_inject_styles__$9 = undefined;
/* scoped */
const __vue_scope_id__$9 = "data-v-5b220850";
const __vue_scope_id__$9 = "data-v-05ed23dd";
/* module identifier */
const __vue_module_identifier__$9 = undefined;
/* functional template */
@ -56100,7 +56116,7 @@ __vue_render__$8._withStripped = true;
/* style */
const __vue_inject_styles__$8 = undefined;
/* scoped */
const __vue_scope_id__$8 = "data-v-714b3457";
const __vue_scope_id__$8 = "data-v-b66d4748";
/* module identifier */
const __vue_module_identifier__$8 = undefined;
/* functional template */
@ -56291,7 +56307,7 @@ __vue_render__$7._withStripped = true;
/* style */
const __vue_inject_styles__$7 = undefined;
/* scoped */
const __vue_scope_id__$7 = "data-v-d8385330";
const __vue_scope_id__$7 = "data-v-9ab9b2a6";
/* module identifier */
const __vue_module_identifier__$7 = undefined;
/* functional template */
@ -56482,7 +56498,7 @@ __vue_render__$6._withStripped = true;
/* style */
const __vue_inject_styles__$6 = undefined;
/* scoped */
const __vue_scope_id__$6 = "data-v-21710b27";
const __vue_scope_id__$6 = "data-v-40305b6c";
/* module identifier */
const __vue_module_identifier__$6 = undefined;
/* functional template */
@ -56673,7 +56689,7 @@ __vue_render__$5._withStripped = true;
/* style */
const __vue_inject_styles__$5 = undefined;
/* scoped */
const __vue_scope_id__$5 = "data-v-74b5aaba";
const __vue_scope_id__$5 = "data-v-3e15c828";
/* module identifier */
const __vue_module_identifier__$5 = undefined;
/* functional template */
@ -56864,7 +56880,7 @@ __vue_render__$4._withStripped = true;
/* style */
const __vue_inject_styles__$4 = undefined;
/* scoped */
const __vue_scope_id__$4 = "data-v-3c8b74a5";
const __vue_scope_id__$4 = "data-v-5b4ac4ea";
/* module identifier */
const __vue_module_identifier__$4 = undefined;
/* functional template */
@ -57055,7 +57071,7 @@ __vue_render__$3._withStripped = true;
/* style */
const __vue_inject_styles__$3 = undefined;
/* scoped */
const __vue_scope_id__$3 = "data-v-2c5cb5ca";
const __vue_scope_id__$3 = "data-v-2fc4c2f6";
/* module identifier */
const __vue_module_identifier__$3 = undefined;
/* functional template */
@ -57246,7 +57262,7 @@ __vue_render__$2._withStripped = true;
/* style */
const __vue_inject_styles__$2 = undefined;
/* scoped */
const __vue_scope_id__$2 = "data-v-593dd0f8";
const __vue_scope_id__$2 = "data-v-c19e225a";
/* module identifier */
const __vue_module_identifier__$2 = undefined;
/* functional template */
@ -57437,7 +57453,7 @@ __vue_render__$1._withStripped = true;
/* style */
const __vue_inject_styles__$1 = undefined;
/* scoped */
const __vue_scope_id__$1 = "data-v-6eac0656";
const __vue_scope_id__$1 = "data-v-0e9d1ab0";
/* module identifier */
const __vue_module_identifier__$1 = undefined;
/* functional template */
@ -57628,7 +57644,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-381628b2";
const __vue_scope_id__ = "data-v-7e09468d";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
//
@ -367,7 +367,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-18650942";
const __vue_scope_id__ = "data-v-326ad307";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -69,11 +69,11 @@
/*# sourceMappingURL=XmlText.vue.map */
.xml-text-h5[data-v-ab7c5c76] {
.xml-text-h5[data-v-4666e3b2] {
}
.xml-text-pc[data-v-ab7c5c76] {
.xml-text-pc[data-v-4666e3b2] {
}
.xml-text-h5[data-v-ab7c5c76] {
.xml-text-h5[data-v-4666e3b2] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
import crypto from 'crypto';
@ -9364,7 +9364,7 @@ __vue_render__$4._withStripped = true;
/* style */
const __vue_inject_styles__$3 = undefined;
/* scoped */
const __vue_scope_id__$3 = "data-v-6f58d350";
const __vue_scope_id__$3 = "data-v-7aa6099d";
/* module identifier */
const __vue_module_identifier__$3 = undefined;
/* functional template */
@ -48782,6 +48782,13 @@ var script = {
blockId: this.blockId
};
},
isImportContent() {
let htmlStr = this.pBlockData?.html || '';
return this.pBlockData?.inputBy?.includes('import--') || htmlStr.includes('<section class="docx">') && htmlStr.includes('</section>');
},
isPureTextComponent() {
return this.currentRule.componentsName === 'xml-single-text-group';
},
userType() {
return this.getProviderUserType();
},
@ -50209,11 +50216,20 @@ var __vue_render__ = function () {
[
_vm.mode === "editor"
? _vm._t("editor", null, { feedback: _vm.feedback })
: _c("div", {
: _c(
"div",
{
staticClass: "richtext-reset-wrapper--view",
class: [_vm.isPureTextComponent && "pure-text-component"],
attrs: { id: _vm.markRootId },
},
[
_c("section", {
class: _vm.isImportContent && "docx",
domProps: { innerHTML: _vm._s(_vm.richContent) },
}),
]
),
_vm._v(" "),
_vm._t("mater-lib-dialog"),
_vm._v(" "),
@ -51042,7 +51058,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-ab7c5c76";
const __vue_scope_id__ = "data-v-4666e3b2";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,33 +1,57 @@
/*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=square.vue.map */
/*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=hexagon.vue.map */
/*# sourceMappingURL=sixth.vue.map */
/*# sourceMappingURL=hexagon.vue.map */
/*# sourceMappingURL=rectangle.vue.map */
/*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=rotundity.vue.map */
/*# sourceMappingURL=triangle.vue.map */
/*# sourceMappingURL=rotundity.vue.map */
/*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=square.vue.map */
/*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=semicircle.vue.map */
/*# sourceMappingURL=thirteenth.vue.map */
/*# sourceMappingURL=nineteen.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=fourteen.vue.map */
/*# sourceMappingURL=twelfth.vue.map */
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=Greentheme5.vue.map */
/*# sourceMappingURL=eighteen2.vue.map */
@ -36,82 +60,25 @@
/*# sourceMappingURL=fifteen.vue.map */
/*# sourceMappingURL=thirteenth.vue.map */
/*# sourceMappingURL=fourteen.vue.map */
/*# sourceMappingURL=seventeen.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */
/*# sourceMappingURL=eighteen.vue.map */
/*# sourceMappingURL=Greentheme1.vue.map */
/*# sourceMappingURL=Yellowtheme5.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=twelfth.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=rectangle.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=eighteen.vue.map */
/*# sourceMappingURL=Yellowtheme6.vue.map */
/*# sourceMappingURL=Greentheme5.vue.map */
/*# sourceMappingURL=Greentheme6.vue.map */
/*# sourceMappingURL=SanQintheme3.vue.map */
/*# sourceMappingURL=nineteen.vue.map */
/*# sourceMappingURL=seventeen.vue.map */
/*# sourceMappingURL=Yellowtheme4.vue.map */
/*# sourceMappingURL=Yellowtheme3.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=semicircle.vue.map */
/*# sourceMappingURL=SanQintheme2.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=Twentytwo.vue.map */
/*# sourceMappingURL=Twentyfour.vue.map */
/*# sourceMappingURL=Twentyone.vue.map */
/*# sourceMappingURL=Twentyfive.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */
/*# sourceMappingURL=twenty.vue.map */
@ -120,16 +87,49 @@
/*# sourceMappingURL=Knowledge.vue.map */
/*# sourceMappingURL=Twentythree.vue.map */
/*# sourceMappingURL=Greentheme6.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=Yellowtheme6.vue.map */
/*# sourceMappingURL=SanQintheme1.vue.map */
.xml-text-h5[data-v-ab7c5c76] {
/*# sourceMappingURL=Twentyone.vue.map */
/*# sourceMappingURL=SanQintheme3.vue.map */
/*# sourceMappingURL=Yellowtheme3.vue.map */
/*# sourceMappingURL=Twentythree.vue.map */
/*# sourceMappingURL=Yellowtheme5.vue.map */
/*# sourceMappingURL=Twentyfive.vue.map */
/*# sourceMappingURL=SanQintheme2.vue.map */
/*# sourceMappingURL=Twentyfour.vue.map */
/*# sourceMappingURL=Twentytwo.vue.map */
.xml-text-h5[data-v-4666e3b2] {
}
.xml-text-pc[data-v-ab7c5c76] {
.xml-text-pc[data-v-4666e3b2] {
}
.xml-text-h5[data-v-ab7c5c76] {
.xml-text-h5[data-v-4666e3b2] {
}
.xml-text-h5 .inline-audio-wrap,

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
import crypto from 'crypto';
@ -9364,7 +9364,7 @@ __vue_render__$K._withStripped = true;
/* style */
const __vue_inject_styles__$J = undefined;
/* scoped */
const __vue_scope_id__$J = "data-v-6f58d350";
const __vue_scope_id__$J = "data-v-7aa6099d";
/* module identifier */
const __vue_module_identifier__$J = undefined;
/* functional template */
@ -48782,6 +48782,13 @@ var script$G = {
blockId: this.blockId
};
},
isImportContent() {
let htmlStr = this.pBlockData?.html || '';
return this.pBlockData?.inputBy?.includes('import--') || htmlStr.includes('<section class="docx">') && htmlStr.includes('</section>');
},
isPureTextComponent() {
return this.currentRule.componentsName === 'xml-single-text-group';
},
userType() {
return this.getProviderUserType();
},
@ -50209,11 +50216,20 @@ var __vue_render__$G = function () {
[
_vm.mode === "editor"
? _vm._t("editor", null, { feedback: _vm.feedback })
: _c("div", {
: _c(
"div",
{
staticClass: "richtext-reset-wrapper--view",
class: [_vm.isPureTextComponent && "pure-text-component"],
attrs: { id: _vm.markRootId },
},
[
_c("section", {
class: _vm.isImportContent && "docx",
domProps: { innerHTML: _vm._s(_vm.richContent) },
}),
]
),
_vm._v(" "),
_vm._t("mater-lib-dialog"),
_vm._v(" "),
@ -51042,7 +51058,7 @@ __vue_render__$G._withStripped = true;
/* style */
const __vue_inject_styles__$G = undefined;
/* scoped */
const __vue_scope_id__$G = "data-v-ab7c5c76";
const __vue_scope_id__$G = "data-v-4666e3b2";
/* module identifier */
const __vue_module_identifier__$G = undefined;
/* functional template */
@ -51342,7 +51358,7 @@ __vue_render__$F._withStripped = true;
/* style */
const __vue_inject_styles__$F = undefined;
/* scoped */
const __vue_scope_id__$F = "data-v-b4957530";
const __vue_scope_id__$F = "data-v-56a198fa";
/* module identifier */
const __vue_module_identifier__$F = undefined;
/* functional template */
@ -51562,7 +51578,7 @@ __vue_render__$E._withStripped = true;
/* style */
const __vue_inject_styles__$E = undefined;
/* scoped */
const __vue_scope_id__$E = "data-v-6e4bd170";
const __vue_scope_id__$E = "data-v-2a582ff5";
/* module identifier */
const __vue_module_identifier__$E = undefined;
/* functional template */
@ -51782,7 +51798,7 @@ __vue_render__$D._withStripped = true;
/* style */
const __vue_inject_styles__$D = undefined;
/* scoped */
const __vue_scope_id__$D = "data-v-a93da05e";
const __vue_scope_id__$D = "data-v-13c4d2ec";
/* module identifier */
const __vue_module_identifier__$D = undefined;
/* functional template */
@ -52019,7 +52035,7 @@ __vue_render__$C._withStripped = true;
/* style */
const __vue_inject_styles__$C = undefined;
/* scoped */
const __vue_scope_id__$C = "data-v-f0095c18";
const __vue_scope_id__$C = "data-v-566f2eb9";
/* module identifier */
const __vue_module_identifier__$C = undefined;
/* functional template */
@ -52239,7 +52255,7 @@ __vue_render__$B._withStripped = true;
/* style */
const __vue_inject_styles__$B = undefined;
/* scoped */
const __vue_scope_id__$B = "data-v-e0be6b12";
const __vue_scope_id__$B = "data-v-0dc66d52";
/* module identifier */
const __vue_module_identifier__$B = undefined;
/* functional template */
@ -52455,7 +52471,7 @@ __vue_render__$A._withStripped = true;
/* style */
const __vue_inject_styles__$A = undefined;
/* scoped */
const __vue_scope_id__$A = "data-v-2306d1de";
const __vue_scope_id__$A = "data-v-22bcf379";
/* module identifier */
const __vue_module_identifier__$A = undefined;
/* functional template */
@ -52675,7 +52691,7 @@ __vue_render__$z._withStripped = true;
/* style */
const __vue_inject_styles__$z = undefined;
/* scoped */
const __vue_scope_id__$z = "data-v-3221c087";
const __vue_scope_id__$z = "data-v-0fe46bcc";
/* module identifier */
const __vue_module_identifier__$z = undefined;
/* functional template */
@ -52944,7 +52960,7 @@ __vue_render__$y._withStripped = true;
/* style */
const __vue_inject_styles__$y = undefined;
/* scoped */
const __vue_scope_id__$y = "data-v-0a5d4770";
const __vue_scope_id__$y = "data-v-1457d9f5";
/* module identifier */
const __vue_module_identifier__$y = undefined;
/* functional template */
@ -53164,7 +53180,7 @@ __vue_render__$x._withStripped = true;
/* style */
const __vue_inject_styles__$x = undefined;
/* scoped */
const __vue_scope_id__$x = "data-v-23b381f4";
const __vue_scope_id__$x = "data-v-fb782c6a";
/* module identifier */
const __vue_module_identifier__$x = undefined;
/* functional template */
@ -53433,7 +53449,7 @@ __vue_render__$w._withStripped = true;
/* style */
const __vue_inject_styles__$w = undefined;
/* scoped */
const __vue_scope_id__$w = "data-v-6c5b80dc";
const __vue_scope_id__$w = "data-v-3f81e96d";
/* module identifier */
const __vue_module_identifier__$w = undefined;
/* functional template */
@ -53653,7 +53669,7 @@ __vue_render__$v._withStripped = true;
/* style */
const __vue_inject_styles__$v = undefined;
/* scoped */
const __vue_scope_id__$v = "data-v-61d7e791";
const __vue_scope_id__$v = "data-v-44b9aa96";
/* module identifier */
const __vue_module_identifier__$v = undefined;
/* functional template */
@ -53922,7 +53938,7 @@ __vue_render__$u._withStripped = true;
/* style */
const __vue_inject_styles__$u = undefined;
/* scoped */
const __vue_scope_id__$u = "data-v-06acac49";
const __vue_scope_id__$u = "data-v-7b2e45e4";
/* module identifier */
const __vue_module_identifier__$u = undefined;
/* functional template */
@ -54172,7 +54188,7 @@ __vue_render__$t._withStripped = true;
/* style */
const __vue_inject_styles__$t = undefined;
/* scoped */
const __vue_scope_id__$t = "data-v-8850ccfe";
const __vue_scope_id__$t = "data-v-57857574";
/* module identifier */
const __vue_module_identifier__$t = undefined;
/* functional template */
@ -54390,7 +54406,7 @@ __vue_render__$s._withStripped = true;
/* style */
const __vue_inject_styles__$s = undefined;
/* scoped */
const __vue_scope_id__$s = "data-v-2f96955a";
const __vue_scope_id__$s = "data-v-58b154c2";
/* module identifier */
const __vue_module_identifier__$s = undefined;
/* functional template */
@ -54636,7 +54652,7 @@ __vue_render__$r._withStripped = true;
/* style */
const __vue_inject_styles__$r = undefined;
/* scoped */
const __vue_scope_id__$r = "data-v-1df2118c";
const __vue_scope_id__$r = "data-v-30ad8667";
/* module identifier */
const __vue_module_identifier__$r = undefined;
/* functional template */
@ -54857,7 +54873,7 @@ __vue_render__$q._withStripped = true;
/* style */
const __vue_inject_styles__$q = undefined;
/* scoped */
const __vue_scope_id__$q = "data-v-16547c44";
const __vue_scope_id__$q = "data-v-57360cee";
/* module identifier */
const __vue_module_identifier__$q = undefined;
/* functional template */
@ -55109,7 +55125,7 @@ __vue_render__$p._withStripped = true;
/* style */
const __vue_inject_styles__$p = undefined;
/* scoped */
const __vue_scope_id__$p = "data-v-2482e12e";
const __vue_scope_id__$p = "data-v-05b67824";
/* module identifier */
const __vue_module_identifier__$p = undefined;
/* functional template */
@ -55334,7 +55350,7 @@ __vue_render__$o._withStripped = true;
/* style */
const __vue_inject_styles__$o = undefined;
/* scoped */
const __vue_scope_id__$o = "data-v-ff514a54";
const __vue_scope_id__$o = "data-v-6d98bf1e";
/* module identifier */
const __vue_module_identifier__$o = undefined;
/* functional template */
@ -55559,7 +55575,7 @@ __vue_render__$n._withStripped = true;
/* style */
const __vue_inject_styles__$n = undefined;
/* scoped */
const __vue_scope_id__$n = "data-v-9bba58d0";
const __vue_scope_id__$n = "data-v-f6617d46";
/* module identifier */
const __vue_module_identifier__$n = undefined;
/* functional template */
@ -55777,7 +55793,7 @@ __vue_render__$m._withStripped = true;
/* style */
const __vue_inject_styles__$m = undefined;
/* scoped */
const __vue_scope_id__$m = "data-v-223b64e7";
const __vue_scope_id__$m = "data-v-5d3475c2";
/* module identifier */
const __vue_module_identifier__$m = undefined;
/* functional template */
@ -56028,7 +56044,7 @@ __vue_render__$l._withStripped = true;
/* style */
const __vue_inject_styles__$l = undefined;
/* scoped */
const __vue_scope_id__$l = "data-v-649daf42";
const __vue_scope_id__$l = "data-v-51cc33ba";
/* module identifier */
const __vue_module_identifier__$l = undefined;
/* functional template */
@ -56289,7 +56305,7 @@ __vue_render__$k._withStripped = true;
/* style */
const __vue_inject_styles__$k = undefined;
/* scoped */
const __vue_scope_id__$k = "data-v-eace7d54";
const __vue_scope_id__$k = "data-v-bdb17eca";
/* module identifier */
const __vue_module_identifier__$k = undefined;
/* functional template */
@ -56510,7 +56526,7 @@ __vue_render__$j._withStripped = true;
/* style */
const __vue_inject_styles__$j = undefined;
/* scoped */
const __vue_scope_id__$j = "data-v-a00e7ea6";
const __vue_scope_id__$j = "data-v-5e9c58b2";
/* module identifier */
const __vue_module_identifier__$j = undefined;
/* functional template */
@ -56733,7 +56749,7 @@ __vue_render__$i._withStripped = true;
/* style */
const __vue_inject_styles__$i = undefined;
/* scoped */
const __vue_scope_id__$i = "data-v-55dc42f8";
const __vue_scope_id__$i = "data-v-78c04606";
/* module identifier */
const __vue_module_identifier__$i = undefined;
/* functional template */
@ -56953,7 +56969,7 @@ __vue_render__$h._withStripped = true;
/* style */
const __vue_inject_styles__$h = undefined;
/* scoped */
const __vue_scope_id__$h = "data-v-981c89f2";
const __vue_scope_id__$h = "data-v-55b29dbc";
/* module identifier */
const __vue_module_identifier__$h = undefined;
/* functional template */
@ -57185,7 +57201,7 @@ __vue_render__$g._withStripped = true;
/* style */
const __vue_inject_styles__$g = undefined;
/* scoped */
const __vue_scope_id__$g = "data-v-66320dfa";
const __vue_scope_id__$g = "data-v-9e3c96d6";
/* module identifier */
const __vue_module_identifier__$g = undefined;
/* functional template */
@ -57443,7 +57459,7 @@ __vue_render__$f._withStripped = true;
/* style */
const __vue_inject_styles__$f = undefined;
/* scoped */
const __vue_scope_id__$f = "data-v-39d4d402";
const __vue_scope_id__$f = "data-v-0d388e07";
/* module identifier */
const __vue_module_identifier__$f = undefined;
/* functional template */
@ -57664,7 +57680,7 @@ __vue_render__$e._withStripped = true;
/* style */
const __vue_inject_styles__$e = undefined;
/* scoped */
const __vue_scope_id__$e = "data-v-4a9ac670";
const __vue_scope_id__$e = "data-v-ea131be6";
/* module identifier */
const __vue_module_identifier__$e = undefined;
/* functional template */
@ -57885,7 +57901,7 @@ __vue_render__$d._withStripped = true;
/* style */
const __vue_inject_styles__$d = undefined;
/* scoped */
const __vue_scope_id__$d = "data-v-50e84429";
const __vue_scope_id__$d = "data-v-012c196e";
/* module identifier */
const __vue_module_identifier__$d = undefined;
/* functional template */
@ -58104,7 +58120,7 @@ __vue_render__$c._withStripped = true;
/* style */
const __vue_inject_styles__$c = undefined;
/* scoped */
const __vue_scope_id__$c = "data-v-26c2b954";
const __vue_scope_id__$c = "data-v-848fa49e";
/* module identifier */
const __vue_module_identifier__$c = undefined;
/* functional template */
@ -58327,7 +58343,7 @@ __vue_render__$b._withStripped = true;
/* style */
const __vue_inject_styles__$b = undefined;
/* scoped */
const __vue_scope_id__$b = "data-v-41d0d0e4";
const __vue_scope_id__$b = "data-v-40165113";
/* module identifier */
const __vue_module_identifier__$b = undefined;
/* functional template */
@ -58550,7 +58566,7 @@ __vue_render__$a._withStripped = true;
/* style */
const __vue_inject_styles__$a = undefined;
/* scoped */
const __vue_scope_id__$a = "data-v-71ef684f";
const __vue_scope_id__$a = "data-v-46f2f6ac";
/* module identifier */
const __vue_module_identifier__$a = undefined;
/* functional template */
@ -58809,7 +58825,7 @@ __vue_render__$9._withStripped = true;
/* style */
const __vue_inject_styles__$9 = undefined;
/* scoped */
const __vue_scope_id__$9 = "data-v-04ce6ffe";
const __vue_scope_id__$9 = "data-v-01caee83";
/* module identifier */
const __vue_module_identifier__$9 = undefined;
/* functional template */
@ -59026,7 +59042,7 @@ __vue_render__$8._withStripped = true;
/* style */
const __vue_inject_styles__$8 = undefined;
/* scoped */
const __vue_scope_id__$8 = "data-v-e0a9ee6a";
const __vue_scope_id__$8 = "data-v-6ab7ccb4";
/* module identifier */
const __vue_module_identifier__$8 = undefined;
/* functional template */
@ -59243,7 +59259,7 @@ __vue_render__$7._withStripped = true;
/* style */
const __vue_inject_styles__$7 = undefined;
/* scoped */
const __vue_scope_id__$7 = "data-v-52c9c268";
const __vue_scope_id__$7 = "data-v-6f64aba6";
/* module identifier */
const __vue_module_identifier__$7 = undefined;
/* functional template */
@ -59459,7 +59475,7 @@ __vue_render__$6._withStripped = true;
/* style */
const __vue_inject_styles__$6 = undefined;
/* scoped */
const __vue_scope_id__$6 = "data-v-5f6e490d";
const __vue_scope_id__$6 = "data-v-60db5a12";
/* module identifier */
const __vue_module_identifier__$6 = undefined;
/* functional template */
@ -59681,7 +59697,7 @@ __vue_render__$5._withStripped = true;
/* style */
const __vue_inject_styles__$5 = undefined;
/* scoped */
const __vue_scope_id__$5 = "data-v-68a2506c";
const __vue_scope_id__$5 = "data-v-bb0b6ff2";
/* module identifier */
const __vue_module_identifier__$5 = undefined;
/* functional template */
@ -59909,7 +59925,7 @@ __vue_render__$4._withStripped = true;
/* style */
const __vue_inject_styles__$4 = undefined;
/* scoped */
const __vue_scope_id__$4 = "data-v-189a191b";
const __vue_scope_id__$4 = "data-v-0c505260";
/* module identifier */
const __vue_module_identifier__$4 = undefined;
/* functional template */
@ -60141,7 +60157,7 @@ __vue_render__$3._withStripped = true;
/* style */
const __vue_inject_styles__$3 = undefined;
/* scoped */
const __vue_scope_id__$3 = "data-v-57c25178";
const __vue_scope_id__$3 = "data-v-6cc98c53";
/* module identifier */
const __vue_module_identifier__$3 = undefined;
/* functional template */
@ -60373,7 +60389,7 @@ __vue_render__$2._withStripped = true;
/* style */
const __vue_inject_styles__$2 = undefined;
/* scoped */
const __vue_scope_id__$2 = "data-v-3346546a";
const __vue_scope_id__$2 = "data-v-44854066";
/* module identifier */
const __vue_module_identifier__$2 = undefined;
/* functional template */
@ -60607,7 +60623,7 @@ __vue_render__$1._withStripped = true;
/* style */
const __vue_inject_styles__$1 = undefined;
/* scoped */
const __vue_scope_id__$1 = "data-v-2bd1868f";
const __vue_scope_id__$1 = "data-v-12fa1bac";
/* module identifier */
const __vue_module_identifier__$1 = undefined;
/* functional template */
@ -60845,7 +60861,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-284855f8";
const __vue_scope_id__ = "data-v-398dd67d";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1,25 +1,10 @@
/*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=sixth.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=Greentheme1.vue.map */
.title-text[data-v-14dffda4] {
.title-text[data-v-616d10ee] {
background-color: var(--background-color) !important;
}
.title-left[data-v-14dffda4] {
.title-left[data-v-616d10ee] {
border-color: var(--background-color) !important;
color: var(--background-color) !important;
}
@ -30,61 +15,88 @@
/*# sourceMappingURL=thirteenth.vue.map */
/*# sourceMappingURL=semicircle.vue.map */
/*# sourceMappingURL=rectangle.vue.map */
/*# sourceMappingURL=twelfth.vue.map */
/*# sourceMappingURL=semicircle.vue.map */
/*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=Yellowtheme4.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=Yellowtheme5.vue.map */
/*# sourceMappingURL=hexagon.vue.map */
/*# sourceMappingURL=Yellowtheme6.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=fifteen.vue.map */
/*# sourceMappingURL=twelfth.vue.map */
/*# sourceMappingURL=hexagon.vue.map */
/*# sourceMappingURL=Greentheme1.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */
/*# sourceMappingURL=Greentheme6.vue.map */
/*# sourceMappingURL=Knowledge.vue.map */
/*# sourceMappingURL=fourteen.vue.map */
/*# sourceMappingURL=nineteen.vue.map */
/*# sourceMappingURL=Redtheme1.vue.map */
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=seventeen.vue.map */
/*# sourceMappingURL=nineteen.vue.map */
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=triangle.vue.map */
/*# sourceMappingURL=Knowledge.vue.map */
/*# sourceMappingURL=fourteen.vue.map */
/*# sourceMappingURL=Greentheme6.vue.map */
/*# sourceMappingURL=Redtheme1.vue.map */
/*# sourceMappingURL=Thirtythree.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=Redtheme3.vue.map */
/*# sourceMappingURL=Redtheme2.vue.map */
/*# sourceMappingURL=Thirtyseven.vue.map */
/*# sourceMappingURL=Redtheme4.vue.map */
@ -93,69 +105,60 @@
/*# sourceMappingURL=Thirtytwo.vue.map */
/*# sourceMappingURL=Redtheme3.vue.map */
/*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=Thirtysix.vue.map */
/*# sourceMappingURL=Thirtyfive.vue.map */
/*# sourceMappingURL=Thirtyone.vue.map */
/*# sourceMappingURL=Thirtyeight.vue.map */
/*# sourceMappingURL=Redtheme2.vue.map */
/*# sourceMappingURL=BuleRectangleTwo.vue.map */
/*# sourceMappingURL=Thirtyfour.vue.map */
/*# sourceMappingURL=titleLight.vue.map */
/*# sourceMappingURL=BuleRectangle.vue.map */
/*# sourceMappingURL=titleCrane.vue.map */
.title-bgimg[data-v-16943e38] {
background-image: url(../style/title-text-bgimg.png);
}
/*# sourceMappingURL=Sevenpageone.vue.map */
/*# sourceMappingURL=Forty.vue.map */
/*# sourceMappingURL=Thirtynine.vue.map */
/*# sourceMappingURL=titleTearcher.vue.map */
/*# sourceMappingURL=Thirtyfive.vue.map */
/*# sourceMappingURL=Thirtysix.vue.map */
/*# sourceMappingURL=Thirtyeight.vue.map */
/*# sourceMappingURL=BuleRectangle.vue.map */
/*# sourceMappingURL=Thirtyfour.vue.map */
/*# sourceMappingURL=titleQuestion.vue.map */
/*# sourceMappingURL=titleLogging.vue.map */
.title-bgimg[data-v-025e9706] {
background-image: url(../style/title-text-bgimg.png);
}
/*# sourceMappingURL=Sevenpageone.vue.map */
/*# sourceMappingURL=titleCrane.vue.map */
/*# sourceMappingURL=titleTearcher.vue.map */
/*# sourceMappingURL=Sevenpagethree.vue.map */
/*# sourceMappingURL=Sevenpagetwo.vue.map */
/*# sourceMappingURL=BuleRectangleTwo.vue.map */
/*# sourceMappingURL=titleLight.vue.map */
/*# sourceMappingURL=titleText.vue.map */
/*# sourceMappingURL=Thirtyseven.vue.map */
/*# sourceMappingURL=Sevenpagefive.vue.map */
/*# sourceMappingURL=Fortyone.vue.map */
@ -164,18 +167,7 @@
/*# sourceMappingURL=Sevenpagefour.vue.map */
/*# sourceMappingURL=Sevenpagefive.vue.map */
/*# sourceMappingURL=Sevenpagetwo.vue.map */
.xml-text-h5[data-v-ab7c5c76] {
}
.xml-text-pc[data-v-ab7c5c76] {
}
.xml-text-h5[data-v-ab7c5c76] {
}
/*# sourceMappingURL=Forty.vue.map */
.xml-text-h5 .inline-audio-wrap,
.xml-text-h5 .inline-link-wrap {
align-items: center;
@ -247,6 +239,14 @@
/*# sourceMappingURL=XmlText.vue.map */
.xml-text-h5[data-v-4666e3b2] {
}
.xml-text-pc[data-v-4666e3b2] {
}
.xml-text-h5[data-v-4666e3b2] {
}
/*# sourceMappingURL=XmlTextDialog.vue.map */

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
import crypto from 'crypto';
@ -9364,7 +9364,7 @@ __vue_render__$W._withStripped = true;
/* style */
const __vue_inject_styles__$V = undefined;
/* scoped */
const __vue_scope_id__$V = "data-v-6f58d350";
const __vue_scope_id__$V = "data-v-7aa6099d";
/* module identifier */
const __vue_module_identifier__$V = undefined;
/* functional template */
@ -48782,6 +48782,13 @@ var script$S = {
blockId: this.blockId
};
},
isImportContent() {
let htmlStr = this.pBlockData?.html || '';
return this.pBlockData?.inputBy?.includes('import--') || htmlStr.includes('<section class="docx">') && htmlStr.includes('</section>');
},
isPureTextComponent() {
return this.currentRule.componentsName === 'xml-single-text-group';
},
userType() {
return this.getProviderUserType();
},
@ -50209,11 +50216,20 @@ var __vue_render__$S = function () {
[
_vm.mode === "editor"
? _vm._t("editor", null, { feedback: _vm.feedback })
: _c("div", {
: _c(
"div",
{
staticClass: "richtext-reset-wrapper--view",
class: [_vm.isPureTextComponent && "pure-text-component"],
attrs: { id: _vm.markRootId },
},
[
_c("section", {
class: _vm.isImportContent && "docx",
domProps: { innerHTML: _vm._s(_vm.richContent) },
}),
]
),
_vm._v(" "),
_vm._t("mater-lib-dialog"),
_vm._v(" "),
@ -51042,7 +51058,7 @@ __vue_render__$S._withStripped = true;
/* style */
const __vue_inject_styles__$S = undefined;
/* scoped */
const __vue_scope_id__$S = "data-v-ab7c5c76";
const __vue_scope_id__$S = "data-v-4666e3b2";
/* module identifier */
const __vue_module_identifier__$S = undefined;
/* functional template */
@ -51393,7 +51409,7 @@ __vue_render__$R._withStripped = true;
/* style */
const __vue_inject_styles__$R = undefined;
/* scoped */
const __vue_scope_id__$R = "data-v-14dffda4";
const __vue_scope_id__$R = "data-v-616d10ee";
/* module identifier */
const __vue_module_identifier__$R = undefined;
/* functional template */
@ -51615,7 +51631,7 @@ __vue_render__$Q._withStripped = true;
/* style */
const __vue_inject_styles__$Q = undefined;
/* scoped */
const __vue_scope_id__$Q = "data-v-236ee035";
const __vue_scope_id__$Q = "data-v-0bbb4f3a";
/* module identifier */
const __vue_module_identifier__$Q = undefined;
/* functional template */
@ -51885,7 +51901,7 @@ __vue_render__$P._withStripped = true;
/* style */
const __vue_inject_styles__$P = undefined;
/* scoped */
const __vue_scope_id__$P = "data-v-287a88b8";
const __vue_scope_id__$P = "data-v-2c084d29";
/* module identifier */
const __vue_module_identifier__$P = undefined;
/* functional template */
@ -52106,7 +52122,7 @@ __vue_render__$O._withStripped = true;
/* style */
const __vue_inject_styles__$O = undefined;
/* scoped */
const __vue_scope_id__$O = "data-v-a09b1208";
const __vue_scope_id__$O = "data-v-3af6d3d2";
/* module identifier */
const __vue_module_identifier__$O = undefined;
/* functional template */
@ -52327,7 +52343,7 @@ __vue_render__$N._withStripped = true;
/* style */
const __vue_inject_styles__$N = undefined;
/* scoped */
const __vue_scope_id__$N = "data-v-530cf0c3";
const __vue_scope_id__$N = "data-v-fbf24244";
/* module identifier */
const __vue_module_identifier__$N = undefined;
/* functional template */
@ -52586,7 +52602,7 @@ __vue_render__$M._withStripped = true;
/* style */
const __vue_inject_styles__$M = undefined;
/* scoped */
const __vue_scope_id__$M = "data-v-365aa88d";
const __vue_scope_id__$M = "data-v-462bc6a8";
/* module identifier */
const __vue_module_identifier__$M = undefined;
/* functional template */
@ -52808,7 +52824,7 @@ __vue_render__$L._withStripped = true;
/* style */
const __vue_inject_styles__$L = undefined;
/* scoped */
const __vue_scope_id__$L = "data-v-2ccaa237";
const __vue_scope_id__$L = "data-v-7487515c";
/* module identifier */
const __vue_module_identifier__$L = undefined;
/* functional template */
@ -53028,7 +53044,7 @@ __vue_render__$K._withStripped = true;
/* style */
const __vue_inject_styles__$K = undefined;
/* scoped */
const __vue_scope_id__$K = "data-v-77a57b9d";
const __vue_scope_id__$K = "data-v-59bc5a3c";
/* module identifier */
const __vue_module_identifier__$K = undefined;
/* functional template */
@ -53252,7 +53268,7 @@ __vue_render__$J._withStripped = true;
/* style */
const __vue_inject_styles__$J = undefined;
/* scoped */
const __vue_scope_id__$J = "data-v-52282817";
const __vue_scope_id__$J = "data-v-df779e1c";
/* module identifier */
const __vue_module_identifier__$J = undefined;
/* functional template */
@ -53476,7 +53492,7 @@ __vue_render__$I._withStripped = true;
/* style */
const __vue_inject_styles__$I = undefined;
/* scoped */
const __vue_scope_id__$I = "data-v-01df3a41";
const __vue_scope_id__$I = "data-v-15d1c71c";
/* module identifier */
const __vue_module_identifier__$I = undefined;
/* functional template */
@ -53723,7 +53739,7 @@ __vue_render__$H._withStripped = true;
/* style */
const __vue_inject_styles__$H = undefined;
/* scoped */
const __vue_scope_id__$H = "data-v-ecf0144a";
const __vue_scope_id__$H = "data-v-6a63b0c0";
/* module identifier */
const __vue_module_identifier__$H = undefined;
/* functional template */
@ -53974,7 +53990,7 @@ __vue_render__$G._withStripped = true;
/* style */
const __vue_inject_styles__$G = undefined;
/* scoped */
const __vue_scope_id__$G = "data-v-b9e73b40";
const __vue_scope_id__$G = "data-v-1966f0fb";
/* module identifier */
const __vue_module_identifier__$G = undefined;
/* functional template */
@ -54244,7 +54260,7 @@ __vue_render__$F._withStripped = true;
/* style */
const __vue_inject_styles__$F = undefined;
/* scoped */
const __vue_scope_id__$F = "data-v-3c3dd07c";
const __vue_scope_id__$F = "data-v-721237c7";
/* module identifier */
const __vue_module_identifier__$F = undefined;
/* functional template */
@ -54501,7 +54517,7 @@ __vue_render__$E._withStripped = true;
/* style */
const __vue_inject_styles__$E = undefined;
/* scoped */
const __vue_scope_id__$E = "data-v-5bb43fc2";
const __vue_scope_id__$E = "data-v-3706def2";
/* module identifier */
const __vue_module_identifier__$E = undefined;
/* functional template */
@ -54768,7 +54784,7 @@ __vue_render__$D._withStripped = true;
/* style */
const __vue_inject_styles__$D = undefined;
/* scoped */
const __vue_scope_id__$D = "data-v-e0f4b3ec";
const __vue_scope_id__$D = "data-v-5442cbe5";
/* module identifier */
const __vue_module_identifier__$D = undefined;
/* functional template */
@ -54990,7 +55006,7 @@ __vue_render__$C._withStripped = true;
/* style */
const __vue_inject_styles__$C = undefined;
/* scoped */
const __vue_scope_id__$C = "data-v-2428ae66";
const __vue_scope_id__$C = "data-v-478188c1";
/* module identifier */
const __vue_module_identifier__$C = undefined;
/* functional template */
@ -55214,7 +55230,7 @@ __vue_render__$B._withStripped = true;
/* style */
const __vue_inject_styles__$B = undefined;
/* scoped */
const __vue_scope_id__$B = "data-v-4964d0d9";
const __vue_scope_id__$B = "data-v-5fcb6934";
/* module identifier */
const __vue_module_identifier__$B = undefined;
/* functional template */
@ -55447,7 +55463,7 @@ __vue_render__$A._withStripped = true;
/* style */
const __vue_inject_styles__$A = undefined;
/* scoped */
const __vue_scope_id__$A = "data-v-6fcbabaa";
const __vue_scope_id__$A = "data-v-11ebcaf6";
/* module identifier */
const __vue_module_identifier__$A = undefined;
/* functional template */
@ -55666,7 +55682,7 @@ __vue_render__$z._withStripped = true;
/* style */
const __vue_inject_styles__$z = undefined;
/* scoped */
const __vue_scope_id__$z = "data-v-f4944fb0";
const __vue_scope_id__$z = "data-v-1ff758ed";
/* module identifier */
const __vue_module_identifier__$z = undefined;
/* functional template */
@ -55887,7 +55903,7 @@ __vue_render__$y._withStripped = true;
/* style */
const __vue_inject_styles__$y = undefined;
/* scoped */
const __vue_scope_id__$y = "data-v-0a2fb09a";
const __vue_scope_id__$y = "data-v-4ccfd1c2";
/* module identifier */
const __vue_module_identifier__$y = undefined;
/* functional template */
@ -56106,7 +56122,7 @@ __vue_render__$x._withStripped = true;
/* style */
const __vue_inject_styles__$x = undefined;
/* scoped */
const __vue_scope_id__$x = "data-v-abad1a9e";
const __vue_scope_id__$x = "data-v-70644668";
/* module identifier */
const __vue_module_identifier__$x = undefined;
/* functional template */
@ -56359,7 +56375,7 @@ __vue_render__$w._withStripped = true;
/* style */
const __vue_inject_styles__$w = undefined;
/* scoped */
const __vue_scope_id__$w = "data-v-7e8d373a";
const __vue_scope_id__$w = "data-v-25cdd27e";
/* module identifier */
const __vue_module_identifier__$w = undefined;
/* functional template */
@ -56581,7 +56597,7 @@ __vue_render__$v._withStripped = true;
/* style */
const __vue_inject_styles__$v = undefined;
/* scoped */
const __vue_scope_id__$v = "data-v-dd1a399e";
const __vue_scope_id__$v = "data-v-7e1af04c";
/* module identifier */
const __vue_module_identifier__$v = undefined;
/* functional template */
@ -56841,7 +56857,7 @@ __vue_render__$u._withStripped = true;
/* style */
const __vue_inject_styles__$u = undefined;
/* scoped */
const __vue_scope_id__$u = "data-v-5e734877";
const __vue_scope_id__$u = "data-v-548bec52";
/* module identifier */
const __vue_module_identifier__$u = undefined;
/* functional template */
@ -57066,7 +57082,7 @@ __vue_render__$t._withStripped = true;
/* style */
const __vue_inject_styles__$t = undefined;
/* scoped */
const __vue_scope_id__$t = "data-v-48665bd2";
const __vue_scope_id__$t = "data-v-ae2ed048";
/* module identifier */
const __vue_module_identifier__$t = undefined;
/* functional template */
@ -57287,7 +57303,7 @@ __vue_render__$s._withStripped = true;
/* style */
const __vue_inject_styles__$s = undefined;
/* scoped */
const __vue_scope_id__$s = "data-v-7b621006";
const __vue_scope_id__$s = "data-v-7cd7413e";
/* module identifier */
const __vue_module_identifier__$s = undefined;
/* functional template */
@ -57506,7 +57522,7 @@ __vue_render__$r._withStripped = true;
/* style */
const __vue_inject_styles__$r = undefined;
/* scoped */
const __vue_scope_id__$r = "data-v-fd63433c";
const __vue_scope_id__$r = "data-v-5af78a7d";
/* module identifier */
const __vue_module_identifier__$r = undefined;
/* functional template */
@ -57723,7 +57739,7 @@ __vue_render__$q._withStripped = true;
/* style */
const __vue_inject_styles__$q = undefined;
/* scoped */
const __vue_scope_id__$q = "data-v-7cb64bdc";
const __vue_scope_id__$q = "data-v-5abd9437";
/* module identifier */
const __vue_module_identifier__$q = undefined;
/* functional template */
@ -57981,7 +57997,7 @@ __vue_render__$p._withStripped = true;
/* style */
const __vue_inject_styles__$p = undefined;
/* scoped */
const __vue_scope_id__$p = "data-v-5372169c";
const __vue_scope_id__$p = "data-v-4031660d";
/* module identifier */
const __vue_module_identifier__$p = undefined;
/* functional template */
@ -58203,7 +58219,7 @@ __vue_render__$o._withStripped = true;
/* style */
const __vue_inject_styles__$o = undefined;
/* scoped */
const __vue_scope_id__$o = "data-v-2e411e2f";
const __vue_scope_id__$o = "data-v-eb3fc7ec";
/* module identifier */
const __vue_module_identifier__$o = undefined;
/* functional template */
@ -58424,7 +58440,7 @@ __vue_render__$n._withStripped = true;
/* style */
const __vue_inject_styles__$n = undefined;
/* scoped */
const __vue_scope_id__$n = "data-v-dda94bf6";
const __vue_scope_id__$n = "data-v-f815e140";
/* module identifier */
const __vue_module_identifier__$n = undefined;
/* functional template */
@ -58645,7 +58661,7 @@ __vue_render__$m._withStripped = true;
/* style */
const __vue_inject_styles__$m = undefined;
/* scoped */
const __vue_scope_id__$m = "data-v-6536eac2";
const __vue_scope_id__$m = "data-v-7fa3800c";
/* module identifier */
const __vue_module_identifier__$m = undefined;
/* functional template */
@ -58870,7 +58886,7 @@ __vue_render__$l._withStripped = true;
/* style */
const __vue_inject_styles__$l = undefined;
/* scoped */
const __vue_scope_id__$l = "data-v-16fa0d25";
const __vue_scope_id__$l = "data-v-0fd18780";
/* module identifier */
const __vue_module_identifier__$l = undefined;
/* functional template */
@ -59091,7 +59107,7 @@ __vue_render__$k._withStripped = true;
/* style */
const __vue_inject_styles__$k = undefined;
/* scoped */
const __vue_scope_id__$k = "data-v-6a0923f9";
const __vue_scope_id__$k = "data-v-2ddea684";
/* module identifier */
const __vue_module_identifier__$k = undefined;
/* functional template */
@ -59357,7 +59373,7 @@ __vue_render__$j._withStripped = true;
/* style */
const __vue_inject_styles__$j = undefined;
/* scoped */
const __vue_scope_id__$j = "data-v-e71cd272";
const __vue_scope_id__$j = "data-v-6d51a022";
/* module identifier */
const __vue_module_identifier__$j = undefined;
/* functional template */
@ -59582,7 +59598,7 @@ __vue_render__$i._withStripped = true;
/* style */
const __vue_inject_styles__$i = undefined;
/* scoped */
const __vue_scope_id__$i = "data-v-5c76cc74";
const __vue_scope_id__$i = "data-v-276ebb8b";
/* module identifier */
const __vue_module_identifier__$i = undefined;
/* functional template */
@ -59807,7 +59823,7 @@ __vue_render__$h._withStripped = true;
/* style */
const __vue_inject_styles__$h = undefined;
/* scoped */
const __vue_scope_id__$h = "data-v-54541772";
const __vue_scope_id__$h = "data-v-26ceee4c";
/* module identifier */
const __vue_module_identifier__$h = undefined;
/* functional template */
@ -60028,7 +60044,7 @@ __vue_render__$g._withStripped = true;
/* style */
const __vue_inject_styles__$g = undefined;
/* scoped */
const __vue_scope_id__$g = "data-v-ee6a3c48";
const __vue_scope_id__$g = "data-v-168fe6f7";
/* module identifier */
const __vue_module_identifier__$g = undefined;
/* functional template */
@ -60298,7 +60314,7 @@ __vue_render__$f._withStripped = true;
/* style */
const __vue_inject_styles__$f = undefined;
/* scoped */
const __vue_scope_id__$f = "data-v-e4f9bb02";
const __vue_scope_id__$f = "data-v-54cd1e1a";
/* module identifier */
const __vue_module_identifier__$f = undefined;
/* functional template */
@ -60621,7 +60637,7 @@ __vue_render__$e._withStripped = true;
/* style */
const __vue_inject_styles__$e = undefined;
/* scoped */
const __vue_scope_id__$e = "data-v-49223b7c";
const __vue_scope_id__$e = "data-v-850afbf2";
/* module identifier */
const __vue_module_identifier__$e = undefined;
/* functional template */
@ -60899,7 +60915,7 @@ __vue_render__$d._withStripped = true;
/* style */
const __vue_inject_styles__$d = undefined;
/* scoped */
const __vue_scope_id__$d = "data-v-31126d09";
const __vue_scope_id__$d = "data-v-09d1a44e";
/* module identifier */
const __vue_module_identifier__$d = undefined;
/* functional template */
@ -61140,7 +61156,7 @@ __vue_render__$c._withStripped = true;
/* style */
const __vue_inject_styles__$c = undefined;
/* scoped */
const __vue_scope_id__$c = "data-v-109de780";
const __vue_scope_id__$c = "data-v-9c9df7f6";
/* module identifier */
const __vue_module_identifier__$c = undefined;
/* functional template */
@ -61389,7 +61405,7 @@ __vue_render__$b._withStripped = true;
/* style */
const __vue_inject_styles__$b = undefined;
/* scoped */
const __vue_scope_id__$b = "data-v-2da71084";
const __vue_scope_id__$b = "data-v-0620a4c2";
/* module identifier */
const __vue_module_identifier__$b = undefined;
/* functional template */
@ -61638,7 +61654,7 @@ __vue_render__$a._withStripped = true;
/* style */
const __vue_inject_styles__$a = undefined;
/* scoped */
const __vue_scope_id__$a = "data-v-e8bf5730";
const __vue_scope_id__$a = "data-v-0237876d";
/* module identifier */
const __vue_module_identifier__$a = undefined;
/* functional template */
@ -61887,7 +61903,7 @@ __vue_render__$9._withStripped = true;
/* style */
const __vue_inject_styles__$9 = undefined;
/* scoped */
const __vue_scope_id__$9 = "data-v-18c1370c";
const __vue_scope_id__$9 = "data-v-751064a7";
/* module identifier */
const __vue_module_identifier__$9 = undefined;
/* functional template */
@ -62136,7 +62152,7 @@ __vue_render__$8._withStripped = true;
/* style */
const __vue_inject_styles__$8 = undefined;
/* scoped */
const __vue_scope_id__$8 = "data-v-5f583260";
const __vue_scope_id__$8 = "data-v-2ea0cf7b";
/* module identifier */
const __vue_module_identifier__$8 = undefined;
/* functional template */
@ -62385,7 +62401,7 @@ __vue_render__$7._withStripped = true;
/* style */
const __vue_inject_styles__$7 = undefined;
/* scoped */
const __vue_scope_id__$7 = "data-v-2b850a5e";
const __vue_scope_id__$7 = "data-v-bbc7853a";
/* module identifier */
const __vue_module_identifier__$7 = undefined;
/* functional template */
@ -62655,7 +62671,7 @@ __vue_render__$6._withStripped = true;
/* style */
const __vue_inject_styles__$6 = undefined;
/* scoped */
const __vue_scope_id__$6 = "data-v-16943e38";
const __vue_scope_id__$6 = "data-v-025e9706";
/* module identifier */
const __vue_module_identifier__$6 = undefined;
/* functional template */
@ -62949,7 +62965,7 @@ __vue_render__$5._withStripped = true;
/* style */
const __vue_inject_styles__$5 = undefined;
/* scoped */
const __vue_scope_id__$5 = "data-v-83fc3204";
const __vue_scope_id__$5 = "data-v-03de8819";
/* module identifier */
const __vue_module_identifier__$5 = undefined;
/* functional template */
@ -63252,7 +63268,7 @@ __vue_render__$4._withStripped = true;
/* style */
const __vue_inject_styles__$4 = undefined;
/* scoped */
const __vue_scope_id__$4 = "data-v-49383e20";
const __vue_scope_id__$4 = "data-v-659c9535";
/* module identifier */
const __vue_module_identifier__$4 = undefined;
/* functional template */
@ -63538,7 +63554,7 @@ __vue_render__$3._withStripped = true;
/* style */
const __vue_inject_styles__$3 = undefined;
/* scoped */
const __vue_scope_id__$3 = "data-v-c9cc7c0e";
const __vue_scope_id__$3 = "data-v-1b087604";
/* module identifier */
const __vue_module_identifier__$3 = undefined;
/* functional template */
@ -63854,7 +63870,7 @@ __vue_render__$2._withStripped = true;
/* style */
const __vue_inject_styles__$2 = undefined;
/* scoped */
const __vue_scope_id__$2 = "data-v-ed7e1f3a";
const __vue_scope_id__$2 = "data-v-532be828";
/* module identifier */
const __vue_module_identifier__$2 = undefined;
/* functional template */
@ -64109,7 +64125,7 @@ __vue_render__$1._withStripped = true;
/* style */
const __vue_inject_styles__$1 = undefined;
/* scoped */
const __vue_scope_id__$1 = "data-v-68d58234";
const __vue_scope_id__$1 = "data-v-21d308f9";
/* module identifier */
const __vue_module_identifier__$1 = undefined;
/* functional template */
@ -64360,7 +64376,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-c2c03408";
const __vue_scope_id__ = "data-v-38ea8301";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1 +1 @@
.title-text[data-v-14dffda4]{background-color:var(--background-color)!important}.title-left[data-v-14dffda4]{border-color:var(--background-color)!important;color:var(--background-color)!important}.title-bgimg[data-v-16943e38]{background-image:url(../style/title-text-bgimg.png)}.xml-text-h5 .inline-audio-wrap,.xml-text-h5 .inline-link-wrap{align-items:center}.xml-text-h5 .inline-audio-wrap span,.xml-text-h5 .inline-link-wrap span{display:inline-block}.xml-text-h5 .inline-audio-box{width:20px;height:20px;box-sizing:border-box;position:relative;margin-left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol{width:20px;height:20px;box-sizing:border-box;overflow:hidden;transform:rotate(135deg);position:relative}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle{border:3px solid #418eed;border-radius:50%;position:absolute}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.first{width:3px;height:3px;background:#0076bc;top:14px;left:14px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.second{width:15px;height:15px;top:10px;left:10px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.third{width:24px;height:24px;top:6px;left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .second{animation:fadeInOut 1s infinite .2s}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .third{animation:fadeInOut 1s infinite .4s}@keyframes fadeInOut{0%{opacity:0}100%{opacity:1}}.virtual-input .el-textarea__inner{min-height:0!important;height:0!important;padding:0!important;margin:0!important;border:none!important}
.title-text[data-v-616d10ee]{background-color:var(--background-color)!important}.title-left[data-v-616d10ee]{border-color:var(--background-color)!important;color:var(--background-color)!important}.title-bgimg[data-v-025e9706]{background-image:url(../style/title-text-bgimg.png)}.xml-text-h5 .inline-audio-wrap,.xml-text-h5 .inline-link-wrap{align-items:center}.xml-text-h5 .inline-audio-wrap span,.xml-text-h5 .inline-link-wrap span{display:inline-block}.xml-text-h5 .inline-audio-box{width:20px;height:20px;box-sizing:border-box;position:relative;margin-left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol{width:20px;height:20px;box-sizing:border-box;overflow:hidden;transform:rotate(135deg);position:relative}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle{border:3px solid #418eed;border-radius:50%;position:absolute}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.first{width:3px;height:3px;background:#0076bc;top:14px;left:14px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.second{width:15px;height:15px;top:10px;left:10px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.third{width:24px;height:24px;top:6px;left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .second{animation:fadeInOut 1s infinite .2s}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .third{animation:fadeInOut 1s infinite .4s}@keyframes fadeInOut{0%{opacity:0}100%{opacity:1}}.virtual-input .el-textarea__inner{min-height:0!important;height:0!important;padding:0!important;margin:0!important;border:none!important}

View File

@ -1,12 +1,4 @@
.xml-video-container-h5[data-v-6fcfaafb] {
}
.xml-video-container-pc[data-v-6fcfaafb] {
}
.xml-video-container-pad[data-v-6fcfaafb] {
}
.xml-video-container-pdf[data-v-4645f3e6] {
.xml-video-container-pdf[data-v-3c5e97c1] {
position: relative;
display: flex;
justify-content: center;
@ -16,13 +8,13 @@
padding-bottom: 56.25%;
background: #000;
}
.xml-video-container-pdf .cover[data-v-4645f3e6] {
.xml-video-container-pdf .cover[data-v-3c5e97c1] {
position: absolute;
top: 0;
max-width: 100%;
max-height: 100%;
}
.xml-video-container-pdf .play[data-v-4645f3e6] {
.xml-video-container-pdf .play[data-v-3c5e97c1] {
position: absolute;
top: 45%;
left: 45%;
@ -32,3 +24,10 @@
}
/*# sourceMappingURL=XmlVideoImg.vue.map */
.xml-video-container-h5[data-v-22dec3d4] {
}
.xml-video-container-pc[data-v-22dec3d4] {
}
.xml-video-container-pad[data-v-22dec3d4] {
}

View File

@ -1,6 +1,6 @@
/*
* XmlDigitalTeaching v0.0.1
* Copyright ©Tue Apr 08 2025 18:13:23 GMT+0800 (中国标准时间) smile
* Copyright ©Thu Apr 17 2025 08:53:40 GMT+0800 (中国标准时间) smile
* Released under the ISC License.
*/
//
@ -14776,7 +14776,7 @@ __vue_render__$1._withStripped = true;
/* style */
const __vue_inject_styles__$1 = undefined;
/* scoped */
const __vue_scope_id__$1 = "data-v-6fcfaafb";
const __vue_scope_id__$1 = "data-v-22dec3d4";
/* module identifier */
const __vue_module_identifier__$1 = undefined;
/* functional template */
@ -14987,7 +14987,7 @@ __vue_render__._withStripped = true;
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = "data-v-4645f3e6";
const __vue_scope_id__ = "data-v-3c5e97c1";
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */

View File

@ -1 +1 @@
.xml-video-container-pdf[data-v-4645f3e6]{position:relative;display:flex;justify-content:center;align-items:center;width:100%;height:0;padding-bottom:56.25%;background:#000}.xml-video-container-pdf .cover[data-v-4645f3e6]{position:absolute;top:0;max-width:100%;max-height:100%}.xml-video-container-pdf .play[data-v-4645f3e6]{position:absolute;top:45%;left:45%;width:10%;background:#bebebe;border-radius:50%}
.xml-video-container-pdf[data-v-3c5e97c1]{position:relative;display:flex;justify-content:center;align-items:center;width:100%;height:0;padding-bottom:56.25%;background:#000}.xml-video-container-pdf .cover[data-v-3c5e97c1]{position:absolute;top:0;max-width:100%;max-height:100%}.xml-video-container-pdf .play[data-v-3c5e97c1]{position:absolute;top:45%;left:45%;width:10%;background:#bebebe;border-radius:50%}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB