This commit is contained in:
caoyuchun 2025-05-14 15:08:53 +08:00
parent 8f2a2417f3
commit e8369de786
77 changed files with 12575 additions and 13243 deletions

View File

@ -1,21 +1,22 @@
.catalog-node-label[data-v-94bdc416] {
.xml-show-catalog .el-tree-node__content {
display: flex !important;
}
.catalog-node-label[data-v-179d841f] {
display: flex; display: flex;
align-items: center; align-items: center;
} }
.catalog-node-label img[data-v-94bdc416] { .catalog-node-label img[data-v-179d841f] {
margin-right: 4px; margin-right: 4px;
} }
.xml-show-catalog[data-v-94bdc416] .el-tree-node__content { .xml-show-catalog[data-v-179d841f] .el-tree-node__content {
height: auto; height: auto;
} }
.xml-show-catalog[data-v-94bdc416] .el-tree-node__content .catalog-node-label { .xml-show-catalog[data-v-179d841f] .el-tree-node__content .catalog-node-label {
max-width: calc(100% - 24px); max-width: calc(100% - 24px);
word-break: break-all; word-break: break-all;
white-space: normal; white-space: normal;
} }
/*# sourceMappingURL=XmlCatalog.vue.map */ /*# sourceMappingURL=XmlCatalog.vue.map */
.xml-show-catalog .el-tree-node__content {
display: flex !important;
}

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
// //
@ -307,7 +307,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-94bdc416"; const __vue_scope_id__ = "data-v-179d841f";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

@ -1 +1 @@
.catalog-node-label[data-v-94bdc416]{display:flex;align-items:center}.catalog-node-label img[data-v-94bdc416]{margin-right:4px}.xml-show-catalog[data-v-94bdc416] .el-tree-node__content{height:auto}.xml-show-catalog[data-v-94bdc416] .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} .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}

View File

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

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
// //
@ -412,6 +412,10 @@ var script = {
type: String, type: String,
default: '' default: ''
}, },
bookReaderPath: {
type: String,
default: ''
},
//当前所处组的规则 //当前所处组的规则
currentRule: { currentRule: {
type: Object, type: Object,
@ -475,19 +479,19 @@ var script = {
}, },
goRead(info) { goRead(info) {
console.log('🚀 ~ goRead ~ info:', info); console.log('🚀 ~ goRead ~ info:', info);
if (this.mode === 'preview') { if (this.mode === 'preview' || this.mode == 'reader') {
this.$EventBus.$emit('learningStatistics', { this.$EventBus.$emit('learningStatistics', {
type: 'ebook', type: 'ebook',
info: null, info: info,
data: info data: info
}); });
if (info.source != 'netlink') { if (info.source != 'netlink') {
const baseUrl = info.uploadFileUrl.indexOf('./') !== -1 ? this.resourceBasisPath + info.uploadFileUrl.split('./')[1] : info.uploadFileUrl; const baseUrl = info.uploadFileUrl.indexOf('./') !== -1 ? this.resourceBasisPath + info.uploadFileUrl.split('./')[1] : info.uploadFileUrl;
if (info.uploadFileUrl.indexOf('.epub') > 0) { 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 { } else {
// const baseUrl = this.resourceBasisPath + info.uploadFileUrl.split('./')[1] // 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) { if (this.isReader) {
this.$emit('showFileReader', { this.$emit('showFileReader', {
@ -540,9 +544,9 @@ var script = {
let src = ''; let src = '';
let uploadFileUrl = item.uploadFileUrl.indexOf('./') !== -1 ? this.resourceBasisPath + item.uploadFileUrl.split('./')[1] : item.uploadFileUrl; let uploadFileUrl = item.uploadFileUrl.indexOf('./') !== -1 ? this.resourceBasisPath + item.uploadFileUrl.split('./')[1] : item.uploadFileUrl;
if (item.uploadFileUrl.indexOf('.epub') !== -1) { 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) { } 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 { } else {
src = item.uploadFileUrl; src = item.uploadFileUrl;
} }
@ -860,7 +864,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-0b013fc8"; const __vue_scope_id__ = "data-v-ba4453a8";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

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

File diff suppressed because one or more lines are too long

View File

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

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
import Vue from 'vue'; import Vue from 'vue';
@ -642,6 +642,10 @@ var script$1 = {
type: Array, type: Array,
default: () => [] default: () => []
}, },
imageList: {
type: Array,
default: () => []
},
zIndex: { zIndex: {
type: Number, type: Number,
default: 2000 default: 2000
@ -903,7 +907,7 @@ var script$1 = {
}); });
this.$EventBus.$emit('learningStatistics', { this.$EventBus.$emit('learningStatistics', {
type: 'image', type: 'image',
info: null info: this.imageList[this.current]
}); });
this.$hevueImgPreview({ this.$hevueImgPreview({
multiple: true, multiple: true,
@ -1114,7 +1118,7 @@ __vue_render__$2._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$1 = undefined; const __vue_inject_styles__$1 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$1 = "data-v-0b67ede4"; const __vue_scope_id__$1 = "data-v-52e83b54";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$1 = undefined; const __vue_module_identifier__$1 = undefined;
/* functional template */ /* functional template */
@ -1612,6 +1616,12 @@ var script = {
currentIndex: -1 currentIndex: -1
}; };
}, },
inject: {
getSysEnv: {
from: 'getSysEnv',
default: () => () => {}
}
},
computed: { computed: {
blockPreviewList() { blockPreviewList() {
let images = this.blockData.imageList || [], let images = this.blockData.imageList || [],
@ -1656,6 +1666,9 @@ var script = {
} }
}); });
return !has; return !has;
},
sysEnv() {
return this.getSysEnv();
} }
}, },
watch: { watch: {
@ -1727,7 +1740,16 @@ var script = {
// window.href = href // window.href = href
if (linkId) { if (linkId) {
// window.open(link, '_blank') // window.open(link, '_blank')
window.open(process.env.VUE_APP_TEXTBOOK_WEB + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_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 { } else {
this.$message.warning('获取资源链接失败,请检查链接地址'); this.$message.warning('获取资源链接失败,请检查链接地址');
} }
@ -1814,6 +1836,7 @@ var __vue_render__ = function () {
contents: _vm.blockPreviewContentList, contents: _vm.blockPreviewContentList,
current: 0, current: 0,
previewSrcList: _vm.blockPreviewList, previewSrcList: _vm.blockPreviewList,
imageList: _vm.blockData.imageList,
clickEffect: _vm.blockData.clickEffect, clickEffect: _vm.blockData.clickEffect,
width: _vm.blockData.width, width: _vm.blockData.width,
}, },
@ -1895,6 +1918,7 @@ var __vue_render__ = function () {
: "", : "",
"preview-text": _vm.blockPreviewTitleList, "preview-text": _vm.blockPreviewTitleList,
previewSrcList: _vm.blockPreviewList, previewSrcList: _vm.blockPreviewList,
imageList: _vm.blockData.imageList,
showTitle: _vm.showTitle, showTitle: _vm.showTitle,
pageType: _vm.pageType, pageType: _vm.pageType,
current: index, current: index,
@ -1965,6 +1989,7 @@ var __vue_render__ = function () {
mode: _vm.mode, mode: _vm.mode,
"preview-text": _vm.blockPreviewTitleList, "preview-text": _vm.blockPreviewTitleList,
previewSrcList: _vm.blockPreviewList, previewSrcList: _vm.blockPreviewList,
imageList: _vm.blockData.imageList,
clickEffect: _vm.blockData.clickEffect, clickEffect: _vm.blockData.clickEffect,
width: _vm.blockData.width, width: _vm.blockData.width,
}, },

View File

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

View File

@ -1,18 +1,9 @@
/*# sourceMappingURL=seventh.vue.map */
/*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=fourth.vue.map */
/*# sourceMappingURL=eighth.vue.map */ /*# sourceMappingURL=eighth.vue.map */
/*# sourceMappingURL=first.vue.map */ /*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=second.vue.map */ /*# sourceMappingURL=second.vue.map */
@ -21,20 +12,21 @@
/*# sourceMappingURL=sixth.vue.map */ /*# sourceMappingURL=sixth.vue.map */
/*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=fourth.vue.map */
/*# sourceMappingURL=third.vue.map */ /*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=seventh.vue.map */
.xml-image-lun-bo .el-carousel__item { .xml-image-lun-bo .el-carousel__item {
text-align: center; text-align: center;
} }
.xml-text-h5[data-v-483bfd20] {
}
.xml-text-pc[data-v-483bfd20] {
}
.xml-text-h5[data-v-483bfd20] {
}
.xml-text-h5 .inline-audio-wrap, .xml-text-h5 .inline-audio-wrap,
.xml-text-h5 .inline-link-wrap { .xml-text-h5 .inline-link-wrap {
align-items: center; align-items: center;
@ -106,6 +98,14 @@
/*# sourceMappingURL=XmlText.vue.map */ /*# sourceMappingURL=XmlText.vue.map */
.xml-text-h5[data-v-4258792c] {
}
.xml-text-pc[data-v-4258792c] {
}
.xml-text-h5[data-v-4258792c] {
}
/*# sourceMappingURL=XmlTextDialog.vue.map */ /*# sourceMappingURL=XmlTextDialog.vue.map */
@ -711,15 +711,15 @@
.el-image__inner[data-v-0b67ede4] { .el-image__inner[data-v-52e83b54] {
width: 100% !important; width: 100% !important;
} }
.xml-image-ping-pu-h5[data-v-0b67ede4] { .xml-image-ping-pu-h5[data-v-52e83b54] {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
.xml-image-hua-lang[data-v-0b67ede4] { .xml-image-hua-lang[data-v-52e83b54] {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
import Vue from 'vue'; import Vue from 'vue';
@ -642,6 +642,10 @@ var script$d = {
type: Array, type: Array,
default: () => [] default: () => []
}, },
imageList: {
type: Array,
default: () => []
},
zIndex: { zIndex: {
type: Number, type: Number,
default: 2000 default: 2000
@ -903,7 +907,7 @@ var script$d = {
}); });
this.$EventBus.$emit('learningStatistics', { this.$EventBus.$emit('learningStatistics', {
type: 'image', type: 'image',
info: null info: this.imageList[this.current]
}); });
this.$hevueImgPreview({ this.$hevueImgPreview({
multiple: true, multiple: true,
@ -1114,7 +1118,7 @@ __vue_render__$e._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$d = undefined; const __vue_inject_styles__$d = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$d = "data-v-0b67ede4"; const __vue_scope_id__$d = "data-v-52e83b54";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$d = undefined; const __vue_module_identifier__$d = undefined;
/* functional template */ /* functional template */
@ -1612,6 +1616,12 @@ var script$c = {
currentIndex: -1 currentIndex: -1
}; };
}, },
inject: {
getSysEnv: {
from: 'getSysEnv',
default: () => () => {}
}
},
computed: { computed: {
blockPreviewList() { blockPreviewList() {
let images = this.blockData.imageList || [], let images = this.blockData.imageList || [],
@ -1656,6 +1666,9 @@ var script$c = {
} }
}); });
return !has; return !has;
},
sysEnv() {
return this.getSysEnv();
} }
}, },
watch: { watch: {
@ -1727,7 +1740,16 @@ var script$c = {
// window.href = href // window.href = href
if (linkId) { if (linkId) {
// window.open(link, '_blank') // window.open(link, '_blank')
window.open(process.env.VUE_APP_TEXTBOOK_WEB + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_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 { } else {
this.$message.warning('获取资源链接失败,请检查链接地址'); this.$message.warning('获取资源链接失败,请检查链接地址');
} }
@ -1814,6 +1836,7 @@ var __vue_render__$c = function () {
contents: _vm.blockPreviewContentList, contents: _vm.blockPreviewContentList,
current: 0, current: 0,
previewSrcList: _vm.blockPreviewList, previewSrcList: _vm.blockPreviewList,
imageList: _vm.blockData.imageList,
clickEffect: _vm.blockData.clickEffect, clickEffect: _vm.blockData.clickEffect,
width: _vm.blockData.width, width: _vm.blockData.width,
}, },
@ -1895,6 +1918,7 @@ var __vue_render__$c = function () {
: "", : "",
"preview-text": _vm.blockPreviewTitleList, "preview-text": _vm.blockPreviewTitleList,
previewSrcList: _vm.blockPreviewList, previewSrcList: _vm.blockPreviewList,
imageList: _vm.blockData.imageList,
showTitle: _vm.showTitle, showTitle: _vm.showTitle,
pageType: _vm.pageType, pageType: _vm.pageType,
current: index, current: index,
@ -1965,6 +1989,7 @@ var __vue_render__$c = function () {
mode: _vm.mode, mode: _vm.mode,
"preview-text": _vm.blockPreviewTitleList, "preview-text": _vm.blockPreviewTitleList,
previewSrcList: _vm.blockPreviewList, previewSrcList: _vm.blockPreviewList,
imageList: _vm.blockData.imageList,
clickEffect: _vm.blockData.clickEffect, clickEffect: _vm.blockData.clickEffect,
width: _vm.blockData.width, width: _vm.blockData.width,
}, },
@ -2467,7 +2492,7 @@ __vue_render__$b._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$b = undefined; const __vue_inject_styles__$b = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$b = "data-v-aeaf5cd4"; const __vue_scope_id__$b = "data-v-9094a8a8";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$b = undefined; const __vue_module_identifier__$b = undefined;
/* functional template */ /* functional template */
@ -11721,7 +11746,7 @@ __vue_render__$a._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$a = undefined; const __vue_inject_styles__$a = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$a = "data-v-0781f4c2"; const __vue_scope_id__$a = "data-v-6f58d350";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$a = undefined; const __vue_module_identifier__$a = undefined;
/* functional template */ /* functional template */
@ -11793,7 +11818,7 @@ class MagicLink extends HTMLElement {
} }
.magic-link { .magic-link {
display: inline; display: inline;
// font-size:16px; font-size:16px;
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
text-align: left; text-align: left;
@ -50669,8 +50694,8 @@ var script$7 = {
from: 'getResourceBasisPath', from: 'getResourceBasisPath',
default: () => () => '' default: () => () => ''
}, },
getSysEvn: { getSysEnv: {
from: 'getSysEvn', from: 'getSysEnv',
default: () => () => {} default: () => () => {}
}, },
getIsShowAi: { getIsShowAi: {
@ -50689,7 +50714,6 @@ var script$7 = {
dataName: this.blockDataName, dataName: this.blockDataName,
data: this.pBlockData, data: this.pBlockData,
graphLinks: this.currentRule.data?.graphLinks || [], graphLinks: this.currentRule.data?.graphLinks || [],
pureTextComponent: this.isPureTextComponent,
dataIndex: this.dataIndex, dataIndex: this.dataIndex,
blockId: this.blockId blockId: this.blockId
}; };
@ -50720,7 +50744,7 @@ var script$7 = {
return this.getKeyboardShow(); return this.getKeyboardShow();
}, },
evn() { evn() {
return this.getSysEvn() || { return this.getSysEnv() || {
tippy: {} tippy: {}
}; };
}, },
@ -50809,7 +50833,7 @@ var script$7 = {
let _this = this; let _this = this;
this.blockData = this.pBlockData; this.blockData = this.pBlockData;
if (!this.blockData.html) { if (!this.blockData.html) {
this.blockData.html = '<span>暂无内容1</span>'; this.blockData.html = '<span>暂无内容</span>';
} }
`#${this.blockId} .richtext-reset-wrapper--view`; `#${this.blockId} .richtext-reset-wrapper--view`;
let mceMagicLinkRegistered = window.customElements?.get('magic-link'); let mceMagicLinkRegistered = window.customElements?.get('magic-link');
@ -50827,18 +50851,37 @@ var script$7 = {
let title = target.attr('alt'); let title = target.attr('alt');
let src = target.attr('src'); let src = target.attr('src');
let notallowgallery = target.attr('notallowgallery'); let notallowgallery = target.attr('notallowgallery');
if (notallowgallery) { let imgType = target.attr('data-img-type');
return; if (!notallowgallery) {
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
} else if (imgType == 3) {
//问Ai
let aiType = target.attr('data-ai-type');
let problem = target.attr('data-problem');
_this.$EventBus.$emit('openAiParsing', {
isOpen: true,
//是否直接打开阅读器的Ai
aiType,
text: problem
});
} }
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
}); });
const getFileUrl = url => {
if (url) {
if (url.indexOf('./') === -1) {
return url;
}
return `${_this.resourceBasisPath}${url.split('./')[1]}`;
}
return '';
};
jquery(containerSelector).on('click', 'magic-link', function (e) { jquery(containerSelector).on('click', 'magic-link', function (e) {
let { let {
plaintext, plaintext,
@ -50861,7 +50904,7 @@ var script$7 = {
multiple: true, multiple: true,
nowImgIndex: 0, nowImgIndex: 0,
imgList: [{ imgList: [{
url: content, url: getFileUrl(content),
title: plaintext title: plaintext
}] }]
}); });
@ -50871,7 +50914,7 @@ var script$7 = {
_this.$EventBus.$emit('handleMagicLinkAudioPlay', { _this.$EventBus.$emit('handleMagicLinkAudioPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -50885,7 +50928,7 @@ var script$7 = {
_this.$EventBus.$emit('handleMagicLinkVideoPlay', { _this.$EventBus.$emit('handleMagicLinkVideoPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -52965,7 +53008,7 @@ __vue_render__$7._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$7 = undefined; const __vue_inject_styles__$7 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$7 = "data-v-483bfd20"; const __vue_scope_id__$7 = "data-v-4258792c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$7 = undefined; const __vue_module_identifier__$7 = undefined;
/* functional template */ /* functional template */
@ -53257,7 +53300,7 @@ __vue_render__$6._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$6 = undefined; const __vue_inject_styles__$6 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$6 = "data-v-bde72a14"; const __vue_scope_id__$6 = "data-v-2aaa640c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$6 = undefined; const __vue_module_identifier__$6 = undefined;
/* functional template */ /* functional template */
@ -53547,7 +53590,7 @@ __vue_render__$5._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$5 = undefined; const __vue_inject_styles__$5 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$5 = "data-v-0ab3c6b0"; const __vue_scope_id__$5 = "data-v-6677213e";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$5 = undefined; const __vue_module_identifier__$5 = undefined;
/* functional template */ /* functional template */
@ -53887,7 +53930,7 @@ __vue_render__$4._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$4 = undefined; const __vue_inject_styles__$4 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$4 = "data-v-3167f251"; const __vue_scope_id__$4 = "data-v-f76eba0a";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$4 = undefined; const __vue_module_identifier__$4 = undefined;
/* functional template */ /* functional template */
@ -54182,7 +54225,7 @@ __vue_render__$3._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$3 = undefined; const __vue_inject_styles__$3 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$3 = "data-v-5466df92"; const __vue_scope_id__$3 = "data-v-7fa56ccd";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$3 = undefined; const __vue_module_identifier__$3 = undefined;
/* functional template */ /* functional template */
@ -54445,7 +54488,7 @@ __vue_render__$2._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$2 = undefined; const __vue_inject_styles__$2 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$2 = "data-v-17f2bcb6"; const __vue_scope_id__$2 = "data-v-78447962";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$2 = undefined; const __vue_module_identifier__$2 = undefined;
/* functional template */ /* functional template */
@ -54750,7 +54793,7 @@ __vue_render__$1._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$1 = undefined; const __vue_inject_styles__$1 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$1 = "data-v-af6901ca"; const __vue_scope_id__$1 = "data-v-782b11c5";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$1 = undefined; const __vue_module_identifier__$1 = undefined;
/* functional template */ /* functional template */
@ -55049,7 +55092,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-5afd3094"; const __vue_scope_id__ = "data-v-7d2599be";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* 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-0b67ede4]{width:100%!important}.xml-image-ping-pu-h5[data-v-0b67ede4]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-0b67ede4]{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-52e83b54]{width:100%!important}.xml-image-ping-pu-h5[data-v-52e83b54]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-52e83b54]{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 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
import Vue from 'vue'; import Vue from 'vue';

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * 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"; 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";
@ -885,6 +885,8 @@ var __vue_render__$1 = function () {
{ staticClass: "xml-music-player-box" }, { staticClass: "xml-music-player-box" },
[ [
_c("xml-audio-play", { _c("xml-audio-play", {
ref: "xmlAudioPlay",
refInFor: true,
attrs: { attrs: {
"targer-link": item.link, "targer-link": item.link,
mode: _vm.mode, mode: _vm.mode,

View File

@ -1,48 +1,69 @@
/*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=eighth.vue.map */
/*# sourceMappingURL=ninth.vue.map */
/*# sourceMappingURL=quadrangle.vue.map */
/*# sourceMappingURL=seventh.vue.map */
/*# sourceMappingURL=tenth.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=first.vue.map */ /*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */ /*# sourceMappingURL=seventh.vue.map */
/*# sourceMappingURL=fourteen.vue.map */ /*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=quadrangle.vue.map */
/*# sourceMappingURL=third.vue.map */ /*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=eleven.vue.map */ /*# sourceMappingURL=ninth.vue.map */
/*# sourceMappingURL=wave.vue.map */ /*# sourceMappingURL=isosceles.vue.map */
/*# sourceMappingURL=fifteen.vue.map */ /*# sourceMappingURL=fifteen.vue.map */
/*# sourceMappingURL=isosceles.vue.map */ /*# sourceMappingURL=eighth.vue.map */
/*# sourceMappingURL=Greentheme5.vue.map */
/*# sourceMappingURL=tenth.vue.map */
/*# sourceMappingURL=twelve.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */
/*# sourceMappingURL=fourteen.vue.map */
/*# sourceMappingURL=thirteen.vue.map */
/*# sourceMappingURL=eleven.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=Redtheme4.vue.map */
/*# sourceMappingURL=Redtheme2.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=wave.vue.map */
/*# sourceMappingURL=Yellowtheme5.vue.map */ /*# sourceMappingURL=Yellowtheme5.vue.map */
@ -51,55 +72,22 @@
/*# sourceMappingURL=Yellowtheme1.vue.map */ /*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=Yellowtheme4.vue.map */ /*# sourceMappingURL=Redtheme3.vue.map */
/*# sourceMappingURL=twelve.vue.map */
/*# sourceMappingURL=Yellowtheme3.vue.map */
/*# sourceMappingURL=Redtheme1.vue.map */ /*# sourceMappingURL=Redtheme1.vue.map */
/*# sourceMappingURL=Redtheme2.vue.map */ /*# sourceMappingURL=Yellowtheme4.vue.map */
/*# sourceMappingURL=Greentheme5.vue.map */
/*# sourceMappingURL=SanQintheme3.vue.map */
/*# sourceMappingURL=SanQintheme1.vue.map */ /*# sourceMappingURL=SanQintheme1.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */ /*# sourceMappingURL=Yellowtheme3.vue.map */
/*# sourceMappingURL=Redtheme3.vue.map */ /*# sourceMappingURL=SanQintheme3.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=Redtheme6.vue.map */
/*# sourceMappingURL=thirteen.vue.map */
/*# sourceMappingURL=Redtheme4.vue.map */
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=Thirtyfive.vue.map */
/*# sourceMappingURL=Redtheme5.vue.map */
/*# sourceMappingURL=Thirtyseven.vue.map */ /*# sourceMappingURL=Thirtyseven.vue.map */
@ -108,19 +96,31 @@
/*# sourceMappingURL=SanQintheme2.vue.map */ /*# sourceMappingURL=SanQintheme2.vue.map */
/*# sourceMappingURL=Thirtysix.vue.map */
/*# sourceMappingURL=Redtheme5.vue.map */
/*# sourceMappingURL=Thirtyseven3.vue.map */ /*# sourceMappingURL=Thirtyseven3.vue.map */
/*# sourceMappingURL=Thirtysix.vue.map */ /*# sourceMappingURL=Redtheme6.vue.map */
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=Thirtyeight.vue.map */ /*# sourceMappingURL=Thirtyeight.vue.map */
/*# sourceMappingURL=Thirtyseven2.vue.map */
/*# sourceMappingURL=Forty.vue.map */ /*# sourceMappingURL=Forty.vue.map */
/*# sourceMappingURL=Thirtyseven2.vue.map */ /*# sourceMappingURL=Thirtyfive.vue.map */
.xml-text-h5 .inline-audio-wrap, .xml-text-h5 .inline-audio-wrap,
.xml-text-h5 .inline-link-wrap { .xml-text-h5 .inline-link-wrap {
align-items: center; align-items: center;
@ -192,11 +192,11 @@
/*# sourceMappingURL=XmlText.vue.map */ /*# sourceMappingURL=XmlText.vue.map */
.xml-text-h5[data-v-483bfd20] { .xml-text-h5[data-v-4258792c] {
} }
.xml-text-pc[data-v-483bfd20] { .xml-text-pc[data-v-4258792c] {
} }
.xml-text-h5[data-v-483bfd20] { .xml-text-h5[data-v-4258792c] {
} }

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
import crypto from 'crypto'; import crypto from 'crypto';
@ -9364,7 +9364,7 @@ __vue_render__$J._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$I = undefined; const __vue_inject_styles__$I = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$I = "data-v-0781f4c2"; const __vue_scope_id__$I = "data-v-6f58d350";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$I = undefined; const __vue_module_identifier__$I = undefined;
/* functional template */ /* functional template */
@ -9436,7 +9436,7 @@ class MagicLink extends HTMLElement {
} }
.magic-link { .magic-link {
display: inline; display: inline;
// font-size:16px; font-size:16px;
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
text-align: left; text-align: left;
@ -48758,8 +48758,8 @@ var script$F = {
from: 'getResourceBasisPath', from: 'getResourceBasisPath',
default: () => () => '' default: () => () => ''
}, },
getSysEvn: { getSysEnv: {
from: 'getSysEvn', from: 'getSysEnv',
default: () => () => {} default: () => () => {}
}, },
getIsShowAi: { getIsShowAi: {
@ -48778,7 +48778,6 @@ var script$F = {
dataName: this.blockDataName, dataName: this.blockDataName,
data: this.pBlockData, data: this.pBlockData,
graphLinks: this.currentRule.data?.graphLinks || [], graphLinks: this.currentRule.data?.graphLinks || [],
pureTextComponent: this.isPureTextComponent,
dataIndex: this.dataIndex, dataIndex: this.dataIndex,
blockId: this.blockId blockId: this.blockId
}; };
@ -48809,7 +48808,7 @@ var script$F = {
return this.getKeyboardShow(); return this.getKeyboardShow();
}, },
evn() { evn() {
return this.getSysEvn() || { return this.getSysEnv() || {
tippy: {} tippy: {}
}; };
}, },
@ -48898,7 +48897,7 @@ var script$F = {
let _this = this; let _this = this;
this.blockData = this.pBlockData; this.blockData = this.pBlockData;
if (!this.blockData.html) { if (!this.blockData.html) {
this.blockData.html = '<span>暂无内容1</span>'; this.blockData.html = '<span>暂无内容</span>';
} }
`#${this.blockId} .richtext-reset-wrapper--view`; `#${this.blockId} .richtext-reset-wrapper--view`;
let mceMagicLinkRegistered = window.customElements?.get('magic-link'); let mceMagicLinkRegistered = window.customElements?.get('magic-link');
@ -48916,18 +48915,37 @@ var script$F = {
let title = target.attr('alt'); let title = target.attr('alt');
let src = target.attr('src'); let src = target.attr('src');
let notallowgallery = target.attr('notallowgallery'); let notallowgallery = target.attr('notallowgallery');
if (notallowgallery) { let imgType = target.attr('data-img-type');
return; if (!notallowgallery) {
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
} else if (imgType == 3) {
//问Ai
let aiType = target.attr('data-ai-type');
let problem = target.attr('data-problem');
_this.$EventBus.$emit('openAiParsing', {
isOpen: true,
//是否直接打开阅读器的Ai
aiType,
text: problem
});
} }
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
}); });
const getFileUrl = url => {
if (url) {
if (url.indexOf('./') === -1) {
return url;
}
return `${_this.resourceBasisPath}${url.split('./')[1]}`;
}
return '';
};
jquery(containerSelector).on('click', 'magic-link', function (e) { jquery(containerSelector).on('click', 'magic-link', function (e) {
let { let {
plaintext, plaintext,
@ -48950,7 +48968,7 @@ var script$F = {
multiple: true, multiple: true,
nowImgIndex: 0, nowImgIndex: 0,
imgList: [{ imgList: [{
url: content, url: getFileUrl(content),
title: plaintext title: plaintext
}] }]
}); });
@ -48960,7 +48978,7 @@ var script$F = {
_this.$EventBus.$emit('handleMagicLinkAudioPlay', { _this.$EventBus.$emit('handleMagicLinkAudioPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -48974,7 +48992,7 @@ var script$F = {
_this.$EventBus.$emit('handleMagicLinkVideoPlay', { _this.$EventBus.$emit('handleMagicLinkVideoPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -51054,7 +51072,7 @@ __vue_render__$F._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$F = undefined; const __vue_inject_styles__$F = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$F = "data-v-483bfd20"; const __vue_scope_id__$F = "data-v-4258792c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$F = undefined; const __vue_module_identifier__$F = undefined;
/* functional template */ /* functional template */
@ -51403,7 +51421,7 @@ __vue_render__$E._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$E = undefined; const __vue_inject_styles__$E = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$E = "data-v-296078f8"; const __vue_scope_id__$E = "data-v-e331edcc";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$E = undefined; const __vue_module_identifier__$E = undefined;
/* functional template */ /* functional template */
@ -51662,7 +51680,7 @@ __vue_render__$D._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$D = undefined; const __vue_inject_styles__$D = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$D = "data-v-daedf136"; const __vue_scope_id__$D = "data-v-38bb728f";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$D = undefined; const __vue_module_identifier__$D = undefined;
/* functional template */ /* functional template */
@ -51891,7 +51909,7 @@ __vue_render__$C._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$C = undefined; const __vue_inject_styles__$C = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$C = "data-v-27ac2736"; const __vue_scope_id__$C = "data-v-ed58270a";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$C = undefined; const __vue_module_identifier__$C = undefined;
/* functional template */ /* functional template */
@ -52157,7 +52175,7 @@ __vue_render__$B._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$B = undefined; const __vue_inject_styles__$B = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$B = "data-v-7c9e4108"; const __vue_scope_id__$B = "data-v-2fa14092";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$B = undefined; const __vue_module_identifier__$B = undefined;
/* functional template */ /* functional template */
@ -52394,7 +52412,7 @@ __vue_render__$A._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$A = undefined; const __vue_inject_styles__$A = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$A = "data-v-0c5f65ba"; const __vue_scope_id__$A = "data-v-632dc964";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$A = undefined; const __vue_module_identifier__$A = undefined;
/* functional template */ /* functional template */
@ -52673,7 +52691,7 @@ __vue_render__$z._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$z = undefined; const __vue_inject_styles__$z = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$z = "data-v-02102cd2"; const __vue_scope_id__$z = "data-v-31109da6";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$z = undefined; const __vue_module_identifier__$z = undefined;
/* functional template */ /* functional template */
@ -53106,7 +53124,7 @@ __vue_render__$y._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$y = undefined; const __vue_inject_styles__$y = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$y = "data-v-31351e99"; const __vue_scope_id__$y = "data-v-1e2ce5a2";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$y = undefined; const __vue_module_identifier__$y = undefined;
/* functional template */ /* functional template */
@ -53455,7 +53473,7 @@ __vue_render__$x._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$x = undefined; const __vue_inject_styles__$x = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$x = "data-v-7ab33580"; const __vue_scope_id__$x = "data-v-4ec5f0ac";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$x = undefined; const __vue_module_identifier__$x = undefined;
/* functional template */ /* functional template */
@ -53676,7 +53694,7 @@ __vue_render__$w._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$w = undefined; const __vue_inject_styles__$w = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$w = "data-v-a662b60c"; const __vue_scope_id__$w = "data-v-157d4fe0";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$w = undefined; const __vue_module_identifier__$w = undefined;
/* functional template */ /* functional template */
@ -54113,7 +54131,7 @@ __vue_render__$v._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$v = undefined; const __vue_inject_styles__$v = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$v = "data-v-f8ac22d6"; const __vue_scope_id__$v = "data-v-348561bf";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$v = undefined; const __vue_module_identifier__$v = undefined;
/* functional template */ /* functional template */
@ -54355,7 +54373,7 @@ __vue_render__$u._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$u = undefined; const __vue_inject_styles__$u = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$u = "data-v-73de6855"; const __vue_scope_id__$u = "data-v-11049dff";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$u = undefined; const __vue_module_identifier__$u = undefined;
/* functional template */ /* functional template */
@ -54610,7 +54628,7 @@ __vue_render__$t._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$t = undefined; const __vue_inject_styles__$t = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$t = "data-v-712545f9"; const __vue_scope_id__$t = "data-v-2bc30923";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$t = undefined; const __vue_module_identifier__$t = undefined;
/* functional template */ /* functional template */
@ -54834,7 +54852,7 @@ __vue_render__$s._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$s = undefined; const __vue_inject_styles__$s = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$s = "data-v-3cb23dd4"; const __vue_scope_id__$s = "data-v-51388e80";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$s = undefined; const __vue_module_identifier__$s = undefined;
/* functional template */ /* functional template */
@ -55052,7 +55070,7 @@ __vue_render__$r._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$r = undefined; const __vue_inject_styles__$r = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$r = "data-v-7132d7e7"; const __vue_scope_id__$r = "data-v-7543aefd";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$r = undefined; const __vue_module_identifier__$r = undefined;
/* functional template */ /* functional template */
@ -55276,7 +55294,7 @@ __vue_render__$q._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$q = undefined; const __vue_inject_styles__$q = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$q = "data-v-3b6af56c"; const __vue_scope_id__$q = "data-v-8d09dbfc";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$q = undefined; const __vue_module_identifier__$q = undefined;
/* functional template */ /* functional template */
@ -55500,7 +55518,7 @@ __vue_render__$p._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$p = undefined; const __vue_inject_styles__$p = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$p = "data-v-095f03d2"; const __vue_scope_id__$p = "data-v-1345fb7e";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$p = undefined; const __vue_module_identifier__$p = undefined;
/* functional template */ /* functional template */
@ -55718,7 +55736,7 @@ __vue_render__$o._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$o = undefined; const __vue_inject_styles__$o = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$o = "data-v-75b18a14"; const __vue_scope_id__$o = "data-v-5a02a2e8";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$o = undefined; const __vue_module_identifier__$o = undefined;
/* functional template */ /* functional template */
@ -55938,7 +55956,7 @@ __vue_render__$n._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$n = undefined; const __vue_inject_styles__$n = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$n = "data-v-4dfd5747"; const __vue_scope_id__$n = "data-v-06e641dd";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$n = undefined; const __vue_module_identifier__$n = undefined;
/* functional template */ /* functional template */
@ -56166,7 +56184,7 @@ __vue_render__$m._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$m = undefined; const __vue_inject_styles__$m = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$m = "data-v-9dab6cae"; const __vue_scope_id__$m = "data-v-486d33bf";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$m = undefined; const __vue_module_identifier__$m = undefined;
/* functional template */ /* functional template */
@ -56404,7 +56422,7 @@ __vue_render__$l._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$l = undefined; const __vue_inject_styles__$l = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$l = "data-v-49b14076"; const __vue_scope_id__$l = "data-v-6b24580c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$l = undefined; const __vue_module_identifier__$l = undefined;
/* functional template */ /* functional template */
@ -56630,7 +56648,7 @@ __vue_render__$k._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$k = undefined; const __vue_inject_styles__$k = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$k = "data-v-399a2649"; const __vue_scope_id__$k = "data-v-14063573";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$k = undefined; const __vue_module_identifier__$k = undefined;
/* functional template */ /* functional template */
@ -56850,7 +56868,7 @@ __vue_render__$j._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$j = undefined; const __vue_inject_styles__$j = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$j = "data-v-83a46300"; const __vue_scope_id__$j = "data-v-4cb210ac";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$j = undefined; const __vue_module_identifier__$j = undefined;
/* functional template */ /* functional template */
@ -57076,7 +57094,7 @@ __vue_render__$i._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$i = undefined; const __vue_inject_styles__$i = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$i = "data-v-08621972"; const __vue_scope_id__$i = "data-v-5389fb1e";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$i = undefined; const __vue_module_identifier__$i = undefined;
/* functional template */ /* functional template */
@ -57298,7 +57316,7 @@ __vue_render__$h._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$h = undefined; const __vue_inject_styles__$h = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$h = "data-v-67e7af93"; const __vue_scope_id__$h = "data-v-63289eae";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$h = undefined; const __vue_module_identifier__$h = undefined;
/* functional template */ /* functional template */
@ -57515,7 +57533,7 @@ __vue_render__$g._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$g = undefined; const __vue_inject_styles__$g = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$g = "data-v-835f5c56"; const __vue_scope_id__$g = "data-v-07399a7f";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$g = undefined; const __vue_module_identifier__$g = undefined;
/* functional template */ /* functional template */
@ -57736,7 +57754,7 @@ __vue_render__$f._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$f = undefined; const __vue_inject_styles__$f = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$f = "data-v-80c330f6"; const __vue_scope_id__$f = "data-v-07ddc59b";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$f = undefined; const __vue_module_identifier__$f = undefined;
/* functional template */ /* functional template */
@ -57957,7 +57975,7 @@ __vue_render__$e._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$e = undefined; const __vue_inject_styles__$e = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$e = "data-v-0492de25"; const __vue_scope_id__$e = "data-v-4cd23c3b";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$e = undefined; const __vue_module_identifier__$e = undefined;
/* functional template */ /* functional template */
@ -58215,7 +58233,7 @@ __vue_render__$d._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$d = undefined; const __vue_inject_styles__$d = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$d = "data-v-5e4cdcd0"; const __vue_scope_id__$d = "data-v-5b18c8fa";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$d = undefined; const __vue_module_identifier__$d = undefined;
/* functional template */ /* functional template */
@ -58432,7 +58450,7 @@ __vue_render__$c._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$c = undefined; const __vue_inject_styles__$c = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$c = "data-v-54b61a14"; const __vue_scope_id__$c = "data-v-ed428dc0";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$c = undefined; const __vue_module_identifier__$c = undefined;
/* functional template */ /* functional template */
@ -58649,7 +58667,7 @@ __vue_render__$b._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$b = undefined; const __vue_inject_styles__$b = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$b = "data-v-cdf97360"; const __vue_scope_id__$b = "data-v-3c26e20c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$b = undefined; const __vue_module_identifier__$b = undefined;
/* functional template */ /* functional template */
@ -58914,7 +58932,7 @@ __vue_render__$a._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$a = undefined; const __vue_inject_styles__$a = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$a = "data-v-cb4fdf4a"; const __vue_scope_id__$a = "data-v-73ff8571";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$a = undefined; const __vue_module_identifier__$a = undefined;
/* functional template */ /* functional template */
@ -59208,7 +59226,7 @@ __vue_render__$9._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$9 = undefined; const __vue_inject_styles__$9 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$9 = "data-v-e55ace0c"; const __vue_scope_id__$9 = "data-v-7b19e590";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$9 = undefined; const __vue_module_identifier__$9 = undefined;
/* functional template */ /* functional template */
@ -59491,7 +59509,7 @@ __vue_render__$8._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$8 = undefined; const __vue_inject_styles__$8 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$8 = "data-v-522c8fa9"; const __vue_scope_id__$8 = "data-v-6d05cc82";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$8 = undefined; const __vue_module_identifier__$8 = undefined;
/* functional template */ /* functional template */
@ -59723,7 +59741,7 @@ __vue_render__$7._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$7 = undefined; const __vue_inject_styles__$7 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$7 = "data-v-365d8cf7"; const __vue_scope_id__$7 = "data-v-2dc78421";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$7 = undefined; const __vue_module_identifier__$7 = undefined;
/* functional template */ /* functional template */
@ -59969,7 +59987,7 @@ __vue_render__$6._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$6 = undefined; const __vue_inject_styles__$6 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$6 = "data-v-36887152"; const __vue_scope_id__$6 = "data-v-4d160be8";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$6 = undefined; const __vue_module_identifier__$6 = undefined;
/* functional template */ /* functional template */
@ -60215,7 +60233,7 @@ __vue_render__$5._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$5 = undefined; const __vue_inject_styles__$5 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$5 = "data-v-bc646ed0"; const __vue_scope_id__$5 = "data-v-421a25c2";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$5 = undefined; const __vue_module_identifier__$5 = undefined;
/* functional template */ /* functional template */
@ -60518,7 +60536,7 @@ __vue_render__$4._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$4 = undefined; const __vue_inject_styles__$4 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$4 = "data-v-aa5609ba"; const __vue_scope_id__$4 = "data-v-579a8cb9";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$4 = undefined; const __vue_module_identifier__$4 = undefined;
/* functional template */ /* functional template */
@ -60821,7 +60839,7 @@ __vue_render__$3._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$3 = undefined; const __vue_inject_styles__$3 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$3 = "data-v-55fb311a"; const __vue_scope_id__$3 = "data-v-30ba95a0";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$3 = undefined; const __vue_module_identifier__$3 = undefined;
/* functional template */ /* functional template */
@ -61124,7 +61142,7 @@ __vue_render__$2._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$2 = undefined; const __vue_inject_styles__$2 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$2 = "data-v-6e2de9dd"; const __vue_scope_id__$2 = "data-v-0055241a";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$2 = undefined; const __vue_module_identifier__$2 = undefined;
/* functional template */ /* functional template */
@ -61422,7 +61440,7 @@ __vue_render__$1._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$1 = undefined; const __vue_inject_styles__$1 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$1 = "data-v-706deaea"; const __vue_scope_id__$1 = "data-v-c953f3be";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$1 = undefined; const __vue_module_identifier__$1 = undefined;
/* functional template */ /* functional template */
@ -61642,7 +61660,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-4c8c7e37"; const __vue_scope_id__ = "data-v-7b42d7e1";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

@ -1,9 +1,9 @@
.xml-question-container-h5[data-v-d56ea49c] { .xml-question-container-h5[data-v-726244b0] {
} }
.xml-question-container-pc[data-v-d56ea49c] { .xml-question-container-pc[data-v-726244b0] {
} }
.xml-question-container-pad[data-v-d56ea49c] { .xml-question-container-pad[data-v-726244b0] {
} }
@ -12,98 +12,10 @@
/*# sourceMappingURL=QuestionItem.vue.map */ /*# sourceMappingURL=QuestionItem.vue.map */
.option-item + .option-item[data-v-2a6bfc44] { .content[data-v-b67ffd48] {
margin-top: 16px;
}
.option-item[data-v-2a6bfc44] {
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-2a6bfc44] {
padding: 8px 0;
}
.option-item.isActive[data-v-2a6bfc44] {
border-color: #2e9adb;
}
.option-item.isTrue[data-v-2a6bfc44] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-2a6bfc44] .el-radio__input.is-checked .el-radio__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-2a6bfc44] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-2a6bfc44] .el-radio__input.is-checked .el-radio__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-2a6bfc44]:hover {
background: #ddd;
}
.option-item[data-v-2a6bfc44] .content {
cursor: pointer;
}
.option-item[data-v-2a6bfc44] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=radio.vue.map */
.option-item + .option-item[data-v-f1c36854] {
margin-top: 16px;
}
.option-item[data-v-f1c36854] {
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-f1c36854] {
padding: 8px 0;
}
.option-item.isActive[data-v-f1c36854] {
border-color: #2e9adb;
}
.option-item.isTrue[data-v-f1c36854] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-f1c36854] .el-radio__input.is-checked .el-radio__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-f1c36854] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-f1c36854] .el-radio__input.is-checked .el-radio__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-f1c36854]:hover {
background: #ddd;
}
.option-item[data-v-f1c36854] .content {
cursor: pointer;
}
.option-item[data-v-f1c36854] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=radio.vue.map */
.content[data-v-dad5303e] {
width: 100%; width: 100%;
} }
.content .stem-content[data-v-dad5303e] { .content .stem-content[data-v-b67ffd48] {
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
padding: 5px 14px; padding: 5px 14px;
@ -112,12 +24,12 @@
border-radius: 6px; border-radius: 6px;
cursor: pointer; cursor: pointer;
} }
.content .stem-content.no-border[data-v-dad5303e] { .content .stem-content.no-border[data-v-b67ffd48] {
padding: 0; padding: 0;
border: none; border: none;
cursor: default; cursor: default;
} }
.content .stem-content .placeholder[data-v-dad5303e] { .content .stem-content .placeholder[data-v-b67ffd48] {
color: #c0c4cc; color: #c0c4cc;
font-size: 14px; font-size: 14px;
cursor: pointer; cursor: pointer;
@ -125,98 +37,10 @@
} }
/*# sourceMappingURL=common.vue.map */ /*# sourceMappingURL=common.vue.map */
.option-item + .option-item[data-v-7eefc508] { .content[data-v-5a1894ea] {
margin-top: 16px;
}
.option-item[data-v-7eefc508] {
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-7eefc508] {
border-color: #2e9adb;
}
.option-item .questionSeq[data-v-7eefc508] {
padding: 8px 0;
}
.option-item.isTrue[data-v-7eefc508] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-7eefc508] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-7eefc508] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-7eefc508] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-7eefc508]:hover {
background: #ddd;
}
.option-item[data-v-7eefc508] .content {
cursor: pointer;
}
.option-item[data-v-7eefc508] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=checkbox.vue.map */
.option-item + .option-item[data-v-2dc7a8d2] {
margin-top: 16px;
}
.option-item[data-v-2dc7a8d2] {
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-2dc7a8d2] {
border-color: #2e9adb;
}
.option-item .questionSeq[data-v-2dc7a8d2] {
padding: 8px 0;
}
.option-item.isTrue[data-v-2dc7a8d2] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-2dc7a8d2] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-2dc7a8d2] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-2dc7a8d2] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-2dc7a8d2]:hover {
background: #ddd;
}
.option-item[data-v-2dc7a8d2] .content {
cursor: pointer;
}
.option-item[data-v-2dc7a8d2] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=checkbox.vue.map */
.content[data-v-9651bb74] {
width: 100%; width: 100%;
} }
.content .stem-content[data-v-9651bb74] { .content .stem-content[data-v-5a1894ea] {
width: 100%; width: 100%;
box-sizing: border-box; box-sizing: border-box;
padding: 5px 14px; padding: 5px 14px;
@ -225,12 +49,12 @@
border-radius: 6px; border-radius: 6px;
cursor: pointer; cursor: pointer;
} }
.content .stem-content.no-border[data-v-9651bb74] { .content .stem-content.no-border[data-v-5a1894ea] {
padding: 0; padding: 0;
border: none; border: none;
cursor: default; cursor: default;
} }
.content .stem-content .placeholder[data-v-9651bb74] { .content .stem-content .placeholder[data-v-5a1894ea] {
color: #c0c4cc; color: #c0c4cc;
font-size: 14px; font-size: 14px;
cursor: pointer; cursor: pointer;
@ -238,289 +62,347 @@
} }
/*# sourceMappingURL=common.vue.map */ /*# sourceMappingURL=common.vue.map */
.line-content[data-v-07789553] { .option-item + .option-item[data-v-4605914c] {
margin-top: 16px;
}
.option-item[data-v-4605914c] {
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-4605914c] {
padding: 8px 0;
}
.option-item.isActive[data-v-4605914c] {
border-color: #2e9adb;
}
.option-item.isTrue[data-v-4605914c] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-4605914c] .el-radio__input.is-checked .el-radio__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-4605914c] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-4605914c] .el-radio__input.is-checked .el-radio__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-4605914c]:hover {
background: #ddd;
}
.option-item[data-v-4605914c] .content {
cursor: pointer;
}
.option-item[data-v-4605914c] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=radio.vue.map */
.option-item + .option-item[data-v-9f3637dc] {
margin-top: 16px;
}
.option-item[data-v-9f3637dc] {
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-9f3637dc] {
border-color: #2e9adb;
}
.option-item .questionSeq[data-v-9f3637dc] {
padding: 8px 0;
}
.option-item.isTrue[data-v-9f3637dc] {
border: 1px solid #70b603;
}
.option-item.isTrue[data-v-9f3637dc] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #70b603;
background: #70b603;
}
.option-item.isFalse[data-v-9f3637dc] {
border: 1px solid #d9001b;
}
.option-item.isFalse[data-v-9f3637dc] .el-checkbox__input.is-checked .el-checkbox__inner {
border-color: #d9001b;
background: #d9001b;
}
.option-item[data-v-9f3637dc]:hover {
background: #ddd;
}
.option-item[data-v-9f3637dc] .content {
cursor: pointer;
}
.option-item[data-v-9f3637dc] .stem-content.no-border {
padding: 8px 14px !important;
cursor: pointer;
}
/*# sourceMappingURL=checkbox.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 */
.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 */
.line-content[data-v-a868932e] {
width: 100%; width: 100%;
position: relative; position: relative;
} }
.line-content .line-content--item[data-v-07789553] { .line-content .line-content--item[data-v-a868932e] {
flex: 1; flex: 1;
} }
.line-content .line-content--item[data-v-07789553] .stem-content { .line-content .line-content--item[data-v-a868932e] .stem-content {
height: 100%; height: 100%;
} }
.line-content + .line-content[data-v-07789553] { .line-content + .line-content[data-v-a868932e] {
margin-top: 10px; margin-top: 10px;
} }
.create-option[data-v-07789553] { .create-option[data-v-a868932e] {
width: 100%; width: 100%;
margin-top: 10px; margin-top: 10px;
border-style: dashed !important; border-style: dashed !important;
} }
.option-item[data-v-07789553] { .option-item[data-v-a868932e] {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
} }
.option-item + .option-item[data-v-07789553] { .option-item + .option-item[data-v-a868932e] {
margin-left: 100px; margin-left: 100px;
} }
.option-item.isMobile + .option-item.isMobile[data-v-07789553] { .option-item.isMobile + .option-item.isMobile[data-v-a868932e] {
margin-left: 50px; margin-left: 50px;
} }
.option-item[data-v-07789553] { .option-item[data-v-a868932e] {
margin-bottom: 10px; margin-bottom: 10px;
background: #fbfbfb; background: #fbfbfb;
border-radius: 6px; border-radius: 6px;
padding-left: 16px; padding-left: 16px;
} }
.option-item .questionSeq[data-v-07789553] { .option-item .questionSeq[data-v-a868932e] {
padding: 8px 0; padding: 8px 0;
} }
.option-item[data-v-07789553] .stem-content.no-border { .option-item[data-v-a868932e] .stem-content.no-border {
padding: 8px 14px !important; padding: 8px 14px !important;
} }
/*# sourceMappingURL=view-line.vue.map */ /*# sourceMappingURL=view-line.vue.map */
.line-content[data-v-5453482a] { .line-content[data-v-4a22b201] {
width: 100%; width: 100%;
position: relative; position: relative;
} }
.line-content .line-content--item[data-v-5453482a] { .line-content .line-content--item[data-v-4a22b201] {
flex: 1; flex: 1;
} }
.line-content .line-content--item[data-v-5453482a] .stem-content { .line-content .line-content--item[data-v-4a22b201] .stem-content {
height: 100%; height: 100%;
} }
.line-content + .line-content[data-v-5453482a] { .line-content + .line-content[data-v-4a22b201] {
margin-top: 10px; margin-top: 10px;
} }
.create-option[data-v-5453482a] { .create-option[data-v-4a22b201] {
width: 100%; width: 100%;
margin-top: 10px; margin-top: 10px;
border-style: dashed !important; border-style: dashed !important;
} }
.option-item[data-v-5453482a] { .option-item[data-v-4a22b201] {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
} }
.option-item + .option-item[data-v-5453482a] { .option-item + .option-item[data-v-4a22b201] {
margin-left: 100px; margin-left: 100px;
} }
.option-item.isMobile + .option-item.isMobile[data-v-5453482a] { .option-item.isMobile + .option-item.isMobile[data-v-4a22b201] {
margin-left: 50px; margin-left: 50px;
} }
.option-item[data-v-5453482a] { .option-item[data-v-4a22b201] {
margin-bottom: 10px; margin-bottom: 10px;
background: #FBFBFB; background: #FBFBFB;
border-radius: 6px; border-radius: 6px;
padding-left: 16px; padding-left: 16px;
border: 1px solid #fbfbfb; border: 1px solid #fbfbfb;
} }
.option-item .questionSeq[data-v-5453482a] { .option-item .questionSeq[data-v-4a22b201] {
padding: 8px 0; padding: 8px 0;
} }
.option-item[data-v-5453482a] .stem-content.no-border { .option-item[data-v-4a22b201] .stem-content.no-border {
padding: 8px 14px !important; padding: 8px 14px !important;
} }
/*# sourceMappingURL=view-line-answer.vue.map */ /*# sourceMappingURL=view-line-answer.vue.map */
.image-file[data-v-67ac173b] { .image-file[data-v-111cf251] {
width: 218px; width: 218px;
object-fit: scale-down; object-fit: scale-down;
} }
.video-file[data-v-67ac173b] { .video-file[data-v-111cf251] {
width: 408px; width: 408px;
} }
.file-render[data-v-67ac173b] { .file-render[data-v-111cf251] {
width: 100%; width: 100%;
} }
.file-info[data-v-67ac173b] { .file-info[data-v-111cf251] {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
} }
.file-info.videoHandler[data-v-67ac173b] { .file-info.videoHandler[data-v-111cf251] {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
} }
.file-info.videoHandler .fileName[data-v-67ac173b] { .file-info.videoHandler .fileName[data-v-111cf251] {
font-size: 18px; font-size: 18px;
color: #333333; color: #333333;
margin-bottom: 19px; margin-bottom: 19px;
} }
.file-info.videoHandler .fileInfo[data-v-67ac173b] { .file-info.videoHandler .fileInfo[data-v-111cf251] {
font-size: 14px; font-size: 14px;
color: #666666; color: #666666;
margin-bottom: 19px; margin-bottom: 19px;
} }
/*# sourceMappingURL=index.vue.map */ /*# sourceMappingURL=index.vue.map */
.image-file[data-v-9dbac350] { .image-file[data-v-070c50ee] {
width: 218px; width: 218px;
object-fit: scale-down; object-fit: scale-down;
} }
.video-file[data-v-9dbac350] { .video-file[data-v-070c50ee] {
width: 408px; width: 408px;
} }
.file-render[data-v-9dbac350] { .file-render[data-v-070c50ee] {
width: 100%; width: 100%;
} }
.file-info[data-v-9dbac350] { .file-info[data-v-070c50ee] {
flex: 1; flex: 1;
min-width: 0; min-width: 0;
} }
.file-info.videoHandler[data-v-9dbac350] { .file-info.videoHandler[data-v-070c50ee] {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
} }
.file-info.videoHandler .fileName[data-v-9dbac350] { .file-info.videoHandler .fileName[data-v-070c50ee] {
font-size: 18px; font-size: 18px;
color: #333333; color: #333333;
margin-bottom: 19px; margin-bottom: 19px;
} }
.file-info.videoHandler .fileInfo[data-v-9dbac350] { .file-info.videoHandler .fileInfo[data-v-070c50ee] {
font-size: 14px; font-size: 14px;
color: #666666; color: #666666;
margin-bottom: 19px; margin-bottom: 19px;
} }
/*# sourceMappingURL=index.vue.map */ /*# sourceMappingURL=index.vue.map */
.audio .audio-icon[data-v-a7067f84] { [data-v-432b6cd2] .el-dialog__header {
width: 36px;
height: 36px;
margin-right: 20px;
}
.audio .audio-icon img[data-v-a7067f84] {
width: 100%;
height: 100%;
display: block;
}
.audio .audio-controls[data-v-a7067f84] {
width: 100%;
max-width: 200px;
flex: 1;
height: 36px;
}
.audio .audio-controls .audio-controls--progress[data-v-a7067f84], .audio .audio-controls .audio-controls--handler[data-v-a7067f84] {
width: 100%;
}
.audio .audio-controls .audio-controls--handler[data-v-a7067f84] {
line-height: 1;
}
.audio .audio-controls .audio-controls--handler .play[data-v-a7067f84] {
font-size: 24px;
}
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-a7067f84] {
width: 22px;
height: 22px;
display: block;
cursor: pointer;
}
.audio .audio-controls .audio-controls--handler .current-time[data-v-a7067f84], .audio .audio-controls .audio-controls--handler .total-time[data-v-a7067f84] {
font-size: 12px;
color: #333;
}
.play-handler.mobile[data-v-a7067f84] {
width: 20px;
height: 20px;
}
.audio-component[data-v-a7067f84] {
display: none;
}
[data-v-a7067f84] .el-slider__runway {
margin: 0 0 4px 0;
background: #e3e3e3;
height: 4px;
}
[data-v-a7067f84] .el-slider__bar {
height: 4px;
}
[data-v-a7067f84] .el-slider__button {
width: 10px;
height: 10px;
}
[data-v-a7067f84] .el-slider__button-wrapper {
top: -15px;
}
/*# sourceMappingURL=audio-play-new.vue.map */
.audio .audio-icon[data-v-171f954a] {
width: 36px;
height: 36px;
margin-right: 20px;
}
.audio .audio-icon img[data-v-171f954a] {
width: 100%;
height: 100%;
display: block;
}
.audio .audio-controls[data-v-171f954a] {
width: 100%;
max-width: 200px;
flex: 1;
height: 36px;
}
.audio .audio-controls .audio-controls--progress[data-v-171f954a], .audio .audio-controls .audio-controls--handler[data-v-171f954a] {
width: 100%;
}
.audio .audio-controls .audio-controls--handler[data-v-171f954a] {
line-height: 1;
}
.audio .audio-controls .audio-controls--handler .play[data-v-171f954a] {
font-size: 24px;
}
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-171f954a] {
width: 22px;
height: 22px;
display: block;
cursor: pointer;
}
.audio .audio-controls .audio-controls--handler .current-time[data-v-171f954a], .audio .audio-controls .audio-controls--handler .total-time[data-v-171f954a] {
font-size: 12px;
color: #333;
}
.play-handler.mobile[data-v-171f954a] {
width: 20px;
height: 20px;
}
.audio-component[data-v-171f954a] {
display: none;
}
[data-v-171f954a] .el-slider__runway {
margin: 0 0 4px 0;
background: #e3e3e3;
height: 4px;
}
[data-v-171f954a] .el-slider__bar {
height: 4px;
}
[data-v-171f954a] .el-slider__button {
width: 10px;
height: 10px;
}
[data-v-171f954a] .el-slider__button-wrapper {
top: -15px;
}
/*# sourceMappingURL=audio-play-new.vue.map */
[data-v-c29405b0] .el-dialog__header {
padding: 10px; padding: 10px;
} }
.video-content[data-v-c29405b0] { .video-content[data-v-432b6cd2] {
width: 180px; width: 180px;
height: 135px; height: 135px;
border-radius: 6px; border-radius: 6px;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
} }
.video-content .play[data-v-c29405b0] { .video-content .play[data-v-432b6cd2] {
position: absolute; position: absolute;
left: 50%; left: 50%;
top: 50%; top: 50%;
cursor: pointer; cursor: pointer;
transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%);
} }
.video-mask[data-v-c29405b0] { .video-mask[data-v-432b6cd2] {
position: absolute; position: absolute;
left: 0; left: 0;
top: 0; top: 0;
@ -528,36 +410,36 @@
height: 100%; height: 100%;
background: rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.5);
} }
.video-mask img[data-v-c29405b0] { .video-mask img[data-v-432b6cd2] {
position: absolute; position: absolute;
left: 50%; left: 50%;
top: 50%; top: 50%;
transform: translate(-50% -50%); transform: translate(-50% -50%);
display: block; display: block;
} }
.video-player[data-v-c29405b0] { .video-player[data-v-432b6cd2] {
width: 100%; width: 100%;
} }
/*# sourceMappingURL=video-play.vue.map */ /*# sourceMappingURL=video-play.vue.map */
[data-v-f34974aa] .el-dialog__header { [data-v-33a4cdd5] .el-dialog__header {
padding: 10px; padding: 10px;
} }
.video-content[data-v-f34974aa] { .video-content[data-v-33a4cdd5] {
width: 180px; width: 180px;
height: 135px; height: 135px;
border-radius: 6px; border-radius: 6px;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
} }
.video-content .play[data-v-f34974aa] { .video-content .play[data-v-33a4cdd5] {
position: absolute; position: absolute;
left: 50%; left: 50%;
top: 50%; top: 50%;
cursor: pointer; cursor: pointer;
transform: translateX(-50%) translateY(-50%); transform: translateX(-50%) translateY(-50%);
} }
.video-mask[data-v-f34974aa] { .video-mask[data-v-33a4cdd5] {
position: absolute; position: absolute;
left: 0; left: 0;
top: 0; top: 0;
@ -565,15 +447,133 @@
height: 100%; height: 100%;
background: rgba(0, 0, 0, 0.5); background: rgba(0, 0, 0, 0.5);
} }
.video-mask img[data-v-f34974aa] { .video-mask img[data-v-33a4cdd5] {
position: absolute; position: absolute;
left: 50%; left: 50%;
top: 50%; top: 50%;
transform: translate(-50% -50%); transform: translate(-50% -50%);
display: block; display: block;
} }
.video-player[data-v-f34974aa] { .video-player[data-v-33a4cdd5] {
width: 100%; width: 100%;
} }
/*# sourceMappingURL=video-play.vue.map */ /*# sourceMappingURL=video-play.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 */
.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 */

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,9 +1,9 @@
.read-the-docs[data-v-323c2d1f] { .read-the-docs[data-v-a8861796] {
color: #888; color: #888;
} }
.read-the-docs[data-v-ac8a29ca] { .read-the-docs[data-v-be1c9976] {
color: #888; color: #888;
} }

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
// //
@ -112,7 +112,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$1 = undefined; const __vue_inject_styles__$1 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$1 = "data-v-ac8a29ca"; const __vue_scope_id__$1 = "data-v-be1c9976";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$1 = undefined; const __vue_module_identifier__$1 = undefined;
/* functional template */ /* functional template */
@ -225,7 +225,7 @@ const __vue_script__ = script;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-323c2d1f"; const __vue_scope_id__ = "data-v-a8861796";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

@ -1 +1 @@
.read-the-docs[data-v-323c2d1f]{color:#888}.read-the-docs[data-v-ac8a29ca]{color:#888} .read-the-docs[data-v-a8861796]{color:#888}.read-the-docs[data-v-be1c9976]{color:#888}

View File

@ -1,5 +1,5 @@
.preview-item-file[data-v-36ca6030]:hover, .preview-item-file[data-v-7759831c]:hover,
.slip-over-cover[data-v-36ca6030]:hover { .slip-over-cover[data-v-7759831c]:hover {
cursor: pointer; cursor: pointer;
} }

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * 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=="; 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==";
@ -158,10 +158,10 @@ var script = {
// 跳转office在线预览 // 跳转office在线预览
previewToPathClick(item) { previewToPathClick(item) {
console.log(item); console.log(item);
if (this.mode == 'preview') { if (this.mode == 'preview' || this.mode == 'reader') {
this.$EventBus.$emit('learningStatistics', { this.$EventBus.$emit('learningStatistics', {
type: 'doc', type: 'doc',
info: null, info: item,
data: item data: item
}); });
// if (item.fileFormat == 'pdf') { // if (item.fileFormat == 'pdf') {
@ -1417,7 +1417,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-36ca6030"; const __vue_scope_id__ = "data-v-7759831c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

@ -1 +1 @@
.preview-item-file[data-v-36ca6030]:hover,.slip-over-cover[data-v-36ca6030]:hover{cursor:pointer} .preview-item-file[data-v-7759831c]:hover,.slip-over-cover[data-v-7759831c]:hover{cursor:pointer}

View File

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

View File

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

View File

@ -1,7 +1,7 @@
.xml-single-ebook-group-h5[data-v-ebf14e08] { .xml-single-ebook-group-h5[data-v-2c564295] {
} }
.xml-single-ebook-group-pc[data-v-ebf14e08] { .xml-single-ebook-group-pc[data-v-2c564295] {
} }
.xml-single-ebook-group-pad[data-v-ebf14e08] { .xml-single-ebook-group-pad[data-v-2c564295] {
} }

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
var singleGroupMixin = { var singleGroupMixin = {

View File

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

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
var singleGroupMixin = { var singleGroupMixin = {
@ -313,7 +313,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-485b2a47"; const __vue_scope_id__ = "data-v-2afe911e";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

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

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
var singleGroupMixin = { var singleGroupMixin = {
@ -345,7 +345,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-0f0ca4f3"; const __vue_scope_id__ = "data-v-30e02b9d";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
var singleGroupMixin = { var singleGroupMixin = {
@ -361,7 +361,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-1257bb6e"; const __vue_scope_id__ = "data-v-345e24df";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

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

View File

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

View File

@ -1,108 +1,108 @@
/*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=eighth.vue.map */
/*# sourceMappingURL=Greytheme2.vue.map */
/*# sourceMappingURL=tenth.vue.map */
/*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=sixth.vue.map */ /*# sourceMappingURL=sixth.vue.map */
/*# sourceMappingURL=Yellowtheme4.vue.map */ /*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=eleventh.vue.map */
/*# sourceMappingURL=Greytheme1.vue.map */
/*# sourceMappingURL=seventh.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=Greytheme6.vue.map */
/*# sourceMappingURL=Yellowtheme3.vue.map */
/*# sourceMappingURL=ninth.vue.map */ /*# sourceMappingURL=ninth.vue.map */
/*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=third.vue.map */ /*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=Greytheme4.vue.map */
/*# sourceMappingURL=fourth.vue.map */ /*# sourceMappingURL=fourth.vue.map */
/*# sourceMappingURL=Greytheme3.vue.map */ /*# sourceMappingURL=seventh.vue.map */
/*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=eleventh.vue.map */
/*# sourceMappingURL=Greytheme2.vue.map */
/*# sourceMappingURL=Greytheme1.vue.map */
/*# sourceMappingURL=Greytheme6.vue.map */
/*# sourceMappingURL=Redtheme2.vue.map */ /*# sourceMappingURL=Redtheme2.vue.map */
/*# sourceMappingURL=Redtheme1.vue.map */ /*# sourceMappingURL=eighth.vue.map */
/*# sourceMappingURL=Greytheme5.vue.map */ /*# sourceMappingURL=Greytheme3.vue.map */
/*# sourceMappingURL=Redtheme4.vue.map */ /*# sourceMappingURL=Greytheme4.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */ /*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */ /*# sourceMappingURL=tenth.vue.map */
/*# sourceMappingURL=Bluetheme1.vue.map */
/*# sourceMappingURL=Redtheme3.vue.map */ /*# sourceMappingURL=Redtheme3.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=Yellowtheme3.vue.map */
/*# sourceMappingURL=Redtheme1.vue.map */
/*# sourceMappingURL=Bluetheme1.vue.map */
/*# sourceMappingURL=Redtheme4.vue.map */
/*# sourceMappingURL=Greytheme5.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */ /*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=Yellowtheme4.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */ /*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=Bluetheme4.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */
/*# sourceMappingURL=Greentheme1.vue.map */
/*# sourceMappingURL=Bluetheme3.vue.map */ /*# sourceMappingURL=Bluetheme3.vue.map */
/*# sourceMappingURL=Bluetheme2.vue.map */ /*# sourceMappingURL=Bluetheme2.vue.map */
.xml-text-h5[data-v-4258792c] {
/*# sourceMappingURL=Bluetheme4.vue.map */
/*# sourceMappingURL=Greentheme1.vue.map */
.xml-text-h5[data-v-483bfd20] {
} }
.xml-text-pc[data-v-483bfd20] { .xml-text-pc[data-v-4258792c] {
} }
.xml-text-h5[data-v-483bfd20] { .xml-text-h5[data-v-4258792c] {
} }
.xml-text-h5 .inline-audio-wrap, .xml-text-h5 .inline-audio-wrap,

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
import crypto from 'crypto'; import crypto from 'crypto';
@ -9364,7 +9364,7 @@ __vue_render__$B._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$A = undefined; const __vue_inject_styles__$A = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$A = "data-v-0781f4c2"; const __vue_scope_id__$A = "data-v-6f58d350";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$A = undefined; const __vue_module_identifier__$A = undefined;
/* functional template */ /* functional template */
@ -9436,7 +9436,7 @@ class MagicLink extends HTMLElement {
} }
.magic-link { .magic-link {
display: inline; display: inline;
// font-size:16px; font-size:16px;
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
text-align: left; text-align: left;
@ -48758,8 +48758,8 @@ var script$x = {
from: 'getResourceBasisPath', from: 'getResourceBasisPath',
default: () => () => '' default: () => () => ''
}, },
getSysEvn: { getSysEnv: {
from: 'getSysEvn', from: 'getSysEnv',
default: () => () => {} default: () => () => {}
}, },
getIsShowAi: { getIsShowAi: {
@ -48778,7 +48778,6 @@ var script$x = {
dataName: this.blockDataName, dataName: this.blockDataName,
data: this.pBlockData, data: this.pBlockData,
graphLinks: this.currentRule.data?.graphLinks || [], graphLinks: this.currentRule.data?.graphLinks || [],
pureTextComponent: this.isPureTextComponent,
dataIndex: this.dataIndex, dataIndex: this.dataIndex,
blockId: this.blockId blockId: this.blockId
}; };
@ -48809,7 +48808,7 @@ var script$x = {
return this.getKeyboardShow(); return this.getKeyboardShow();
}, },
evn() { evn() {
return this.getSysEvn() || { return this.getSysEnv() || {
tippy: {} tippy: {}
}; };
}, },
@ -48898,7 +48897,7 @@ var script$x = {
let _this = this; let _this = this;
this.blockData = this.pBlockData; this.blockData = this.pBlockData;
if (!this.blockData.html) { if (!this.blockData.html) {
this.blockData.html = '<span>暂无内容1</span>'; this.blockData.html = '<span>暂无内容</span>';
} }
`#${this.blockId} .richtext-reset-wrapper--view`; `#${this.blockId} .richtext-reset-wrapper--view`;
let mceMagicLinkRegistered = window.customElements?.get('magic-link'); let mceMagicLinkRegistered = window.customElements?.get('magic-link');
@ -48916,18 +48915,37 @@ var script$x = {
let title = target.attr('alt'); let title = target.attr('alt');
let src = target.attr('src'); let src = target.attr('src');
let notallowgallery = target.attr('notallowgallery'); let notallowgallery = target.attr('notallowgallery');
if (notallowgallery) { let imgType = target.attr('data-img-type');
return; if (!notallowgallery) {
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
} else if (imgType == 3) {
//问Ai
let aiType = target.attr('data-ai-type');
let problem = target.attr('data-problem');
_this.$EventBus.$emit('openAiParsing', {
isOpen: true,
//是否直接打开阅读器的Ai
aiType,
text: problem
});
} }
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
}); });
const getFileUrl = url => {
if (url) {
if (url.indexOf('./') === -1) {
return url;
}
return `${_this.resourceBasisPath}${url.split('./')[1]}`;
}
return '';
};
jquery(containerSelector).on('click', 'magic-link', function (e) { jquery(containerSelector).on('click', 'magic-link', function (e) {
let { let {
plaintext, plaintext,
@ -48950,7 +48968,7 @@ var script$x = {
multiple: true, multiple: true,
nowImgIndex: 0, nowImgIndex: 0,
imgList: [{ imgList: [{
url: content, url: getFileUrl(content),
title: plaintext title: plaintext
}] }]
}); });
@ -48960,7 +48978,7 @@ var script$x = {
_this.$EventBus.$emit('handleMagicLinkAudioPlay', { _this.$EventBus.$emit('handleMagicLinkAudioPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -48974,7 +48992,7 @@ var script$x = {
_this.$EventBus.$emit('handleMagicLinkVideoPlay', { _this.$EventBus.$emit('handleMagicLinkVideoPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -51054,7 +51072,7 @@ __vue_render__$x._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$x = undefined; const __vue_inject_styles__$x = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$x = "data-v-483bfd20"; const __vue_scope_id__$x = "data-v-4258792c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$x = undefined; const __vue_module_identifier__$x = undefined;
/* functional template */ /* functional template */
@ -51326,7 +51344,7 @@ __vue_render__$w._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$w = undefined; const __vue_inject_styles__$w = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$w = "data-v-0d9893a7"; const __vue_scope_id__$w = "data-v-e6c9fe86";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$w = undefined; const __vue_module_identifier__$w = undefined;
/* functional template */ /* functional template */
@ -51521,7 +51539,7 @@ __vue_render__$v._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$v = undefined; const __vue_inject_styles__$v = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$v = "data-v-282ecbe8"; const __vue_scope_id__$v = "data-v-fb736abc";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$v = undefined; const __vue_module_identifier__$v = undefined;
/* functional template */ /* functional template */
@ -51712,7 +51730,7 @@ __vue_render__$u._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$u = undefined; const __vue_inject_styles__$u = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$u = "data-v-5b4955b6"; const __vue_scope_id__$u = "data-v-15db9268";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$u = undefined; const __vue_module_identifier__$u = undefined;
/* functional template */ /* functional template */
@ -51909,7 +51927,7 @@ __vue_render__$t._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$t = undefined; const __vue_inject_styles__$t = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$t = "data-v-67a9825c"; const __vue_scope_id__$t = "data-v-f7e63308";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$t = undefined; const __vue_module_identifier__$t = undefined;
/* functional template */ /* functional template */
@ -52106,7 +52124,7 @@ __vue_render__$s._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$s = undefined; const __vue_inject_styles__$s = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$s = "data-v-34d4db40"; const __vue_scope_id__$s = "data-v-1aedf48a";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$s = undefined; const __vue_module_identifier__$s = undefined;
/* functional template */ /* functional template */
@ -52307,7 +52325,7 @@ __vue_render__$r._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$r = undefined; const __vue_inject_styles__$r = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$r = "data-v-017b6cfe"; const __vue_scope_id__$r = "data-v-b4e57fd2";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$r = undefined; const __vue_module_identifier__$r = undefined;
/* functional template */ /* functional template */
@ -52528,7 +52546,7 @@ __vue_render__$q._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$q = undefined; const __vue_inject_styles__$q = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$q = "data-v-6b231fd3"; const __vue_scope_id__$q = "data-v-573b56e9";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$q = undefined; const __vue_module_identifier__$q = undefined;
/* functional template */ /* functional template */
@ -52725,7 +52743,7 @@ __vue_render__$p._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$p = undefined; const __vue_inject_styles__$p = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$p = "data-v-56fdc257"; const __vue_scope_id__$p = "data-v-e50253fe";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$p = undefined; const __vue_module_identifier__$p = undefined;
/* functional template */ /* functional template */
@ -52922,7 +52940,7 @@ __vue_render__$o._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$o = undefined; const __vue_inject_styles__$o = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$o = "data-v-7004b951"; const __vue_scope_id__$o = "data-v-182aaf7b";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$o = undefined; const __vue_module_identifier__$o = undefined;
/* functional template */ /* functional template */
@ -53119,7 +53137,7 @@ __vue_render__$n._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$n = undefined; const __vue_inject_styles__$n = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$n = "data-v-1d713136"; const __vue_scope_id__$n = "data-v-61e2f18f";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$n = undefined; const __vue_module_identifier__$n = undefined;
/* functional template */ /* functional template */
@ -53318,7 +53336,7 @@ __vue_render__$m._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$m = undefined; const __vue_inject_styles__$m = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$m = "data-v-14b2e342"; const __vue_scope_id__$m = "data-v-3e2c52f5";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$m = undefined; const __vue_module_identifier__$m = undefined;
/* functional template */ /* functional template */
@ -53529,7 +53547,7 @@ __vue_render__$l._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$l = undefined; const __vue_inject_styles__$l = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$l = "data-v-7554e79e"; const __vue_scope_id__$l = "data-v-65cda570";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$l = undefined; const __vue_module_identifier__$l = undefined;
/* functional template */ /* functional template */
@ -53740,7 +53758,7 @@ __vue_render__$k._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$k = undefined; const __vue_inject_styles__$k = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$k = "data-v-a0d12086"; const __vue_scope_id__$k = "data-v-17b5d032";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$k = undefined; const __vue_module_identifier__$k = undefined;
/* functional template */ /* functional template */
@ -53951,7 +53969,7 @@ __vue_render__$j._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$j = undefined; const __vue_inject_styles__$j = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$j = "data-v-1b33c716"; const __vue_scope_id__$j = "data-v-72f80cc0";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$j = undefined; const __vue_module_identifier__$j = undefined;
/* functional template */ /* functional template */
@ -54162,7 +54180,7 @@ __vue_render__$i._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$i = undefined; const __vue_inject_styles__$i = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$i = "data-v-23b9925c"; const __vue_scope_id__$i = "data-v-45e77c7c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$i = undefined; const __vue_module_identifier__$i = undefined;
/* functional template */ /* functional template */
@ -54373,7 +54391,7 @@ __vue_render__$h._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$h = undefined; const __vue_inject_styles__$h = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$h = "data-v-7ddab2e4"; const __vue_scope_id__$h = "data-v-18d6ec38";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$h = undefined; const __vue_module_identifier__$h = undefined;
/* functional template */ /* functional template */
@ -54584,7 +54602,7 @@ __vue_render__$g._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$g = undefined; const __vue_inject_styles__$g = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$g = "data-v-d7fbd36c"; const __vue_scope_id__$g = "data-v-28734818";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$g = undefined; const __vue_module_identifier__$g = undefined;
/* functional template */ /* functional template */
@ -54775,7 +54793,7 @@ __vue_render__$f._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$f = undefined; const __vue_inject_styles__$f = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$f = "data-v-1357e2a3"; const __vue_scope_id__$f = "data-v-01d8a966";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$f = undefined; const __vue_module_identifier__$f = undefined;
/* functional template */ /* functional template */
@ -54966,7 +54984,7 @@ __vue_render__$e._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$e = undefined; const __vue_inject_styles__$e = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$e = "data-v-7d94c980"; const __vue_scope_id__$e = "data-v-a61d382c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$e = undefined; const __vue_module_identifier__$e = undefined;
/* functional template */ /* functional template */
@ -55157,7 +55175,7 @@ __vue_render__$d._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$d = undefined; const __vue_inject_styles__$d = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$d = "data-v-6f1353dd"; const __vue_scope_id__$d = "data-v-5acf1c87";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$d = undefined; const __vue_module_identifier__$d = undefined;
/* functional template */ /* functional template */
@ -55348,7 +55366,7 @@ __vue_render__$c._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$c = undefined; const __vue_inject_styles__$c = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$c = "data-v-1cf10c7a"; const __vue_scope_id__$c = "data-v-08acd524";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$c = undefined; const __vue_module_identifier__$c = undefined;
/* functional template */ /* functional template */
@ -55539,7 +55557,7 @@ __vue_render__$b._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$b = undefined; const __vue_inject_styles__$b = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$b = "data-v-8216ca78"; const __vue_scope_id__$b = "data-v-d692ea4c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$b = undefined; const __vue_module_identifier__$b = undefined;
/* functional template */ /* functional template */
@ -55730,7 +55748,7 @@ __vue_render__$a._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$a = undefined; const __vue_inject_styles__$a = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$a = "data-v-5dd0d343"; const __vue_scope_id__$a = "data-v-3392c359";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$a = undefined; const __vue_module_identifier__$a = undefined;
/* functional template */ /* functional template */
@ -55921,7 +55939,7 @@ __vue_render__$9._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$9 = undefined; const __vue_inject_styles__$9 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$9 = "data-v-06a5e87c"; const __vue_scope_id__$9 = "data-v-5b220850";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$9 = undefined; const __vue_module_identifier__$9 = undefined;
/* functional template */ /* functional template */
@ -56112,7 +56130,7 @@ __vue_render__$8._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$8 = undefined; const __vue_inject_styles__$8 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$8 = "data-v-c8ed777e"; const __vue_scope_id__$8 = "data-v-714b3457";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$8 = undefined; const __vue_module_identifier__$8 = undefined;
/* functional template */ /* functional template */
@ -56303,7 +56321,7 @@ __vue_render__$7._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$7 = undefined; const __vue_inject_styles__$7 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$7 = "data-v-6f8cced2"; const __vue_scope_id__$7 = "data-v-d8385330";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$7 = undefined; const __vue_module_identifier__$7 = undefined;
/* functional template */ /* functional template */
@ -56494,7 +56512,7 @@ __vue_render__$6._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$6 = undefined; const __vue_inject_styles__$6 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$6 = "data-v-05cbf8de"; const __vue_scope_id__$6 = "data-v-21710b27";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$6 = undefined; const __vue_module_identifier__$6 = undefined;
/* functional template */ /* functional template */
@ -56685,7 +56703,7 @@ __vue_render__$5._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$5 = undefined; const __vue_inject_styles__$5 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$5 = "data-v-fdb594e6"; const __vue_scope_id__$5 = "data-v-74b5aaba";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$5 = undefined; const __vue_module_identifier__$5 = undefined;
/* functional template */ /* functional template */
@ -56876,7 +56894,7 @@ __vue_render__$4._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$4 = undefined; const __vue_inject_styles__$4 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$4 = "data-v-18346d0f"; const __vue_scope_id__$4 = "data-v-3c8b74a5";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$4 = undefined; const __vue_module_identifier__$4 = undefined;
/* functional template */ /* functional template */
@ -57067,7 +57085,7 @@ __vue_render__$3._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$3 = undefined; const __vue_inject_styles__$3 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$3 = "data-v-93e0d61e"; const __vue_scope_id__$3 = "data-v-2c5cb5ca";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$3 = undefined; const __vue_module_identifier__$3 = undefined;
/* functional template */ /* functional template */
@ -57258,7 +57276,7 @@ __vue_render__$2._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$2 = undefined; const __vue_inject_styles__$2 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$2 = "data-v-257bc0ce"; const __vue_scope_id__$2 = "data-v-593dd0f8";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$2 = undefined; const __vue_module_identifier__$2 = undefined;
/* functional template */ /* functional template */
@ -57449,7 +57467,7 @@ __vue_render__$1._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$1 = undefined; const __vue_inject_styles__$1 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$1 = "data-v-d63026aa"; const __vue_scope_id__$1 = "data-v-6eac0656";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$1 = undefined; const __vue_module_identifier__$1 = undefined;
/* functional template */ /* functional template */
@ -57640,7 +57658,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-04541888"; const __vue_scope_id__ = "data-v-381628b2";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
// //
@ -367,7 +367,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-321184ac"; const __vue_scope_id__ = "data-v-18650942";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

@ -1,9 +1,12 @@
.xml-text-h5[data-v-483bfd20] {
/*# sourceMappingURL=XmlTextDialog.vue.map */
.xml-text-h5[data-v-4258792c] {
} }
.xml-text-pc[data-v-483bfd20] { .xml-text-pc[data-v-4258792c] {
} }
.xml-text-h5[data-v-483bfd20] { .xml-text-h5[data-v-4258792c] {
} }
.xml-text-h5 .inline-audio-wrap, .xml-text-h5 .inline-audio-wrap,
@ -78,9 +81,6 @@
/*# sourceMappingURL=XmlText.vue.map */ /*# sourceMappingURL=XmlText.vue.map */
/*# sourceMappingURL=XmlTextDialog.vue.map */

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
import crypto from 'crypto'; import crypto from 'crypto';
@ -9364,7 +9364,7 @@ __vue_render__$4._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$3 = undefined; const __vue_inject_styles__$3 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$3 = "data-v-0781f4c2"; const __vue_scope_id__$3 = "data-v-6f58d350";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$3 = undefined; const __vue_module_identifier__$3 = undefined;
/* functional template */ /* functional template */
@ -9436,7 +9436,7 @@ class MagicLink extends HTMLElement {
} }
.magic-link { .magic-link {
display: inline; display: inline;
// font-size:16px; font-size:16px;
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
text-align: left; text-align: left;
@ -48758,8 +48758,8 @@ var script = {
from: 'getResourceBasisPath', from: 'getResourceBasisPath',
default: () => () => '' default: () => () => ''
}, },
getSysEvn: { getSysEnv: {
from: 'getSysEvn', from: 'getSysEnv',
default: () => () => {} default: () => () => {}
}, },
getIsShowAi: { getIsShowAi: {
@ -48778,7 +48778,6 @@ var script = {
dataName: this.blockDataName, dataName: this.blockDataName,
data: this.pBlockData, data: this.pBlockData,
graphLinks: this.currentRule.data?.graphLinks || [], graphLinks: this.currentRule.data?.graphLinks || [],
pureTextComponent: this.isPureTextComponent,
dataIndex: this.dataIndex, dataIndex: this.dataIndex,
blockId: this.blockId blockId: this.blockId
}; };
@ -48809,7 +48808,7 @@ var script = {
return this.getKeyboardShow(); return this.getKeyboardShow();
}, },
evn() { evn() {
return this.getSysEvn() || { return this.getSysEnv() || {
tippy: {} tippy: {}
}; };
}, },
@ -48898,7 +48897,7 @@ var script = {
let _this = this; let _this = this;
this.blockData = this.pBlockData; this.blockData = this.pBlockData;
if (!this.blockData.html) { if (!this.blockData.html) {
this.blockData.html = '<span>暂无内容1</span>'; this.blockData.html = '<span>暂无内容</span>';
} }
`#${this.blockId} .richtext-reset-wrapper--view`; `#${this.blockId} .richtext-reset-wrapper--view`;
let mceMagicLinkRegistered = window.customElements?.get('magic-link'); let mceMagicLinkRegistered = window.customElements?.get('magic-link');
@ -48916,18 +48915,37 @@ var script = {
let title = target.attr('alt'); let title = target.attr('alt');
let src = target.attr('src'); let src = target.attr('src');
let notallowgallery = target.attr('notallowgallery'); let notallowgallery = target.attr('notallowgallery');
if (notallowgallery) { let imgType = target.attr('data-img-type');
return; if (!notallowgallery) {
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
} else if (imgType == 3) {
//问Ai
let aiType = target.attr('data-ai-type');
let problem = target.attr('data-problem');
_this.$EventBus.$emit('openAiParsing', {
isOpen: true,
//是否直接打开阅读器的Ai
aiType,
text: problem
});
} }
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
}); });
const getFileUrl = url => {
if (url) {
if (url.indexOf('./') === -1) {
return url;
}
return `${_this.resourceBasisPath}${url.split('./')[1]}`;
}
return '';
};
jquery(containerSelector).on('click', 'magic-link', function (e) { jquery(containerSelector).on('click', 'magic-link', function (e) {
let { let {
plaintext, plaintext,
@ -48950,7 +48968,7 @@ var script = {
multiple: true, multiple: true,
nowImgIndex: 0, nowImgIndex: 0,
imgList: [{ imgList: [{
url: content, url: getFileUrl(content),
title: plaintext title: plaintext
}] }]
}); });
@ -48960,7 +48978,7 @@ var script = {
_this.$EventBus.$emit('handleMagicLinkAudioPlay', { _this.$EventBus.$emit('handleMagicLinkAudioPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -48974,7 +48992,7 @@ var script = {
_this.$EventBus.$emit('handleMagicLinkVideoPlay', { _this.$EventBus.$emit('handleMagicLinkVideoPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -51054,7 +51072,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-483bfd20"; const __vue_scope_id__ = "data-v-4258792c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* 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

View File

@ -1,30 +1,18 @@
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=rectangle.vue.map */
/*# sourceMappingURL=hexagon.vue.map */
/*# sourceMappingURL=rotundity.vue.map */
/*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=first.vue.map */ /*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=square.vue.map */ /*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=fifteen.vue.map */ /*# sourceMappingURL=hexagon.vue.map */
/*# sourceMappingURL=triangle.vue.map */
/*# sourceMappingURL=rectangle.vue.map */
/*# sourceMappingURL=sixth.vue.map */ /*# sourceMappingURL=sixth.vue.map */
@ -33,96 +21,108 @@
/*# sourceMappingURL=twelfth.vue.map */ /*# sourceMappingURL=twelfth.vue.map */
/*# sourceMappingURL=semicircle.vue.map */ /*# sourceMappingURL=square.vue.map */
/*# sourceMappingURL=triangle.vue.map */
/*# sourceMappingURL=thirteenth.vue.map */
/*# sourceMappingURL=eighteen.vue.map */
/*# sourceMappingURL=nineteen.vue.map */
/*# sourceMappingURL=fourteen.vue.map */
/*# sourceMappingURL=eighteen2.vue.map */
/*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=Greentheme5.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */ /*# sourceMappingURL=Greentheme3.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */ /*# sourceMappingURL=thirteenth.vue.map */
/*# sourceMappingURL=semicircle.vue.map */
/*# sourceMappingURL=fourteen.vue.map */
/*# sourceMappingURL=eighteen.vue.map */
/*# sourceMappingURL=second.vue.map */
/*# sourceMappingURL=rotundity.vue.map */
/*# sourceMappingURL=fifteen.vue.map */
/*# sourceMappingURL=eighteen2.vue.map */
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=Greentheme5.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */ /*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=Greentheme1.vue.map */ /*# sourceMappingURL=seventeen.vue.map */
/*# sourceMappingURL=SanQintheme1.vue.map */ /*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */ /*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=nineteen.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */ /*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=seventeen.vue.map */ /*# sourceMappingURL=Greentheme1.vue.map */
/*# sourceMappingURL=Twentyone.vue.map */
/*# sourceMappingURL=Greentheme6.vue.map */
/*# sourceMappingURL=Yellowtheme6.vue.map */
/*# sourceMappingURL=SanQintheme2.vue.map */
/*# sourceMappingURL=Twentyfour.vue.map */
/*# sourceMappingURL=Yellowtheme3.vue.map */
/*# sourceMappingURL=Yellowtheme5.vue.map */ /*# sourceMappingURL=Yellowtheme5.vue.map */
/*# sourceMappingURL=twenty.vue.map */ /*# sourceMappingURL=Twentyfour.vue.map */
/*# sourceMappingURL=Yellowtheme4.vue.map */ /*# sourceMappingURL=Yellowtheme4.vue.map */
/*# sourceMappingURL=Knowledge.vue.map */ /*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=Twentytwo.vue.map */ /*# sourceMappingURL=Twentytwo.vue.map */
/*# sourceMappingURL=SanQintheme3.vue.map */ /*# sourceMappingURL=twenty.vue.map */
/*# sourceMappingURL=Yellowtheme6.vue.map */
/*# sourceMappingURL=Twentythree.vue.map */ /*# sourceMappingURL=Twentythree.vue.map */
/*# sourceMappingURL=Yellowtheme3.vue.map */
/*# sourceMappingURL=Knowledge.vue.map */
/*# sourceMappingURL=SanQintheme3.vue.map */
/*# sourceMappingURL=SanQintheme2.vue.map */
/*# sourceMappingURL=Greentheme6.vue.map */
/*# sourceMappingURL=Twentyone.vue.map */
/*# sourceMappingURL=SanQintheme1.vue.map */
/*# sourceMappingURL=Twentyfive.vue.map */ /*# sourceMappingURL=Twentyfive.vue.map */
.xml-text-h5 .inline-audio-wrap, .xml-text-h5 .inline-audio-wrap,
.xml-text-h5 .inline-link-wrap { .xml-text-h5 .inline-link-wrap {
@ -195,11 +195,11 @@
/*# sourceMappingURL=XmlText.vue.map */ /*# sourceMappingURL=XmlText.vue.map */
.xml-text-h5[data-v-483bfd20] { .xml-text-h5[data-v-4258792c] {
} }
.xml-text-pc[data-v-483bfd20] { .xml-text-pc[data-v-4258792c] {
} }
.xml-text-h5[data-v-483bfd20] { .xml-text-h5[data-v-4258792c] {
} }

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
import crypto from 'crypto'; import crypto from 'crypto';
@ -9364,7 +9364,7 @@ __vue_render__$K._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$J = undefined; const __vue_inject_styles__$J = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$J = "data-v-0781f4c2"; const __vue_scope_id__$J = "data-v-6f58d350";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$J = undefined; const __vue_module_identifier__$J = undefined;
/* functional template */ /* functional template */
@ -9436,7 +9436,7 @@ class MagicLink extends HTMLElement {
} }
.magic-link { .magic-link {
display: inline; display: inline;
// font-size:16px; font-size:16px;
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
text-align: left; text-align: left;
@ -48758,8 +48758,8 @@ var script$G = {
from: 'getResourceBasisPath', from: 'getResourceBasisPath',
default: () => () => '' default: () => () => ''
}, },
getSysEvn: { getSysEnv: {
from: 'getSysEvn', from: 'getSysEnv',
default: () => () => {} default: () => () => {}
}, },
getIsShowAi: { getIsShowAi: {
@ -48778,7 +48778,6 @@ var script$G = {
dataName: this.blockDataName, dataName: this.blockDataName,
data: this.pBlockData, data: this.pBlockData,
graphLinks: this.currentRule.data?.graphLinks || [], graphLinks: this.currentRule.data?.graphLinks || [],
pureTextComponent: this.isPureTextComponent,
dataIndex: this.dataIndex, dataIndex: this.dataIndex,
blockId: this.blockId blockId: this.blockId
}; };
@ -48809,7 +48808,7 @@ var script$G = {
return this.getKeyboardShow(); return this.getKeyboardShow();
}, },
evn() { evn() {
return this.getSysEvn() || { return this.getSysEnv() || {
tippy: {} tippy: {}
}; };
}, },
@ -48898,7 +48897,7 @@ var script$G = {
let _this = this; let _this = this;
this.blockData = this.pBlockData; this.blockData = this.pBlockData;
if (!this.blockData.html) { if (!this.blockData.html) {
this.blockData.html = '<span>暂无内容1</span>'; this.blockData.html = '<span>暂无内容</span>';
} }
`#${this.blockId} .richtext-reset-wrapper--view`; `#${this.blockId} .richtext-reset-wrapper--view`;
let mceMagicLinkRegistered = window.customElements?.get('magic-link'); let mceMagicLinkRegistered = window.customElements?.get('magic-link');
@ -48916,18 +48915,37 @@ var script$G = {
let title = target.attr('alt'); let title = target.attr('alt');
let src = target.attr('src'); let src = target.attr('src');
let notallowgallery = target.attr('notallowgallery'); let notallowgallery = target.attr('notallowgallery');
if (notallowgallery) { let imgType = target.attr('data-img-type');
return; if (!notallowgallery) {
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
} else if (imgType == 3) {
//问Ai
let aiType = target.attr('data-ai-type');
let problem = target.attr('data-problem');
_this.$EventBus.$emit('openAiParsing', {
isOpen: true,
//是否直接打开阅读器的Ai
aiType,
text: problem
});
} }
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
}); });
const getFileUrl = url => {
if (url) {
if (url.indexOf('./') === -1) {
return url;
}
return `${_this.resourceBasisPath}${url.split('./')[1]}`;
}
return '';
};
jquery(containerSelector).on('click', 'magic-link', function (e) { jquery(containerSelector).on('click', 'magic-link', function (e) {
let { let {
plaintext, plaintext,
@ -48950,7 +48968,7 @@ var script$G = {
multiple: true, multiple: true,
nowImgIndex: 0, nowImgIndex: 0,
imgList: [{ imgList: [{
url: content, url: getFileUrl(content),
title: plaintext title: plaintext
}] }]
}); });
@ -48960,7 +48978,7 @@ var script$G = {
_this.$EventBus.$emit('handleMagicLinkAudioPlay', { _this.$EventBus.$emit('handleMagicLinkAudioPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -48974,7 +48992,7 @@ var script$G = {
_this.$EventBus.$emit('handleMagicLinkVideoPlay', { _this.$EventBus.$emit('handleMagicLinkVideoPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -51054,7 +51072,7 @@ __vue_render__$G._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$G = undefined; const __vue_inject_styles__$G = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$G = "data-v-483bfd20"; const __vue_scope_id__$G = "data-v-4258792c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$G = undefined; const __vue_module_identifier__$G = undefined;
/* functional template */ /* functional template */
@ -51354,7 +51372,7 @@ __vue_render__$F._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$F = undefined; const __vue_inject_styles__$F = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$F = "data-v-a00f2484"; const __vue_scope_id__$F = "data-v-b4957530";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$F = undefined; const __vue_module_identifier__$F = undefined;
/* functional template */ /* functional template */
@ -51574,7 +51592,7 @@ __vue_render__$E._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$E = undefined; const __vue_inject_styles__$E = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$E = "data-v-4411be5a"; const __vue_scope_id__$E = "data-v-6e4bd170";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$E = undefined; const __vue_module_identifier__$E = undefined;
/* functional template */ /* functional template */
@ -51794,7 +51812,7 @@ __vue_render__$D._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$D = undefined; const __vue_inject_styles__$D = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$D = "data-v-42f9a227"; const __vue_scope_id__$D = "data-v-a93da05e";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$D = undefined; const __vue_module_identifier__$D = undefined;
/* functional template */ /* functional template */
@ -52031,7 +52049,7 @@ __vue_render__$C._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$C = undefined; const __vue_inject_styles__$C = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$C = "data-v-789d135e"; const __vue_scope_id__$C = "data-v-f0095c18";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$C = undefined; const __vue_module_identifier__$C = undefined;
/* functional template */ /* functional template */
@ -52251,7 +52269,7 @@ __vue_render__$B._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$B = undefined; const __vue_inject_styles__$B = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$B = "data-v-60f3a44d"; const __vue_scope_id__$B = "data-v-e0be6b12";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$B = undefined; const __vue_module_identifier__$B = undefined;
/* functional template */ /* functional template */
@ -52467,7 +52485,7 @@ __vue_render__$A._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$A = undefined; const __vue_inject_styles__$A = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$A = "data-v-7ffab134"; const __vue_scope_id__$A = "data-v-2306d1de";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$A = undefined; const __vue_module_identifier__$A = undefined;
/* functional template */ /* functional template */
@ -52687,7 +52705,7 @@ __vue_render__$z._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$z = undefined; const __vue_inject_styles__$z = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$z = "data-v-6a958ef1"; const __vue_scope_id__$z = "data-v-3221c087";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$z = undefined; const __vue_module_identifier__$z = undefined;
/* functional template */ /* functional template */
@ -52956,7 +52974,7 @@ __vue_render__$y._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$y = undefined; const __vue_inject_styles__$y = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$y = "data-v-590b1c5a"; const __vue_scope_id__$y = "data-v-0a5d4770";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$y = undefined; const __vue_module_identifier__$y = undefined;
/* functional template */ /* functional template */
@ -53176,7 +53194,7 @@ __vue_render__$x._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$x = undefined; const __vue_inject_styles__$x = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$x = "data-v-ab464720"; const __vue_scope_id__$x = "data-v-23b381f4";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$x = undefined; const __vue_module_identifier__$x = undefined;
/* functional template */ /* functional template */
@ -53445,7 +53463,7 @@ __vue_render__$w._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$w = undefined; const __vue_inject_styles__$w = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$w = "data-v-1105c768"; const __vue_scope_id__$w = "data-v-6c5b80dc";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$w = undefined; const __vue_module_identifier__$w = undefined;
/* functional template */ /* functional template */
@ -53665,7 +53683,7 @@ __vue_render__$v._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$v = undefined; const __vue_inject_styles__$v = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$v = "data-v-918d650a"; const __vue_scope_id__$v = "data-v-61d7e791";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$v = undefined; const __vue_module_identifier__$v = undefined;
/* functional template */ /* functional template */
@ -53934,7 +53952,7 @@ __vue_render__$u._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$u = undefined; const __vue_inject_styles__$u = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$u = "data-v-7d547b9f"; const __vue_scope_id__$u = "data-v-06acac49";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$u = undefined; const __vue_module_identifier__$u = undefined;
/* functional template */ /* functional template */
@ -54184,7 +54202,7 @@ __vue_render__$t._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$t = undefined; const __vue_inject_styles__$t = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$t = "data-v-65c498eb"; const __vue_scope_id__$t = "data-v-8850ccfe";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$t = undefined; const __vue_module_identifier__$t = undefined;
/* functional template */ /* functional template */
@ -54402,7 +54420,7 @@ __vue_render__$s._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$s = undefined; const __vue_inject_styles__$s = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$s = "data-v-e9e72478"; const __vue_scope_id__$s = "data-v-2f96955a";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$s = undefined; const __vue_module_identifier__$s = undefined;
/* functional template */ /* functional template */
@ -54648,7 +54666,7 @@ __vue_render__$r._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$r = undefined; const __vue_inject_styles__$r = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$r = "data-v-61cb4f62"; const __vue_scope_id__$r = "data-v-1df2118c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$r = undefined; const __vue_module_identifier__$r = undefined;
/* functional template */ /* functional template */
@ -54869,7 +54887,7 @@ __vue_render__$q._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$q = undefined; const __vue_inject_styles__$q = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$q = "data-v-0dbeaeae"; const __vue_scope_id__$q = "data-v-16547c44";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$q = undefined; const __vue_module_identifier__$q = undefined;
/* functional template */ /* functional template */
@ -55121,7 +55139,7 @@ __vue_render__$p._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$p = undefined; const __vue_inject_styles__$p = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$p = "data-v-84a72f5a"; const __vue_scope_id__$p = "data-v-2482e12e";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$p = undefined; const __vue_module_identifier__$p = undefined;
/* functional template */ /* functional template */
@ -55346,7 +55364,7 @@ __vue_render__$o._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$o = undefined; const __vue_inject_styles__$o = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$o = "data-v-2f3d022c"; const __vue_scope_id__$o = "data-v-ff514a54";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$o = undefined; const __vue_module_identifier__$o = undefined;
/* functional template */ /* functional template */
@ -55571,7 +55589,7 @@ __vue_render__$n._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$n = undefined; const __vue_inject_styles__$n = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$n = "data-v-401bd1fc"; const __vue_scope_id__$n = "data-v-9bba58d0";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$n = undefined; const __vue_module_identifier__$n = undefined;
/* functional template */ /* functional template */
@ -55789,7 +55807,7 @@ __vue_render__$m._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$m = undefined; const __vue_inject_styles__$m = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$m = "data-v-6a5b4a86"; const __vue_scope_id__$m = "data-v-223b64e7";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$m = undefined; const __vue_module_identifier__$m = undefined;
/* functional template */ /* functional template */
@ -56040,7 +56058,7 @@ __vue_render__$l._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$l = undefined; const __vue_inject_styles__$l = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$l = "data-v-9d0df996"; const __vue_scope_id__$l = "data-v-649daf42";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$l = undefined; const __vue_module_identifier__$l = undefined;
/* functional template */ /* functional template */
@ -56301,7 +56319,7 @@ __vue_render__$k._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$k = undefined; const __vue_inject_styles__$k = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$k = "data-v-4a8bb7c0"; const __vue_scope_id__$k = "data-v-eace7d54";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$k = undefined; const __vue_module_identifier__$k = undefined;
/* functional template */ /* functional template */
@ -56522,7 +56540,7 @@ __vue_render__$j._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$j = undefined; const __vue_inject_styles__$j = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$j = "data-v-25a89ed2"; const __vue_scope_id__$j = "data-v-a00e7ea6";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$j = undefined; const __vue_module_identifier__$j = undefined;
/* functional template */ /* functional template */
@ -56745,7 +56763,7 @@ __vue_render__$i._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$i = undefined; const __vue_inject_styles__$i = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$i = "data-v-9cc8123c"; const __vue_scope_id__$i = "data-v-55dc42f8";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$i = undefined; const __vue_module_identifier__$i = undefined;
/* functional template */ /* functional template */
@ -56965,7 +56983,7 @@ __vue_render__$h._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$h = undefined; const __vue_inject_styles__$h = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$h = "data-v-0bfdf35d"; const __vue_scope_id__$h = "data-v-981c89f2";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$h = undefined; const __vue_module_identifier__$h = undefined;
/* functional template */ /* functional template */
@ -57197,7 +57215,7 @@ __vue_render__$g._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$g = undefined; const __vue_inject_styles__$g = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$g = "data-v-fb2e5160"; const __vue_scope_id__$g = "data-v-66320dfa";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$g = undefined; const __vue_module_identifier__$g = undefined;
/* functional template */ /* functional template */
@ -57455,7 +57473,7 @@ __vue_render__$f._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$f = undefined; const __vue_inject_styles__$f = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$f = "data-v-fcbe7028"; const __vue_scope_id__$f = "data-v-39d4d402";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$f = undefined; const __vue_module_identifier__$f = undefined;
/* functional template */ /* functional template */
@ -57676,7 +57694,7 @@ __vue_render__$e._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$e = undefined; const __vue_inject_styles__$e = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$e = "data-v-18d47f32"; const __vue_scope_id__$e = "data-v-4a9ac670";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$e = undefined; const __vue_module_identifier__$e = undefined;
/* functional template */ /* functional template */
@ -57897,7 +57915,7 @@ __vue_render__$d._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$d = undefined; const __vue_inject_styles__$d = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$d = "data-v-e1ebb2da"; const __vue_scope_id__$d = "data-v-50e84429";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$d = undefined; const __vue_module_identifier__$d = undefined;
/* functional template */ /* functional template */
@ -58116,7 +58134,7 @@ __vue_render__$c._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$c = undefined; const __vue_inject_styles__$c = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$c = "data-v-76ad1c2c"; const __vue_scope_id__$c = "data-v-26c2b954";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$c = undefined; const __vue_module_identifier__$c = undefined;
/* functional template */ /* functional template */
@ -58339,7 +58357,7 @@ __vue_render__$b._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$b = undefined; const __vue_inject_styles__$b = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$b = "data-v-ddb34b10"; const __vue_scope_id__$b = "data-v-41d0d0e4";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$b = undefined; const __vue_module_identifier__$b = undefined;
/* functional template */ /* functional template */
@ -58562,7 +58580,7 @@ __vue_render__$a._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$a = undefined; const __vue_inject_styles__$a = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$a = "data-v-35bbc525"; const __vue_scope_id__$a = "data-v-71ef684f";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$a = undefined; const __vue_module_identifier__$a = undefined;
/* functional template */ /* functional template */
@ -58821,7 +58839,7 @@ __vue_render__$9._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$9 = undefined; const __vue_inject_styles__$9 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$9 = "data-v-c97ec630"; const __vue_scope_id__$9 = "data-v-04ce6ffe";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$9 = undefined; const __vue_module_identifier__$9 = undefined;
/* functional template */ /* functional template */
@ -59038,7 +59056,7 @@ __vue_render__$8._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$8 = undefined; const __vue_inject_styles__$8 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$8 = "data-v-3841fea1"; const __vue_scope_id__$8 = "data-v-e0a9ee6a";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$8 = undefined; const __vue_module_identifier__$8 = undefined;
/* functional template */ /* functional template */
@ -59255,7 +59273,7 @@ __vue_render__$7._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$7 = undefined; const __vue_inject_styles__$7 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$7 = "data-v-3731b9d2"; const __vue_scope_id__$7 = "data-v-52c9c268";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$7 = undefined; const __vue_module_identifier__$7 = undefined;
/* functional template */ /* functional template */
@ -59471,7 +59489,7 @@ __vue_render__$6._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$6 = undefined; const __vue_inject_styles__$6 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$6 = "data-v-0090ea12"; const __vue_scope_id__$6 = "data-v-5f6e490d";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$6 = undefined; const __vue_module_identifier__$6 = undefined;
/* functional template */ /* functional template */
@ -59693,7 +59711,7 @@ __vue_render__$5._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$5 = undefined; const __vue_inject_styles__$5 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$5 = "data-v-6f63c87c"; const __vue_scope_id__$5 = "data-v-68a2506c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$5 = undefined; const __vue_module_identifier__$5 = undefined;
/* functional template */ /* functional template */
@ -59921,7 +59939,7 @@ __vue_render__$4._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$4 = undefined; const __vue_inject_styles__$4 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$4 = "data-v-4b5e4385"; const __vue_scope_id__$4 = "data-v-189a191b";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$4 = undefined; const __vue_module_identifier__$4 = undefined;
/* functional template */ /* functional template */
@ -60153,7 +60171,7 @@ __vue_render__$3._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$3 = undefined; const __vue_inject_styles__$3 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$3 = "data-v-4ffd4964"; const __vue_scope_id__$3 = "data-v-57c25178";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$3 = undefined; const __vue_module_identifier__$3 = undefined;
/* functional template */ /* functional template */
@ -60385,7 +60403,7 @@ __vue_render__$2._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$2 = undefined; const __vue_inject_styles__$2 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$2 = "data-v-4be6a721"; const __vue_scope_id__$2 = "data-v-3346546a";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$2 = undefined; const __vue_module_identifier__$2 = undefined;
/* functional template */ /* functional template */
@ -60619,7 +60637,7 @@ __vue_render__$1._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$1 = undefined; const __vue_inject_styles__$1 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$1 = "data-v-0df3b9e5"; const __vue_scope_id__$1 = "data-v-2bd1868f";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$1 = undefined; const __vue_module_identifier__$1 = undefined;
/* functional template */ /* functional template */
@ -60857,7 +60875,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-e60d723c"; const __vue_scope_id__ = "data-v-284855f8";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

@ -1,21 +1,27 @@
.title-text[data-v-fc425bf8] {
background-color: var(--background-color) !important;
}
.title-left[data-v-fc425bf8] {
border-color: var(--background-color) !important;
color: var(--background-color) !important;
}
/*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=rectangle.vue.map */ /*# sourceMappingURL=rectangle.vue.map */
/*# sourceMappingURL=first.vue.map */ /*# sourceMappingURL=semicircle.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */ /*# sourceMappingURL=sixth.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=Yellowtheme6.vue.map */
.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;
}
/*# sourceMappingURL=third.vue.map */
/*# sourceMappingURL=Yellowtheme5.vue.map */ /*# sourceMappingURL=Yellowtheme5.vue.map */
@ -24,150 +30,152 @@
/*# sourceMappingURL=fifteen.vue.map */ /*# sourceMappingURL=fifteen.vue.map */
/*# sourceMappingURL=twelfth.vue.map */ /*# sourceMappingURL=first.vue.map */
/*# sourceMappingURL=sixth.vue.map */
/*# sourceMappingURL=semicircle.vue.map */
/*# sourceMappingURL=thirteenth.vue.map */
/*# sourceMappingURL=Yellowtheme4.vue.map */ /*# sourceMappingURL=Yellowtheme4.vue.map */
/*# sourceMappingURL=Yellowtheme2.vue.map */
/*# sourceMappingURL=Greentheme2.vue.map */ /*# sourceMappingURL=Greentheme2.vue.map */
/*# sourceMappingURL=Greentheme1.vue.map */ /*# sourceMappingURL=Greentheme1.vue.map */
/*# sourceMappingURL=Yellowtheme6.vue.map */ /*# sourceMappingURL=twelfth.vue.map */
/*# sourceMappingURL=Yellowtheme1.vue.map */
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=fourteen.vue.map */
/*# sourceMappingURL=Greentheme6.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */
/*# sourceMappingURL=Greentheme4.vue.map */ /*# sourceMappingURL=Greentheme4.vue.map */
/*# sourceMappingURL=nineteen.vue.map */
/*# sourceMappingURL=Knowledge.vue.map */ /*# sourceMappingURL=Knowledge.vue.map */
/*# sourceMappingURL=hexagon.vue.map */ /*# sourceMappingURL=Greentheme6.vue.map */
/*# sourceMappingURL=seventeen.vue.map */
/*# sourceMappingURL=triangle.vue.map */
/*# sourceMappingURL=Redtheme1.vue.map */
/*# sourceMappingURL=fifth.vue.map */ /*# sourceMappingURL=fifth.vue.map */
/*# sourceMappingURL=Thirtynine.vue.map */ /*# sourceMappingURL=hexagon.vue.map */
/*# sourceMappingURL=thirteenth.vue.map */
/*# sourceMappingURL=nineteen.vue.map */
/*# sourceMappingURL=sixteen.vue.map */
/*# sourceMappingURL=Redtheme4.vue.map */ /*# sourceMappingURL=Redtheme4.vue.map */
/*# sourceMappingURL=seventeen.vue.map */
/*# sourceMappingURL=Greentheme3.vue.map */
/*# sourceMappingURL=Redtheme1.vue.map */
/*# sourceMappingURL=fourteen.vue.map */
/*# sourceMappingURL=Thirtyseven.vue.map */
/*# sourceMappingURL=Thirtytwo.vue.map */
/*# sourceMappingURL=Redtheme2.vue.map */ /*# sourceMappingURL=Redtheme2.vue.map */
/*# sourceMappingURL=Thirtythree.vue.map */ /*# sourceMappingURL=Thirtythree.vue.map */
/*# sourceMappingURL=Thirtyone.vue.map */
/*# sourceMappingURL=Thirtyfour.vue.map */ /*# sourceMappingURL=Thirtyfour.vue.map */
/*# sourceMappingURL=Thirtyfive.vue.map */ /*# sourceMappingURL=triangle.vue.map */
/*# sourceMappingURL=Thirtytwo.vue.map */
/*# sourceMappingURL=Redtheme3.vue.map */ /*# sourceMappingURL=Redtheme3.vue.map */
/*# sourceMappingURL=Thirtyone.vue.map */ /*# sourceMappingURL=titleLogging.vue.map */
/*# sourceMappingURL=Sevenpagefour.vue.map */
/*# sourceMappingURL=Thirtyseven.vue.map */
/*# sourceMappingURL=Thirtyeight.vue.map */
/*# sourceMappingURL=titleQuestion.vue.map */
.title-bgimg[data-v-f86c7abc] {
background-image: url(../style/title-text-bgimg.png);
}
/*# sourceMappingURL=Sevenpageone.vue.map */
/*# sourceMappingURL=BuleRectangleTwo.vue.map */
/*# sourceMappingURL=titleCrane.vue.map */
/*# sourceMappingURL=BuleRectangle.vue.map */ /*# sourceMappingURL=BuleRectangle.vue.map */
/*# sourceMappingURL=Thirtyfive.vue.map */
/*# sourceMappingURL=titleQuestion.vue.map */
/*# sourceMappingURL=Thirtynine.vue.map */
/*# sourceMappingURL=Thirtyeight.vue.map */
/*# sourceMappingURL=Thirtysix.vue.map */ /*# sourceMappingURL=Thirtysix.vue.map */
/*# sourceMappingURL=titleText.vue.map */ /*# sourceMappingURL=titleCrane.vue.map */
/*# sourceMappingURL=titleTearcher.vue.map */ /*# sourceMappingURL=titleTearcher.vue.map */
/*# sourceMappingURL=Forty.vue.map */
/*# sourceMappingURL=titleLight.vue.map */
/*# sourceMappingURL=titleLogging.vue.map */
/*# sourceMappingURL=Sevenpagefive.vue.map */
/*# sourceMappingURL=Sevenpagetwo.vue.map */ /*# sourceMappingURL=Sevenpagetwo.vue.map */
/*# sourceMappingURL=Sevenpagethree.vue.map */
/*# sourceMappingURL=BuleRectangleTwo.vue.map */
/*# sourceMappingURL=Forty.vue.map */
/*# sourceMappingURL=Fortyone.vue.map */ /*# sourceMappingURL=Fortyone.vue.map */
/*# sourceMappingURL=Sevenpagethree.vue.map */ /*# sourceMappingURL=titleText.vue.map */
/*# sourceMappingURL=titleLight.vue.map */
/*# sourceMappingURL=Sevenpagefive.vue.map */
/*# sourceMappingURL=Sevenpagefour.vue.map */
.title-bgimg[data-v-16943e38] {
background-image: url(../style/title-text-bgimg.png);
}
/*# sourceMappingURL=Sevenpageone.vue.map */
.xml-text-h5[data-v-4258792c] {
}
.xml-text-pc[data-v-4258792c] {
}
.xml-text-h5[data-v-4258792c] {
}
.xml-text-h5 .inline-audio-wrap, .xml-text-h5 .inline-audio-wrap,
.xml-text-h5 .inline-link-wrap { .xml-text-h5 .inline-link-wrap {
align-items: center; align-items: center;
@ -239,14 +247,6 @@
/*# sourceMappingURL=XmlText.vue.map */ /*# sourceMappingURL=XmlText.vue.map */
.xml-text-h5[data-v-483bfd20] {
}
.xml-text-pc[data-v-483bfd20] {
}
.xml-text-h5[data-v-483bfd20] {
}
/*# sourceMappingURL=XmlTextDialog.vue.map */ /*# sourceMappingURL=XmlTextDialog.vue.map */

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
import crypto from 'crypto'; import crypto from 'crypto';
@ -9364,7 +9364,7 @@ __vue_render__$W._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$V = undefined; const __vue_inject_styles__$V = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$V = "data-v-0781f4c2"; const __vue_scope_id__$V = "data-v-6f58d350";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$V = undefined; const __vue_module_identifier__$V = undefined;
/* functional template */ /* functional template */
@ -9436,7 +9436,7 @@ class MagicLink extends HTMLElement {
} }
.magic-link { .magic-link {
display: inline; display: inline;
// font-size:16px; font-size:16px;
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
text-align: left; text-align: left;
@ -48758,8 +48758,8 @@ var script$S = {
from: 'getResourceBasisPath', from: 'getResourceBasisPath',
default: () => () => '' default: () => () => ''
}, },
getSysEvn: { getSysEnv: {
from: 'getSysEvn', from: 'getSysEnv',
default: () => () => {} default: () => () => {}
}, },
getIsShowAi: { getIsShowAi: {
@ -48778,7 +48778,6 @@ var script$S = {
dataName: this.blockDataName, dataName: this.blockDataName,
data: this.pBlockData, data: this.pBlockData,
graphLinks: this.currentRule.data?.graphLinks || [], graphLinks: this.currentRule.data?.graphLinks || [],
pureTextComponent: this.isPureTextComponent,
dataIndex: this.dataIndex, dataIndex: this.dataIndex,
blockId: this.blockId blockId: this.blockId
}; };
@ -48809,7 +48808,7 @@ var script$S = {
return this.getKeyboardShow(); return this.getKeyboardShow();
}, },
evn() { evn() {
return this.getSysEvn() || { return this.getSysEnv() || {
tippy: {} tippy: {}
}; };
}, },
@ -48898,7 +48897,7 @@ var script$S = {
let _this = this; let _this = this;
this.blockData = this.pBlockData; this.blockData = this.pBlockData;
if (!this.blockData.html) { if (!this.blockData.html) {
this.blockData.html = '<span>暂无内容1</span>'; this.blockData.html = '<span>暂无内容</span>';
} }
`#${this.blockId} .richtext-reset-wrapper--view`; `#${this.blockId} .richtext-reset-wrapper--view`;
let mceMagicLinkRegistered = window.customElements?.get('magic-link'); let mceMagicLinkRegistered = window.customElements?.get('magic-link');
@ -48916,18 +48915,37 @@ var script$S = {
let title = target.attr('alt'); let title = target.attr('alt');
let src = target.attr('src'); let src = target.attr('src');
let notallowgallery = target.attr('notallowgallery'); let notallowgallery = target.attr('notallowgallery');
if (notallowgallery) { let imgType = target.attr('data-img-type');
return; if (!notallowgallery) {
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
} else if (imgType == 3) {
//问Ai
let aiType = target.attr('data-ai-type');
let problem = target.attr('data-problem');
_this.$EventBus.$emit('openAiParsing', {
isOpen: true,
//是否直接打开阅读器的Ai
aiType,
text: problem
});
} }
_this.$hevueImgPreview({
multiple: true,
nowImgIndex: 0,
imgList: [{
url: src,
title: title
}]
});
}); });
const getFileUrl = url => {
if (url) {
if (url.indexOf('./') === -1) {
return url;
}
return `${_this.resourceBasisPath}${url.split('./')[1]}`;
}
return '';
};
jquery(containerSelector).on('click', 'magic-link', function (e) { jquery(containerSelector).on('click', 'magic-link', function (e) {
let { let {
plaintext, plaintext,
@ -48950,7 +48968,7 @@ var script$S = {
multiple: true, multiple: true,
nowImgIndex: 0, nowImgIndex: 0,
imgList: [{ imgList: [{
url: content, url: getFileUrl(content),
title: plaintext title: plaintext
}] }]
}); });
@ -48960,7 +48978,7 @@ var script$S = {
_this.$EventBus.$emit('handleMagicLinkAudioPlay', { _this.$EventBus.$emit('handleMagicLinkAudioPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -48974,7 +48992,7 @@ var script$S = {
_this.$EventBus.$emit('handleMagicLinkVideoPlay', { _this.$EventBus.$emit('handleMagicLinkVideoPlay', {
plaintext, plaintext,
title, title,
content, content: getFileUrl(content),
type, type,
isPlaying, isPlaying,
targetId: e.target.id, targetId: e.target.id,
@ -51054,7 +51072,7 @@ __vue_render__$S._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$S = undefined; const __vue_inject_styles__$S = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$S = "data-v-483bfd20"; const __vue_scope_id__$S = "data-v-4258792c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$S = undefined; const __vue_module_identifier__$S = undefined;
/* functional template */ /* functional template */
@ -51405,7 +51423,7 @@ __vue_render__$R._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$R = undefined; const __vue_inject_styles__$R = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$R = "data-v-fc425bf8"; const __vue_scope_id__$R = "data-v-14dffda4";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$R = undefined; const __vue_module_identifier__$R = undefined;
/* functional template */ /* functional template */
@ -51627,7 +51645,7 @@ __vue_render__$Q._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$Q = undefined; const __vue_inject_styles__$Q = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$Q = "data-v-4da3c3c2"; const __vue_scope_id__$Q = "data-v-236ee035";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$Q = undefined; const __vue_module_identifier__$Q = undefined;
/* functional template */ /* functional template */
@ -51897,7 +51915,7 @@ __vue_render__$P._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$P = undefined; const __vue_inject_styles__$P = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$P = "data-v-e9ffa2e4"; const __vue_scope_id__$P = "data-v-287a88b8";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$P = undefined; const __vue_module_identifier__$P = undefined;
/* functional template */ /* functional template */
@ -52118,7 +52136,7 @@ __vue_render__$O._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$O = undefined; const __vue_inject_styles__$O = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$O = "data-v-78033d5c"; const __vue_scope_id__$O = "data-v-a09b1208";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$O = undefined; const __vue_module_identifier__$O = undefined;
/* functional template */ /* functional template */
@ -52339,7 +52357,7 @@ __vue_render__$N._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$N = undefined; const __vue_inject_styles__$N = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$N = "data-v-5d501919"; const __vue_scope_id__$N = "data-v-530cf0c3";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$N = undefined; const __vue_module_identifier__$N = undefined;
/* functional template */ /* functional template */
@ -52598,7 +52616,7 @@ __vue_render__$M._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$M = undefined; const __vue_inject_styles__$M = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$M = "data-v-241e30e3"; const __vue_scope_id__$M = "data-v-365aa88d";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$M = undefined; const __vue_module_identifier__$M = undefined;
/* functional template */ /* functional template */
@ -52820,7 +52838,7 @@ __vue_render__$L._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$L = undefined; const __vue_inject_styles__$L = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$L = "data-v-4571f88d"; const __vue_scope_id__$L = "data-v-2ccaa237";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$L = undefined; const __vue_module_identifier__$L = undefined;
/* functional template */ /* functional template */
@ -53040,7 +53058,7 @@ __vue_render__$K._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$K = undefined; const __vue_inject_styles__$K = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$K = "data-v-4e95bbf2"; const __vue_scope_id__$K = "data-v-77a57b9d";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$K = undefined; const __vue_module_identifier__$K = undefined;
/* functional template */ /* functional template */
@ -53264,7 +53282,7 @@ __vue_render__$J._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$J = undefined; const __vue_inject_styles__$J = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$J = "data-v-e21be426"; const __vue_scope_id__$J = "data-v-52282817";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$J = undefined; const __vue_module_identifier__$J = undefined;
/* functional template */ /* functional template */
@ -53488,7 +53506,7 @@ __vue_render__$I._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$I = undefined; const __vue_inject_styles__$I = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$I = "data-v-5a5fa817"; const __vue_scope_id__$I = "data-v-01df3a41";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$I = undefined; const __vue_module_identifier__$I = undefined;
/* functional template */ /* functional template */
@ -53735,7 +53753,7 @@ __vue_render__$H._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$H = undefined; const __vue_inject_styles__$H = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$H = "data-v-6d677d76"; const __vue_scope_id__$H = "data-v-ecf0144a";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$H = undefined; const __vue_module_identifier__$H = undefined;
/* functional template */ /* functional template */
@ -53986,7 +54004,7 @@ __vue_render__$G._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$G = undefined; const __vue_inject_styles__$G = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$G = "data-v-651ffbb6"; const __vue_scope_id__$G = "data-v-b9e73b40";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$G = undefined; const __vue_module_identifier__$G = undefined;
/* functional template */ /* functional template */
@ -54256,7 +54274,7 @@ __vue_render__$F._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$F = undefined; const __vue_inject_styles__$F = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$F = "data-v-497217ac"; const __vue_scope_id__$F = "data-v-3c3dd07c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$F = undefined; const __vue_module_identifier__$F = undefined;
/* functional template */ /* functional template */
@ -54513,7 +54531,7 @@ __vue_render__$E._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$E = undefined; const __vue_inject_styles__$E = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$E = "data-v-1c3b2da8"; const __vue_scope_id__$E = "data-v-5bb43fc2";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$E = undefined; const __vue_module_identifier__$E = undefined;
/* functional template */ /* functional template */
@ -54780,7 +54798,7 @@ __vue_render__$D._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$D = undefined; const __vue_inject_styles__$D = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$D = "data-v-9b6ab440"; const __vue_scope_id__$D = "data-v-e0f4b3ec";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$D = undefined; const __vue_module_identifier__$D = undefined;
/* functional template */ /* functional template */
@ -55002,7 +55020,7 @@ __vue_render__$C._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$C = undefined; const __vue_inject_styles__$C = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$C = "data-v-9f587188"; const __vue_scope_id__$C = "data-v-2428ae66";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$C = undefined; const __vue_module_identifier__$C = undefined;
/* functional template */ /* functional template */
@ -55226,7 +55244,7 @@ __vue_render__$B._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$B = undefined; const __vue_inject_styles__$B = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$B = "data-v-3706a5af"; const __vue_scope_id__$B = "data-v-4964d0d9";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$B = undefined; const __vue_module_identifier__$B = undefined;
/* functional template */ /* functional template */
@ -55459,7 +55477,7 @@ __vue_render__$A._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$A = undefined; const __vue_inject_styles__$A = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$A = "data-v-22e49d80"; const __vue_scope_id__$A = "data-v-6fcbabaa";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$A = undefined; const __vue_module_identifier__$A = undefined;
/* functional template */ /* functional template */
@ -55678,7 +55696,7 @@ __vue_render__$z._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$z = undefined; const __vue_inject_styles__$z = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$z = "data-v-ad2f3cdc"; const __vue_scope_id__$z = "data-v-f4944fb0";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$z = undefined; const __vue_module_identifier__$z = undefined;
/* functional template */ /* functional template */
@ -55899,7 +55917,7 @@ __vue_render__$y._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$y = undefined; const __vue_inject_styles__$y = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$y = "data-v-7b3ea4f8"; const __vue_scope_id__$y = "data-v-0a2fb09a";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$y = undefined; const __vue_module_identifier__$y = undefined;
/* functional template */ /* functional template */
@ -56118,7 +56136,7 @@ __vue_render__$x._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$x = undefined; const __vue_inject_styles__$x = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$x = "data-v-0fcfd9f2"; const __vue_scope_id__$x = "data-v-abad1a9e";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$x = undefined; const __vue_module_identifier__$x = undefined;
/* functional template */ /* functional template */
@ -56371,7 +56389,7 @@ __vue_render__$w._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$w = undefined; const __vue_inject_styles__$w = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$w = "data-v-70218cb9"; const __vue_scope_id__$w = "data-v-7e8d373a";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$w = undefined; const __vue_module_identifier__$w = undefined;
/* functional template */ /* functional template */
@ -56593,7 +56611,7 @@ __vue_render__$v._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$v = undefined; const __vue_inject_styles__$v = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$v = "data-v-92102cf2"; const __vue_scope_id__$v = "data-v-dd1a399e";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$v = undefined; const __vue_module_identifier__$v = undefined;
/* functional template */ /* functional template */
@ -56853,7 +56871,7 @@ __vue_render__$u._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$u = undefined; const __vue_inject_styles__$u = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$u = "data-v-721af766"; const __vue_scope_id__$u = "data-v-5e734877";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$u = undefined; const __vue_module_identifier__$u = undefined;
/* functional template */ /* functional template */
@ -57078,7 +57096,7 @@ __vue_render__$t._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$t = undefined; const __vue_inject_styles__$t = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$t = "data-v-5f4bc581"; const __vue_scope_id__$t = "data-v-48665bd2";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$t = undefined; const __vue_module_identifier__$t = undefined;
/* functional template */ /* functional template */
@ -57299,7 +57317,7 @@ __vue_render__$s._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$s = undefined; const __vue_inject_styles__$s = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$s = "data-v-0829f2dc"; const __vue_scope_id__$s = "data-v-7b621006";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$s = undefined; const __vue_module_identifier__$s = undefined;
/* functional template */ /* functional template */
@ -57518,7 +57536,7 @@ __vue_render__$r._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$r = undefined; const __vue_inject_styles__$r = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$r = "data-v-31db42b8"; const __vue_scope_id__$r = "data-v-fd63433c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$r = undefined; const __vue_module_identifier__$r = undefined;
/* functional template */ /* functional template */
@ -57735,7 +57753,7 @@ __vue_render__$q._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$q = undefined; const __vue_inject_styles__$q = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$q = "data-v-e008fe9c"; const __vue_scope_id__$q = "data-v-7cb64bdc";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$q = undefined; const __vue_module_identifier__$q = undefined;
/* functional template */ /* functional template */
@ -57993,7 +58011,7 @@ __vue_render__$p._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$p = undefined; const __vue_inject_styles__$p = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$p = "data-v-4ed048f0"; const __vue_scope_id__$p = "data-v-5372169c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$p = undefined; const __vue_module_identifier__$p = undefined;
/* functional template */ /* functional template */
@ -58215,7 +58233,7 @@ __vue_render__$o._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$o = undefined; const __vue_inject_styles__$o = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$o = "data-v-8aea63f6"; const __vue_scope_id__$o = "data-v-2e411e2f";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$o = undefined; const __vue_module_identifier__$o = undefined;
/* functional template */ /* functional template */
@ -58436,7 +58454,7 @@ __vue_render__$n._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$n = undefined; const __vue_inject_styles__$n = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$n = "data-v-050c48db"; const __vue_scope_id__$n = "data-v-dda94bf6";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$n = undefined; const __vue_module_identifier__$n = undefined;
/* functional template */ /* functional template */
@ -58657,7 +58675,7 @@ __vue_render__$m._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$m = undefined; const __vue_inject_styles__$m = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$m = "data-v-41457975"; const __vue_scope_id__$m = "data-v-6536eac2";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$m = undefined; const __vue_module_identifier__$m = undefined;
/* functional template */ /* functional template */
@ -58882,7 +58900,7 @@ __vue_render__$l._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$l = undefined; const __vue_inject_styles__$l = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$l = "data-v-695e65fb"; const __vue_scope_id__$l = "data-v-16fa0d25";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$l = undefined; const __vue_module_identifier__$l = undefined;
/* functional template */ /* functional template */
@ -59103,7 +59121,7 @@ __vue_render__$k._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$k = undefined; const __vue_inject_styles__$k = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$k = "data-v-56babd63"; const __vue_scope_id__$k = "data-v-6a0923f9";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$k = undefined; const __vue_module_identifier__$k = undefined;
/* functional template */ /* functional template */
@ -59369,7 +59387,7 @@ __vue_render__$j._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$j = undefined; const __vue_inject_styles__$j = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$j = "data-v-0552a4c6"; const __vue_scope_id__$j = "data-v-e71cd272";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$j = undefined; const __vue_module_identifier__$j = undefined;
/* functional template */ /* functional template */
@ -59594,7 +59612,7 @@ __vue_render__$i._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$i = undefined; const __vue_inject_styles__$i = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$i = "data-v-156ac530"; const __vue_scope_id__$i = "data-v-5c76cc74";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$i = undefined; const __vue_module_identifier__$i = undefined;
/* functional template */ /* functional template */
@ -59819,7 +59837,7 @@ __vue_render__$h._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$h = undefined; const __vue_inject_styles__$h = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$h = "data-v-4f772f9e"; const __vue_scope_id__$h = "data-v-54541772";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$h = undefined; const __vue_module_identifier__$h = undefined;
/* functional template */ /* functional template */
@ -60040,7 +60058,7 @@ __vue_render__$g._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$g = undefined; const __vue_inject_styles__$g = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$g = "data-v-4f924f9c"; const __vue_scope_id__$g = "data-v-ee6a3c48";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$g = undefined; const __vue_module_identifier__$g = undefined;
/* functional template */ /* functional template */
@ -60310,7 +60328,7 @@ __vue_render__$f._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$f = undefined; const __vue_inject_styles__$f = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$f = "data-v-676c75d5"; const __vue_scope_id__$f = "data-v-e4f9bb02";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$f = undefined; const __vue_module_identifier__$f = undefined;
/* functional template */ /* functional template */
@ -60633,7 +60651,7 @@ __vue_render__$e._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$e = undefined; const __vue_inject_styles__$e = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$e = "data-v-211b49ac"; const __vue_scope_id__$e = "data-v-49223b7c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$e = undefined; const __vue_module_identifier__$e = undefined;
/* functional template */ /* functional template */
@ -60911,7 +60929,7 @@ __vue_render__$d._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$d = undefined; const __vue_inject_styles__$d = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$d = "data-v-32fbd373"; const __vue_scope_id__$d = "data-v-31126d09";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$d = undefined; const __vue_module_identifier__$d = undefined;
/* functional template */ /* functional template */
@ -61152,7 +61170,7 @@ __vue_render__$c._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$c = undefined; const __vue_inject_styles__$c = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$c = "data-v-1df723aa"; const __vue_scope_id__$c = "data-v-109de780";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$c = undefined; const __vue_module_identifier__$c = undefined;
/* functional template */ /* functional template */
@ -61401,7 +61419,7 @@ __vue_render__$b._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$b = undefined; const __vue_inject_styles__$b = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$b = "data-v-ebf9924c"; const __vue_scope_id__$b = "data-v-2da71084";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$b = undefined; const __vue_module_identifier__$b = undefined;
/* functional template */ /* functional template */
@ -61650,7 +61668,7 @@ __vue_render__$a._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$a = undefined; const __vue_inject_styles__$a = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$a = "data-v-89d2cb5c"; const __vue_scope_id__$a = "data-v-e8bf5730";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$a = undefined; const __vue_module_identifier__$a = undefined;
/* functional template */ /* functional template */
@ -61899,7 +61917,7 @@ __vue_render__$9._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$9 = undefined; const __vue_inject_styles__$9 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$9 = "data-v-4fd8a33c"; const __vue_scope_id__$9 = "data-v-18c1370c";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$9 = undefined; const __vue_module_identifier__$9 = undefined;
/* functional template */ /* functional template */
@ -62148,7 +62166,7 @@ __vue_render__$8._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$8 = undefined; const __vue_inject_styles__$8 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$8 = "data-v-88974e94"; const __vue_scope_id__$8 = "data-v-5f583260";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$8 = undefined; const __vue_module_identifier__$8 = undefined;
/* functional template */ /* functional template */
@ -62397,7 +62415,7 @@ __vue_render__$7._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$7 = undefined; const __vue_inject_styles__$7 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$7 = "data-v-5afb5048"; const __vue_scope_id__$7 = "data-v-2b850a5e";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$7 = undefined; const __vue_module_identifier__$7 = undefined;
/* functional template */ /* functional template */
@ -62667,7 +62685,7 @@ __vue_render__$6._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$6 = undefined; const __vue_inject_styles__$6 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$6 = "data-v-f86c7abc"; const __vue_scope_id__$6 = "data-v-16943e38";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$6 = undefined; const __vue_module_identifier__$6 = undefined;
/* functional template */ /* functional template */
@ -62961,7 +62979,7 @@ __vue_render__$5._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$5 = undefined; const __vue_inject_styles__$5 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$5 = "data-v-40c0d558"; const __vue_scope_id__$5 = "data-v-83fc3204";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$5 = undefined; const __vue_module_identifier__$5 = undefined;
/* functional template */ /* functional template */
@ -63264,7 +63282,7 @@ __vue_render__$4._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$4 = undefined; const __vue_inject_styles__$4 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$4 = "data-v-085d215a"; const __vue_scope_id__$4 = "data-v-49383e20";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$4 = undefined; const __vue_module_identifier__$4 = undefined;
/* functional template */ /* functional template */
@ -63550,7 +63568,7 @@ __vue_render__$3._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$3 = undefined; const __vue_inject_styles__$3 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$3 = "data-v-1313a7e3"; const __vue_scope_id__$3 = "data-v-c9cc7c0e";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$3 = undefined; const __vue_module_identifier__$3 = undefined;
/* functional template */ /* functional template */
@ -63866,7 +63884,7 @@ __vue_render__$2._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$2 = undefined; const __vue_inject_styles__$2 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$2 = "data-v-ad05f066"; const __vue_scope_id__$2 = "data-v-ed7e1f3a";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$2 = undefined; const __vue_module_identifier__$2 = undefined;
/* functional template */ /* functional template */
@ -64121,7 +64139,7 @@ __vue_render__$1._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$1 = undefined; const __vue_inject_styles__$1 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$1 = "data-v-553350c4"; const __vue_scope_id__$1 = "data-v-68d58234";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$1 = undefined; const __vue_module_identifier__$1 = undefined;
/* functional template */ /* functional template */
@ -64372,7 +64390,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-42fe8034"; const __vue_scope_id__ = "data-v-c2c03408";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

@ -1 +1 @@
.title-text[data-v-fc425bf8]{background-color:var(--background-color)!important}.title-left[data-v-fc425bf8]{border-color:var(--background-color)!important;color:var(--background-color)!important}.title-bgimg[data-v-f86c7abc]{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-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}

View File

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

View File

@ -1,6 +1,6 @@
/* /*
* XmlDigitalTeaching v0.0.1 * XmlDigitalTeaching v0.0.1
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile * Copyright ©Tue May 13 2025 14:46:23 GMT+0800 (中国标准时间) smile
* Released under the ISC License. * Released under the ISC License.
*/ */
// //
@ -14776,7 +14776,7 @@ __vue_render__$1._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__$1 = undefined; const __vue_inject_styles__$1 = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__$1 = "data-v-ddfe855e"; const __vue_scope_id__$1 = "data-v-6fcfaafb";
/* module identifier */ /* module identifier */
const __vue_module_identifier__$1 = undefined; const __vue_module_identifier__$1 = undefined;
/* functional template */ /* functional template */
@ -14987,7 +14987,7 @@ __vue_render__._withStripped = true;
/* style */ /* style */
const __vue_inject_styles__ = undefined; const __vue_inject_styles__ = undefined;
/* scoped */ /* scoped */
const __vue_scope_id__ = "data-v-a275a088"; const __vue_scope_id__ = "data-v-4645f3e6";
/* module identifier */ /* module identifier */
const __vue_module_identifier__ = undefined; const __vue_module_identifier__ = undefined;
/* functional template */ /* functional template */

View File

@ -1 +1 @@
.xml-video-container-pdf[data-v-a275a088]{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-a275a088]{position:absolute;top:0;max-width:100%;max-height:100%}.xml-video-container-pdf .play[data-v-a275a088]{position:absolute;top:45%;left:45%;width:10%;background:#bebebe;border-radius:50%} .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%}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because it is too large Load Diff

View File

@ -8,11 +8,11 @@ var host ="http://www.xinsiketang.com"
host ="" host =""
var prefix = '/app_dev.php/api'; var prefix = '/app_dev.php/api';
if (1) //线上黄精 // if (1) //线上黄精
{ // {
prefix =host+'/api'; // prefix =host+'/api';
} // }
// 书籍信息 // 书籍信息
@ -282,6 +282,22 @@ var study = {
data: params, data: params,
}) })
}, },
// 章节情况
chapterInfo: (params) =>{
return request({
url: `${prefix}/class/situation/single/chapter`,
method: 'GET',
data: params,
})
},
// 更新资源学习情况
resouceUpdate: (params) =>{
return request({
url: `${prefix}/class/situation/resource/update`,
method: 'POST',
data: params,
})
},
// 更新学习情况 // 更新学习情况
update :(params) =>{ update :(params) =>{

View File

@ -33,10 +33,13 @@
:userInfoparms = "userInfo" :userInfoparms = "userInfo"
:teacherDateclass = "classList" :teacherDateclass = "classList"
:teacherData = "teacherData" :teacherData = "teacherData"
:teacherDate = "teacherData"
:studentData = "studentData" :studentData = "studentData"
:robotData = "robotData" :robotData = "robotData"
:linkOpenLabel = "true" :linkOpenLabel = "true"
:isOperation = "isOperation" :isOperation = "isOperation"
:generalAPI="generalAPI"
robotName = "小新" robotName = "小新"
@updateReadLocation="updateReadLocation" @updateReadLocation="updateReadLocation"
@addNote="addNote" @addNote="addNote"
@ -153,6 +156,11 @@ export default {
list: [] list: []
} }
}, },
generalAPI:{
isCatalogStudent:true,//
getCatalogStudent: e => this.getCatalogStudent(e),
},
pkid:"",
setting: {}, setting: {},
userInfo:{}, userInfo:{},
userId:{}, userId:{},
@ -181,7 +189,7 @@ export default {
// document.title = ''; // document.title = '';
debugger
this.bookId = this.$route.query.bookId this.bookId = this.$route.query.bookId
@ -239,7 +247,7 @@ export default {
async mounted(){ async mounted(){
debugger
var apikey = getStore("apikey") var apikey = getStore("apikey")
// if(!apikey){ // if(!apikey){
@ -318,7 +326,7 @@ export default {
var abc = await bookApi.bookinfo.request_info({bookId: this.bookId}) var abc = await bookApi.bookinfo.request_info({bookId: this.bookId})
debugger
// abc.isBuy = 1 // abc.isBuy = 1
if (abc){ if (abc){
if (abc.isBuy == 0) { if (abc.isBuy == 0) {
@ -328,6 +336,7 @@ export default {
this.isTrial = false this.isTrial = false
} }
} }
this.isTrial = false
@ -453,23 +462,23 @@ export default {
if (res.length>0){ if (res.length>0){
res = res[0] res = res[0]
this.studentData.learningProgress =res.learningProgress // this.studentData.learningProgress =res.learningProgress
this.studentData.learnTime =res.learnTime // this.studentData.learnTime =res.learnTime
this.studentData.learnNum =res.learnNum // this.studentData.learnNum =res.learnNum
this.studentData.totalLearnTime = res.totalLearnTime // this.studentData.totalLearnTime = res.totalLearnTime
this.studentData.imgLearnNum = res.imgLearnNum // this.studentData.imgLearnNum = res.imgLearnNum
this.studentData.audioLearnNum = res.audioLearnNum // this.studentData.audioLearnNum = res.audioLearnNum
this.studentData.videoLearnNum = res.videoLearnNum // this.studentData.videoLearnNum = res.videoLearnNum
this.studentData.videoLearnTime = res.videoLearnTime // this.studentData.videoLearnTime = res.videoLearnTime
this.studentData.audioLearnTime = res.audioLearnTime // this.studentData.audioLearnTime = res.audioLearnTime
this.studentData.answersNum = res.answersNum // this.studentData.answersNum = res.answersNum
// noteNum:'',// // noteNum:'',//
// bookmarkNum:'',// // bookmarkNum:'',//
// lineationNum:''//线 // lineationNum:''//线
this.studentData = {...res}
} }
this.studentData.noteNum= this.data.notes.list.length this.studentData.noteNum= this.data.notes.list.length
@ -480,6 +489,45 @@ export default {
}, },
/**
* e.chapterId 章节id
*/
getCatalogStudent(e) {
console.log(e)
return new Promise((resolve, reject) => {
// let data = {
// chapterId: '0', //id
// studyTime: 0, //
// studyProgress: '100', //
// testProgress: '0', //
// accuracy: '', //
// }
bookApi.study.chapterInfo({
userId: this.userId,
bookId: this.bookId,
chapterId:e.id
}).then(res=>{
// resolve(res[0])
// debugger
let data = { ...res[0]}
console.log(data,);
resolve(data)
}).catch(error=>{
console.log(error)
})
//
// setTimeout(() => {
// resolve({ data })
// }, 1000)
})
},
async clickToRespond(data){ async clickToRespond(data){
@ -701,7 +749,7 @@ export default {
}, },
// //
updateReadLocation(newLocation) { async updateReadLocation(newLocation) {
console.log('我要更新阅读进度了'+newLocation) console.log('我要更新阅读进度了'+newLocation)
@ -712,6 +760,7 @@ export default {
localStorage.setItem(this.textBookData.id, newLocation.location) localStorage.setItem(this.textBookData.id, newLocation.location)
var params ={ var params ={
chapterId: newLocation.chapterId,
bookId:this.bookId, bookId:this.bookId,
userId: this.userId, userId: this.userId,
classId: this.classId, classId: this.classId,
@ -719,7 +768,10 @@ export default {
// learnNum:1, // learnNum:1,
learningProgress:newLocation.schedule learningProgress:newLocation.schedule
} }
bookApi.study.update({data:JSON.stringify(params)})
var res = await bookApi.study.update({data:JSON.stringify(params)})
this.pkid = res.pkid
}, },
// //
@ -750,10 +802,13 @@ export default {
async learningStatistics(e){ async learningStatistics(e){
var params ={ var params ={
bookId:this.bookId, bookId:this.bookId,
userId: this.userId, userId: this.userId,
classId: this.classId, classId: this.classId,
xmlCompRef: e.xmlCompRef,
chapterId: e.chapterId,
lastAt:Math.floor(Date.now() / 1000), lastAt:Math.floor(Date.now() / 1000),
// learnNum:1 // learnNum:1
} }
@ -781,7 +836,14 @@ export default {
params.answersNum = 1 params.answersNum = 1
} }
await bookApi.study.update({data:JSON.stringify(params)}) params.type = e.type
params.pkid = this.pkid
if (e.type == "image" || e.type == "audio" || e.type == "video" || e.type == "question"){
await bookApi.study.resouceUpdate({data:JSON.stringify(params)})
}else{
await bookApi.study.update({data:JSON.stringify(params)})
}
await this.getUerData() await this.getUerData()