cyc
This commit is contained in:
parent
1fabe14d62
commit
8f2a2417f3
@ -1,14 +1,14 @@
|
||||
.catalog-node-label[data-v-61c986fa] {
|
||||
.catalog-node-label[data-v-94bdc416] {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.catalog-node-label img[data-v-61c986fa] {
|
||||
.catalog-node-label img[data-v-94bdc416] {
|
||||
margin-right: 4px;
|
||||
}
|
||||
.xml-show-catalog[data-v-61c986fa] .el-tree-node__content {
|
||||
.xml-show-catalog[data-v-94bdc416] .el-tree-node__content {
|
||||
height: auto;
|
||||
}
|
||||
.xml-show-catalog[data-v-61c986fa] .el-tree-node__content .catalog-node-label {
|
||||
.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;
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
@ -307,7 +307,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-61c986fa";
|
||||
const __vue_scope_id__ = "data-v-94bdc416";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1 +1 @@
|
||||
.catalog-node-label[data-v-61c986fa]{display:flex;align-items:center}.catalog-node-label img[data-v-61c986fa]{margin-right:4px}.xml-show-catalog[data-v-61c986fa] .el-tree-node__content{height:auto}.xml-show-catalog[data-v-61c986fa] .el-tree-node__content .catalog-node-label{max-width:calc(100% - 24px);word-break:break-all;white-space:normal}.xml-show-catalog .el-tree-node__content{display:flex!important}
|
||||
.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}
|
||||
@ -1,9 +1,9 @@
|
||||
|
||||
.xml-ebook-container-h5[data-v-0847bc38] {
|
||||
.xml-ebook-container-h5[data-v-0b013fc8] {
|
||||
}
|
||||
.xml-ebook-container-pc[data-v-0847bc38] {
|
||||
.xml-ebook-container-pc[data-v-0b013fc8] {
|
||||
}
|
||||
.xml-ebook-container-pad[data-v-0847bc38] {
|
||||
.xml-ebook-container-pad[data-v-0b013fc8] {
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
@ -412,10 +412,6 @@ var script = {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
bookReaderPath: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
//当前所处组的规则
|
||||
currentRule: {
|
||||
type: Object,
|
||||
@ -479,7 +475,7 @@ var script = {
|
||||
},
|
||||
goRead(info) {
|
||||
console.log('🚀 ~ goRead ~ info:', info);
|
||||
if (this.mode === 'preview' || this.mode == 'reader') {
|
||||
if (this.mode === 'preview') {
|
||||
this.$EventBus.$emit('learningStatistics', {
|
||||
type: 'ebook',
|
||||
info: null,
|
||||
@ -488,10 +484,10 @@ var script = {
|
||||
if (info.source != 'netlink') {
|
||||
const baseUrl = info.uploadFileUrl.indexOf('./') !== -1 ? this.resourceBasisPath + info.uploadFileUrl.split('./')[1] : info.uploadFileUrl;
|
||||
if (info.uploadFileUrl.indexOf('.epub') > 0) {
|
||||
this.baseUrl = this.bookReaderPath + '/static/epubjs/index.html#/epub-read?flow=scrolled&bookPath=' + baseUrl;
|
||||
this.baseUrl = '/static/epubjs/index.html#/epub-read?flow=scrolled&bookPath=' + baseUrl;
|
||||
} else {
|
||||
// const baseUrl = this.resourceBasisPath + info.uploadFileUrl.split('./')[1]
|
||||
this.baseUrl = this.bookReaderPath + `/static/pdfjs/web/viewer.html?file=${baseUrl}`;
|
||||
this.baseUrl = `/static/pdfjs/web/viewer.html?file=${baseUrl}`;
|
||||
}
|
||||
if (this.isReader) {
|
||||
this.$emit('showFileReader', {
|
||||
@ -544,9 +540,9 @@ var script = {
|
||||
let src = '';
|
||||
let uploadFileUrl = item.uploadFileUrl.indexOf('./') !== -1 ? this.resourceBasisPath + item.uploadFileUrl.split('./')[1] : item.uploadFileUrl;
|
||||
if (item.uploadFileUrl.indexOf('.epub') !== -1) {
|
||||
src = this.bookReaderPath + '/static/epubjs/index.html#/epub-read?flow=scrolled&bookPath=' + uploadFileUrl;
|
||||
src = '/static/epubjs/index.html#/epub-read?flow=scrolled&bookPath=' + uploadFileUrl;
|
||||
} else if (item.uploadFileUrl.indexOf('.pdf') !== -1) {
|
||||
src = this.bookReaderPath + '/static/pdfjs/web/viewer.html?file=' + uploadFileUrl;
|
||||
src = '/static/pdfjs/web/viewer.html?file=' + uploadFileUrl;
|
||||
} else {
|
||||
src = item.uploadFileUrl;
|
||||
}
|
||||
@ -864,7 +860,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-0847bc38";
|
||||
const __vue_scope_id__ = "data-v-0b013fc8";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
@ -217,7 +217,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-1ac9ed94";
|
||||
const __vue_scope_id__ = "data-v-7b50431e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
@ -282,7 +282,7 @@ var script = {
|
||||
goRead(info) {
|
||||
// console.log('🚀 ~ goRead ~ info:', info,this.mode,this.pageType)
|
||||
|
||||
if (this.mode === 'preview' || this.mode == 'reader') {
|
||||
if (this.mode === 'preview') {
|
||||
let url = '';
|
||||
if (info.htmlType == 'url') {
|
||||
url = info.link;
|
||||
|
||||
@ -4,15 +4,15 @@
|
||||
}
|
||||
|
||||
|
||||
.el-image__inner[data-v-78061ae9] {
|
||||
.el-image__inner[data-v-0b67ede4] {
|
||||
width: 100% !important;
|
||||
}
|
||||
.xml-image-ping-pu-h5[data-v-78061ae9] {
|
||||
.xml-image-ping-pu-h5[data-v-0b67ede4] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.xml-image-hua-lang[data-v-78061ae9] {
|
||||
.xml-image-hua-lang[data-v-0b67ede4] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
import Vue from 'vue';
|
||||
@ -1114,7 +1114,7 @@ __vue_render__$2._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-78061ae9";
|
||||
const __vue_scope_id__$1 = "data-v-0b67ede4";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -1612,12 +1612,6 @@ var script = {
|
||||
currentIndex: -1
|
||||
};
|
||||
},
|
||||
inject: {
|
||||
getSysEnv: {
|
||||
from: 'getSysEnv',
|
||||
default: () => () => {}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
blockPreviewList() {
|
||||
let images = this.blockData.imageList || [],
|
||||
@ -1662,9 +1656,6 @@ var script = {
|
||||
}
|
||||
});
|
||||
return !has;
|
||||
},
|
||||
sysEnv() {
|
||||
return this.getSysEnv();
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
@ -1736,16 +1727,7 @@ var script = {
|
||||
// window.href = href
|
||||
if (linkId) {
|
||||
// window.open(link, '_blank')
|
||||
if (this.mode == 'reader') {
|
||||
window.open(this.sysEnv.webBaseUrl + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_blank');
|
||||
// this.$EventBus.$emit('hotzoneClick', {
|
||||
// type: 'looseleaf',
|
||||
// value: linkId,
|
||||
// label: ''
|
||||
// })
|
||||
} else {
|
||||
window.open(process.env.VUE_APP_TEXTBOOK_WEB + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_blank');
|
||||
}
|
||||
window.open(process.env.VUE_APP_TEXTBOOK_WEB + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_blank');
|
||||
} else {
|
||||
this.$message.warning('获取资源链接失败,请检查链接地址');
|
||||
}
|
||||
|
||||
@ -1 +1 @@
|
||||
.xml-image-lun-bo .el-carousel__item{text-align:center}.el-image__inner[data-v-78061ae9]{width:100%!important}.xml-image-ping-pu-h5[data-v-78061ae9]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-78061ae9]{display:flex;flex-direction:column;align-items:center}
|
||||
.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}
|
||||
@ -1,38 +1,38 @@
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighth.vue.map */
|
||||
/*# sourceMappingURL=seventh.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventh.vue.map */
|
||||
|
||||
.xml-image-lun-bo .el-carousel__item {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
.xml-text-h5[data-v-483bfd20] {
|
||||
}
|
||||
.xml-text-pc[data-v-4666e3b2] {
|
||||
.xml-text-pc[data-v-483bfd20] {
|
||||
}
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
.xml-text-h5[data-v-483bfd20] {
|
||||
}
|
||||
|
||||
.xml-text-h5 .inline-audio-wrap,
|
||||
@ -711,15 +711,15 @@
|
||||
|
||||
|
||||
|
||||
.el-image__inner[data-v-78061ae9] {
|
||||
.el-image__inner[data-v-0b67ede4] {
|
||||
width: 100% !important;
|
||||
}
|
||||
.xml-image-ping-pu-h5[data-v-78061ae9] {
|
||||
.xml-image-ping-pu-h5[data-v-0b67ede4] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.xml-image-hua-lang[data-v-78061ae9] {
|
||||
.xml-image-hua-lang[data-v-0b67ede4] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
import Vue from 'vue';
|
||||
@ -1114,7 +1114,7 @@ __vue_render__$e._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$d = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$d = "data-v-78061ae9";
|
||||
const __vue_scope_id__$d = "data-v-0b67ede4";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$d = undefined;
|
||||
/* functional template */
|
||||
@ -1612,12 +1612,6 @@ var script$c = {
|
||||
currentIndex: -1
|
||||
};
|
||||
},
|
||||
inject: {
|
||||
getSysEnv: {
|
||||
from: 'getSysEnv',
|
||||
default: () => () => {}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
blockPreviewList() {
|
||||
let images = this.blockData.imageList || [],
|
||||
@ -1662,9 +1656,6 @@ var script$c = {
|
||||
}
|
||||
});
|
||||
return !has;
|
||||
},
|
||||
sysEnv() {
|
||||
return this.getSysEnv();
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
@ -1736,16 +1727,7 @@ var script$c = {
|
||||
// window.href = href
|
||||
if (linkId) {
|
||||
// window.open(link, '_blank')
|
||||
if (this.mode == 'reader') {
|
||||
window.open(this.sysEnv.webBaseUrl + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_blank');
|
||||
// this.$EventBus.$emit('hotzoneClick', {
|
||||
// type: 'looseleaf',
|
||||
// value: linkId,
|
||||
// label: ''
|
||||
// })
|
||||
} else {
|
||||
window.open(process.env.VUE_APP_TEXTBOOK_WEB + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_blank');
|
||||
}
|
||||
window.open(process.env.VUE_APP_TEXTBOOK_WEB + 'previewLooseLeaf?pageType=' + this.pageType + '&businessType=looseLeaf' + '&looseLeafId=' + linkId + '&uuid=' + v4() + '&styleType=' + 'B', '_blank');
|
||||
} else {
|
||||
this.$message.warning('获取资源链接失败,请检查链接地址');
|
||||
}
|
||||
@ -2485,7 +2467,7 @@ __vue_render__$b._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$b = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$b = "data-v-3afbe29e";
|
||||
const __vue_scope_id__$b = "data-v-aeaf5cd4";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$b = undefined;
|
||||
/* functional template */
|
||||
@ -11739,7 +11721,7 @@ __vue_render__$a._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$a = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$a = "data-v-7aa6099d";
|
||||
const __vue_scope_id__$a = "data-v-0781f4c2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$a = undefined;
|
||||
/* functional template */
|
||||
@ -11811,7 +11793,7 @@ class MagicLink extends HTMLElement {
|
||||
}
|
||||
.magic-link {
|
||||
display: inline;
|
||||
font-size:16px;
|
||||
// font-size:16px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
text-align: left;
|
||||
@ -50707,6 +50689,7 @@ var script$7 = {
|
||||
dataName: this.blockDataName,
|
||||
data: this.pBlockData,
|
||||
graphLinks: this.currentRule.data?.graphLinks || [],
|
||||
pureTextComponent: this.isPureTextComponent,
|
||||
dataIndex: this.dataIndex,
|
||||
blockId: this.blockId
|
||||
};
|
||||
@ -50826,7 +50809,7 @@ var script$7 = {
|
||||
let _this = this;
|
||||
this.blockData = this.pBlockData;
|
||||
if (!this.blockData.html) {
|
||||
this.blockData.html = '<span>暂无内容</span>';
|
||||
this.blockData.html = '<span>暂无内容1</span>';
|
||||
}
|
||||
`#${this.blockId} .richtext-reset-wrapper--view`;
|
||||
let mceMagicLinkRegistered = window.customElements?.get('magic-link');
|
||||
@ -50856,15 +50839,6 @@ var script$7 = {
|
||||
}]
|
||||
});
|
||||
});
|
||||
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) {
|
||||
let {
|
||||
plaintext,
|
||||
@ -50872,9 +50846,10 @@ var script$7 = {
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
stylemode
|
||||
stylemode,
|
||||
showType,
|
||||
hotzoneType
|
||||
} = e.target.dataset;
|
||||
console.log('%c%s', 'font-size:2em;background: #00965E;color: #FFF', 'magic-link点击', e, e.target.dataset);
|
||||
if (_this.mode === 'editor') {
|
||||
_this.$message.info('当前内容仅支持在预览模式下查看');
|
||||
return;
|
||||
@ -50886,7 +50861,7 @@ var script$7 = {
|
||||
multiple: true,
|
||||
nowImgIndex: 0,
|
||||
imgList: [{
|
||||
url: getFileUrl(content),
|
||||
url: content,
|
||||
title: plaintext
|
||||
}]
|
||||
});
|
||||
@ -50896,7 +50871,7 @@ var script$7 = {
|
||||
_this.$EventBus.$emit('handleMagicLinkAudioPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -50910,7 +50885,7 @@ var script$7 = {
|
||||
_this.$EventBus.$emit('handleMagicLinkVideoPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -50922,6 +50897,9 @@ var script$7 = {
|
||||
if (type === 'richtext') {
|
||||
content = content.replace(/text\-align:\s?justify/g, 'text-align:left');
|
||||
// 魔链富文本
|
||||
if (showType === 'popover') {
|
||||
return;
|
||||
}
|
||||
_this.inlineWordsModal = {
|
||||
title,
|
||||
content,
|
||||
@ -50932,7 +50910,7 @@ var script$7 = {
|
||||
if (type === 'sheet') {
|
||||
// 插入活页
|
||||
_this.$EventBus.$emit('hotzoneClick', {
|
||||
type: 'looseleaf',
|
||||
type: hotzoneType || 'looseleaf',
|
||||
value: content,
|
||||
label: title
|
||||
});
|
||||
@ -51128,8 +51106,8 @@ var script$7 = {
|
||||
let ADom = document.getElementById(this.blockId).getElementsByTagName('a') || [];
|
||||
if (ADom) {
|
||||
for (let i = 0; i < ADom.length; i++) {
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
let href = ADom[i].href;
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
ADom[i].href = 'javascript: void(0)';
|
||||
ADom[i].onclick = function (e) {
|
||||
_this.$EventBus.$emit('openTextHyperlink', {
|
||||
@ -52987,7 +52965,7 @@ __vue_render__$7._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$7 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$7 = "data-v-4666e3b2";
|
||||
const __vue_scope_id__$7 = "data-v-483bfd20";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$7 = undefined;
|
||||
/* functional template */
|
||||
@ -53279,7 +53257,7 @@ __vue_render__$6._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$6 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$6 = "data-v-42df40de";
|
||||
const __vue_scope_id__$6 = "data-v-bde72a14";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$6 = undefined;
|
||||
/* functional template */
|
||||
@ -53569,7 +53547,7 @@ __vue_render__$5._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$5 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$5 = "data-v-01022b03";
|
||||
const __vue_scope_id__$5 = "data-v-0ab3c6b0";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$5 = undefined;
|
||||
/* functional template */
|
||||
@ -53909,7 +53887,7 @@ __vue_render__$4._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$4 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$4 = "data-v-0751fc96";
|
||||
const __vue_scope_id__$4 = "data-v-3167f251";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$4 = undefined;
|
||||
/* functional template */
|
||||
@ -54204,7 +54182,7 @@ __vue_render__$3._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$3 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$3 = "data-v-e03e6adc";
|
||||
const __vue_scope_id__$3 = "data-v-5466df92";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$3 = undefined;
|
||||
/* functional template */
|
||||
@ -54467,7 +54445,7 @@ __vue_render__$2._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$2 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$2 = "data-v-f2f9072c";
|
||||
const __vue_scope_id__$2 = "data-v-17f2bcb6";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$2 = undefined;
|
||||
/* functional template */
|
||||
@ -54772,7 +54750,7 @@ __vue_render__$1._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-6c942a60";
|
||||
const __vue_scope_id__$1 = "data-v-af6901ca";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -55071,7 +55049,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-6d42e319";
|
||||
const __vue_scope_id__ = "data-v-5afd3094";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -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-78061ae9]{width:100%!important}.xml-image-ping-pu-h5[data-v-78061ae9]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-78061ae9]{display:flex;flex-direction:column;align-items:center}
|
||||
.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}
|
||||
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
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
import Vue from 'vue';
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var playIcon = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAAXNSR0IArs4c6QAABxBJREFUeF7dW2tsFFUU/s5sCygo7W4JwfggkZAYNNYnqBB31iI2jYnERwyiRuILFcJuwZQEAgYfDbSzii8CYqDlYRQhUQNIS3cFkRbERxXTYMCCgGI7U0ssXbbbOWa2bu1ruzOzM8suN9lfe+53vvPdc2fu4wwhBc1ddjYPjnA+VM4XBMdogHPAyGFoP2onQgsxt6is/g1QI1RuRFZWY9Cb22g3PbLLgcevFLKqFjKRm4AbTPth3gjQtmHZqNox13XWNE6cjpYK4C5TJhOpj4BQCNA4i8kqALZAVVcH5o86ZBW2JQKIkjID4BkAiqwilgBntVVCJCWA6FeKAC4BY3KKAu/lhsGlWWGhtLrE2WrWvykBCt5Uru5ktQRMs806tqofAT8xqDTgc24yg2lYgHvKW0SV1FUAxptxaFsfxocRYdiivd7hfxjxYUgAj7/5cWaqMOIgxbYNTFgc9Lq26PWrWwBRkr9I4UNOL/8B7ZhoUdDrfE0PiC4BREmuAlCgBzBdbJjopaDX+W4iPgkFEP3yWjBmJQJKy/+ZnwwU5w06ZQcVwF3etJRIWJKWwekkRcC0Gp9rVzzzuAJ4pObpDNqq0086m9ULwtB7d88bcWYgkgMK4Fl+5lrOzv4SzNemc2T6uVFlwOd8QrcAbkneSsB0/Q7S35KI59Z4897uy7RfBrjLlZlEXJn+IRlkyDjtECJTqr2jj/Xs2UuAwpU8NBRp+Qbgmw3CZ4r5moDP9WxcATySUsLgNzIlGlM8mYoCxc7tsb7dGVBQqozsHML1AK42BZwhnYiwrsbreqqfAJ5yZTYTv5chcSRDs41JuD523NadAaJf3mv3vn786CxMGJOF+lMdONrUmUwQSfallwM+5woNJCqAWCZPg4CdSaIO2n1J0QjcPX5It82+o2FU1oVw5EzETrfxsA8EfK6J3QLYveTtG3yMVaiDUVnXjs0HQykXgRl3BItdtV0ZICkBgN12sfj8xVwMHxJ/2/Hd7x3YUBvCDyc77KLQD5dApTU+50IqXClfHorA9JlaIsbavF814/JEZtH/Nx5oj06LcIR12Sdp1BDwua4jtyTfR8COJMHids+/MhvSw5fphm/4MxKdFvuP2Z8NHecdTnJLTc8ThPd1MzRoaFSAGPy2H0KorA3h73bVoEcD5qp6K3kk5Q3WjrZtamYF0OicUDqj2bC7IWwLO2I8ogmwmcGP2uIBQDICxDjtPHwey3e1WU6RmUpI9Ct7wWzbxYYVAmiRf3wohFV7zlkqAhGVkSjJPwOYYClyDzCrBNAgZ1W0olG2bgVJhA9I9MunwLgiEwQoq2rD9p/PW0aVgC1aBmh5dYllqH2ArMyA13f8g2prH4jVmgAtAHIyQYAn1rXiZIt1U4BBn5MoKd8DnJ/uAqyvbcf6/e3W0iSqII9f2cbMD1iL/D9aslNAWxRX2BF811b4LfL4ZT8z5qWjANomSQu+/qQ9W2Zm9RVNgKeZsSadBIioXaO+oc7ilO8bpMNRQGJZ0y0QhG/TRYCDx7tG/fBpe0a9R5yhYVnOHOo6Cle0N4Etr8JxoxxYPXNkQn3PRxjag+6j1B2OVAd8rqn/HYjI+wDcmZClSYPPXsjFiKHxD0Rqf+sadW0rnKqmzf9g8ailUVYX6kisLczRwD85lPojMXTypMCCvLquDFjRPBEOqrVT/YEORbXgf/3LuoWNbv6EuoDXNUmz73ksXgtG9KTUrqatCW68KgtfHQlbuqkxyjeW/r0EsHsaGCVppz3DcVvQlxN983VnwDSp1RlGR50NJa52xmIG+9OAz/VQrGOvR7PH3zKHWV1pBjVj+pDwYMCb21350u/dJPpl258FF0osIhys8bpu7+m/f4GEX3mMmDdcKJJ2+mWB7g/Oc2r1jt1twNWJW5K3E7SS94unaYXVQV/ewr4RDSiA6FfuAngXGJdeFBIQ9nBr/T3BpWK/pWbc9alban6JQP2KijJQEAUseALFuT8OxH3QQkmxXF4LytAq0f+iJVW4u2Z+7p54A5ewVNYtNX9HoJsycOTBRDODXufGwbgnFEDrLEpySq5rrRSZGWXBYteCRJi6BNBAMunNQKB3anzOOYmC77UU1mMsSspygBOqqgfLLhsCXq3xuRbrxdedATFAUZK9AJYBGK7XSYrsDH8tYjgDukVY0TyRBVpGhKkpCm5wNya/FzItQIxNdAstCM/Yebc4WOTazQ4ErO67vDUyKIanQF/wKf62MQ713HOpFMKKwGNxJC1ADEgTIhvhh1RWC23aR7SCeBN3CpuC851fGxnlpNcBRp25pdZxAqmFAHuYo+V3Zi9fTwHYycD+LIGqquc5TxjlksjesgwYzJF7RZMbAtyCIFzDTGMBHgtgLAgtYGh3EtqviUCNKtTjADc6OtVfdi8YrRVv29r+BTKBrQtOiFe6AAAAAElFTkSuQmCC";
|
||||
|
||||
@ -1,134 +1,126 @@
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=twelve.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventh.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=quadrangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=isosceles.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=wave.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=tenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme2.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=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eleven.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=wave.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=isosceles.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=thirteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixteen.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=twelve.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme1.vue.map */
|
||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme3.vue.map */
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyfive.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyseven2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtysix.vue.map */
|
||||
/*# sourceMappingURL=Greentheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme2.vue.map */
|
||||
/*# sourceMappingURL=SanQintheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyeight.vue.map */
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme3.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=SanQintheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyseven3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtysix.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyeight.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Forty.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
}
|
||||
.xml-text-pc[data-v-4666e3b2] {
|
||||
}
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
}
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyseven2.vue.map */
|
||||
.xml-text-h5 .inline-audio-wrap,
|
||||
.xml-text-h5 .inline-link-wrap {
|
||||
align-items: center;
|
||||
@ -200,6 +192,14 @@
|
||||
|
||||
/*# 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 */
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
import crypto from 'crypto';
|
||||
@ -9364,7 +9364,7 @@ __vue_render__$J._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$I = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$I = "data-v-7aa6099d";
|
||||
const __vue_scope_id__$I = "data-v-0781f4c2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$I = undefined;
|
||||
/* functional template */
|
||||
@ -9436,7 +9436,7 @@ class MagicLink extends HTMLElement {
|
||||
}
|
||||
.magic-link {
|
||||
display: inline;
|
||||
font-size:16px;
|
||||
// font-size:16px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
text-align: left;
|
||||
@ -48778,6 +48778,7 @@ var script$F = {
|
||||
dataName: this.blockDataName,
|
||||
data: this.pBlockData,
|
||||
graphLinks: this.currentRule.data?.graphLinks || [],
|
||||
pureTextComponent: this.isPureTextComponent,
|
||||
dataIndex: this.dataIndex,
|
||||
blockId: this.blockId
|
||||
};
|
||||
@ -48897,7 +48898,7 @@ var script$F = {
|
||||
let _this = this;
|
||||
this.blockData = this.pBlockData;
|
||||
if (!this.blockData.html) {
|
||||
this.blockData.html = '<span>暂无内容</span>';
|
||||
this.blockData.html = '<span>暂无内容1</span>';
|
||||
}
|
||||
`#${this.blockId} .richtext-reset-wrapper--view`;
|
||||
let mceMagicLinkRegistered = window.customElements?.get('magic-link');
|
||||
@ -48927,15 +48928,6 @@ var script$F = {
|
||||
}]
|
||||
});
|
||||
});
|
||||
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) {
|
||||
let {
|
||||
plaintext,
|
||||
@ -48943,9 +48935,10 @@ var script$F = {
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
stylemode
|
||||
stylemode,
|
||||
showType,
|
||||
hotzoneType
|
||||
} = e.target.dataset;
|
||||
console.log('%c%s', 'font-size:2em;background: #00965E;color: #FFF', 'magic-link点击', e, e.target.dataset);
|
||||
if (_this.mode === 'editor') {
|
||||
_this.$message.info('当前内容仅支持在预览模式下查看');
|
||||
return;
|
||||
@ -48957,7 +48950,7 @@ var script$F = {
|
||||
multiple: true,
|
||||
nowImgIndex: 0,
|
||||
imgList: [{
|
||||
url: getFileUrl(content),
|
||||
url: content,
|
||||
title: plaintext
|
||||
}]
|
||||
});
|
||||
@ -48967,7 +48960,7 @@ var script$F = {
|
||||
_this.$EventBus.$emit('handleMagicLinkAudioPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -48981,7 +48974,7 @@ var script$F = {
|
||||
_this.$EventBus.$emit('handleMagicLinkVideoPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -48993,6 +48986,9 @@ var script$F = {
|
||||
if (type === 'richtext') {
|
||||
content = content.replace(/text\-align:\s?justify/g, 'text-align:left');
|
||||
// 魔链富文本
|
||||
if (showType === 'popover') {
|
||||
return;
|
||||
}
|
||||
_this.inlineWordsModal = {
|
||||
title,
|
||||
content,
|
||||
@ -49003,7 +48999,7 @@ var script$F = {
|
||||
if (type === 'sheet') {
|
||||
// 插入活页
|
||||
_this.$EventBus.$emit('hotzoneClick', {
|
||||
type: 'looseleaf',
|
||||
type: hotzoneType || 'looseleaf',
|
||||
value: content,
|
||||
label: title
|
||||
});
|
||||
@ -49199,8 +49195,8 @@ var script$F = {
|
||||
let ADom = document.getElementById(this.blockId).getElementsByTagName('a') || [];
|
||||
if (ADom) {
|
||||
for (let i = 0; i < ADom.length; i++) {
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
let href = ADom[i].href;
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
ADom[i].href = 'javascript: void(0)';
|
||||
ADom[i].onclick = function (e) {
|
||||
_this.$EventBus.$emit('openTextHyperlink', {
|
||||
@ -51058,7 +51054,7 @@ __vue_render__$F._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$F = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$F = "data-v-4666e3b2";
|
||||
const __vue_scope_id__$F = "data-v-483bfd20";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$F = undefined;
|
||||
/* functional template */
|
||||
@ -51407,7 +51403,7 @@ __vue_render__$E._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$E = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$E = "data-v-34720a5f";
|
||||
const __vue_scope_id__$E = "data-v-296078f8";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$E = undefined;
|
||||
/* functional template */
|
||||
@ -51666,7 +51662,7 @@ __vue_render__$D._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$D = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$D = "data-v-0f442a2c";
|
||||
const __vue_scope_id__$D = "data-v-daedf136";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$D = undefined;
|
||||
/* functional template */
|
||||
@ -51895,7 +51891,7 @@ __vue_render__$C._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$C = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$C = "data-v-47af8c80";
|
||||
const __vue_scope_id__$C = "data-v-27ac2736";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$C = undefined;
|
||||
/* functional template */
|
||||
@ -52161,7 +52157,7 @@ __vue_render__$B._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$B = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$B = "data-v-0b406fd2";
|
||||
const __vue_scope_id__$B = "data-v-7c9e4108";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$B = undefined;
|
||||
/* functional template */
|
||||
@ -52398,7 +52394,7 @@ __vue_render__$A._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$A = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$A = "data-v-533fdd02";
|
||||
const __vue_scope_id__$A = "data-v-0c5f65ba";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$A = undefined;
|
||||
/* functional template */
|
||||
@ -52677,7 +52673,7 @@ __vue_render__$z._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$z = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$z = "data-v-09b4a172";
|
||||
const __vue_scope_id__$z = "data-v-02102cd2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$z = undefined;
|
||||
/* functional template */
|
||||
@ -53110,7 +53106,7 @@ __vue_render__$y._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$y = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$y = "data-v-2bb6d1f4";
|
||||
const __vue_scope_id__$y = "data-v-31351e99";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$y = undefined;
|
||||
/* functional template */
|
||||
@ -53459,7 +53455,7 @@ __vue_render__$x._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$x = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$x = "data-v-3edf16f6";
|
||||
const __vue_scope_id__$x = "data-v-7ab33580";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$x = undefined;
|
||||
/* functional template */
|
||||
@ -53680,7 +53676,7 @@ __vue_render__$w._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$w = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$w = "data-v-5fa06695";
|
||||
const __vue_scope_id__$w = "data-v-a662b60c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$w = undefined;
|
||||
/* functional template */
|
||||
@ -54117,7 +54113,7 @@ __vue_render__$v._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$v = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$v = "data-v-7e14161a";
|
||||
const __vue_scope_id__$v = "data-v-f8ac22d6";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$v = undefined;
|
||||
/* functional template */
|
||||
@ -54359,7 +54355,7 @@ __vue_render__$u._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$u = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$u = "data-v-7d1ea5cc";
|
||||
const __vue_scope_id__$u = "data-v-73de6855";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$u = undefined;
|
||||
/* functional template */
|
||||
@ -54614,7 +54610,7 @@ __vue_render__$t._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$t = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$t = "data-v-068fd504";
|
||||
const __vue_scope_id__$t = "data-v-712545f9";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$t = undefined;
|
||||
/* functional template */
|
||||
@ -54838,7 +54834,7 @@ __vue_render__$s._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$s = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$s = "data-v-065da6db";
|
||||
const __vue_scope_id__$s = "data-v-3cb23dd4";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$s = undefined;
|
||||
/* functional template */
|
||||
@ -55056,7 +55052,7 @@ __vue_render__$r._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$r = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$r = "data-v-3509e8fc";
|
||||
const __vue_scope_id__$r = "data-v-7132d7e7";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$r = undefined;
|
||||
/* functional template */
|
||||
@ -55280,7 +55276,7 @@ __vue_render__$q._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$q = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$q = "data-v-2308cfc7";
|
||||
const __vue_scope_id__$q = "data-v-3b6af56c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$q = undefined;
|
||||
/* functional template */
|
||||
@ -55504,7 +55500,7 @@ __vue_render__$p._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$p = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$p = "data-v-5889c61c";
|
||||
const __vue_scope_id__$p = "data-v-095f03d2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$p = undefined;
|
||||
/* functional template */
|
||||
@ -55722,7 +55718,7 @@ __vue_render__$o._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$o = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$o = "data-v-3583e8d1";
|
||||
const __vue_scope_id__$o = "data-v-75b18a14";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$o = undefined;
|
||||
/* functional template */
|
||||
@ -55942,7 +55938,7 @@ __vue_render__$n._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$n = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$n = "data-v-e15e2ebc";
|
||||
const __vue_scope_id__$n = "data-v-4dfd5747";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$n = undefined;
|
||||
/* functional template */
|
||||
@ -56170,7 +56166,7 @@ __vue_render__$m._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$m = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$m = "data-v-00744ec4";
|
||||
const __vue_scope_id__$m = "data-v-9dab6cae";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$m = undefined;
|
||||
/* functional template */
|
||||
@ -56408,7 +56404,7 @@ __vue_render__$l._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$l = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$l = "data-v-b271bf5e";
|
||||
const __vue_scope_id__$l = "data-v-49b14076";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$l = undefined;
|
||||
/* functional template */
|
||||
@ -56634,7 +56630,7 @@ __vue_render__$k._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$k = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$k = "data-v-9d718864";
|
||||
const __vue_scope_id__$k = "data-v-399a2649";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$k = undefined;
|
||||
/* functional template */
|
||||
@ -56854,7 +56850,7 @@ __vue_render__$j._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$j = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$j = "data-v-366de105";
|
||||
const __vue_scope_id__$j = "data-v-83a46300";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$j = undefined;
|
||||
/* functional template */
|
||||
@ -57080,7 +57076,7 @@ __vue_render__$i._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$i = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$i = "data-v-737c08cc";
|
||||
const __vue_scope_id__$i = "data-v-08621972";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$i = undefined;
|
||||
/* functional template */
|
||||
@ -57302,7 +57298,7 @@ __vue_render__$h._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$h = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$h = "data-v-9c512fa4";
|
||||
const __vue_scope_id__$h = "data-v-67e7af93";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$h = undefined;
|
||||
/* functional template */
|
||||
@ -57519,7 +57515,7 @@ __vue_render__$g._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$g = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$g = "data-v-44762fcc";
|
||||
const __vue_scope_id__$g = "data-v-835f5c56";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$g = undefined;
|
||||
/* functional template */
|
||||
@ -57740,7 +57736,7 @@ __vue_render__$f._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$f = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$f = "data-v-59f586a0";
|
||||
const __vue_scope_id__$f = "data-v-80c330f6";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$f = undefined;
|
||||
/* functional template */
|
||||
@ -57961,7 +57957,7 @@ __vue_render__$e._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$e = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$e = "data-v-c22c0580";
|
||||
const __vue_scope_id__$e = "data-v-0492de25";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$e = undefined;
|
||||
/* functional template */
|
||||
@ -58219,7 +58215,7 @@ __vue_render__$d._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$d = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$d = "data-v-5ec0ce56";
|
||||
const __vue_scope_id__$d = "data-v-5e4cdcd0";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$d = undefined;
|
||||
/* functional template */
|
||||
@ -58436,7 +58432,7 @@ __vue_render__$c._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$c = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$c = "data-v-2b65e80a";
|
||||
const __vue_scope_id__$c = "data-v-54b61a14";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$c = undefined;
|
||||
/* functional template */
|
||||
@ -58653,7 +58649,7 @@ __vue_render__$b._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$b = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$b = "data-v-8f1046d6";
|
||||
const __vue_scope_id__$b = "data-v-cdf97360";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$b = undefined;
|
||||
/* functional template */
|
||||
@ -58918,7 +58914,7 @@ __vue_render__$a._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$a = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$a = "data-v-7f1062f6";
|
||||
const __vue_scope_id__$a = "data-v-cb4fdf4a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$a = undefined;
|
||||
/* functional template */
|
||||
@ -59212,7 +59208,7 @@ __vue_render__$9._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$9 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$9 = "data-v-0f688b55";
|
||||
const __vue_scope_id__$9 = "data-v-e55ace0c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$9 = undefined;
|
||||
/* functional template */
|
||||
@ -59495,7 +59491,7 @@ __vue_render__$8._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$8 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$8 = "data-v-0be464c4";
|
||||
const __vue_scope_id__$8 = "data-v-522c8fa9";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$8 = undefined;
|
||||
/* functional template */
|
||||
@ -59727,7 +59723,7 @@ __vue_render__$7._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$7 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$7 = "data-v-a9c15308";
|
||||
const __vue_scope_id__$7 = "data-v-365d8cf7";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$7 = undefined;
|
||||
/* functional template */
|
||||
@ -59973,7 +59969,7 @@ __vue_render__$6._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$6 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$6 = "data-v-470edaad";
|
||||
const __vue_scope_id__$6 = "data-v-36887152";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$6 = undefined;
|
||||
/* functional template */
|
||||
@ -60219,7 +60215,7 @@ __vue_render__$5._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$5 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$5 = "data-v-02e8551d";
|
||||
const __vue_scope_id__$5 = "data-v-bc646ed0";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$5 = undefined;
|
||||
/* functional template */
|
||||
@ -60522,7 +60518,7 @@ __vue_render__$4._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$4 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$4 = "data-v-220187fe";
|
||||
const __vue_scope_id__$4 = "data-v-aa5609ba";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$4 = undefined;
|
||||
/* functional template */
|
||||
@ -60825,7 +60821,7 @@ __vue_render__$3._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$3 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$3 = "data-v-97901996";
|
||||
const __vue_scope_id__$3 = "data-v-55fb311a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$3 = undefined;
|
||||
/* functional template */
|
||||
@ -61128,7 +61124,7 @@ __vue_render__$2._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$2 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$2 = "data-v-672aa810";
|
||||
const __vue_scope_id__$2 = "data-v-6e2de9dd";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$2 = undefined;
|
||||
/* functional template */
|
||||
@ -61426,7 +61422,7 @@ __vue_render__$1._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-75ed3c66";
|
||||
const __vue_scope_id__$1 = "data-v-706deaea";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -61646,7 +61642,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-c1839608";
|
||||
const __vue_scope_id__ = "data-v-4c8c7e37";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
|
||||
.xml-question-container-h5[data-v-bbb516e6] {
|
||||
.xml-question-container-h5[data-v-d56ea49c] {
|
||||
}
|
||||
.xml-question-container-pc[data-v-bbb516e6] {
|
||||
.xml-question-container-pc[data-v-d56ea49c] {
|
||||
}
|
||||
.xml-question-container-pad[data-v-bbb516e6] {
|
||||
.xml-question-container-pad[data-v-d56ea49c] {
|
||||
}
|
||||
|
||||
|
||||
@ -12,10 +12,10 @@
|
||||
|
||||
|
||||
/*# sourceMappingURL=QuestionItem.vue.map */
|
||||
.option-item + .option-item[data-v-cc053d1c] {
|
||||
.option-item + .option-item[data-v-2a6bfc44] {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.option-item[data-v-cc053d1c] {
|
||||
.option-item[data-v-2a6bfc44] {
|
||||
display: flex;
|
||||
background: #fbfbfb;
|
||||
border-radius: 6px;
|
||||
@ -24,42 +24,86 @@
|
||||
transition: all ease 0.3s;
|
||||
border: 1px solid #fbfbfb;
|
||||
}
|
||||
.option-item.isActive[data-v-cc053d1c] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item .questionSeq[data-v-cc053d1c] {
|
||||
.option-item .questionSeq[data-v-2a6bfc44] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item.isTrue[data-v-cc053d1c] {
|
||||
.option-item.isActive[data-v-2a6bfc44] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item.isTrue[data-v-2a6bfc44] {
|
||||
border: 1px solid #70b603;
|
||||
}
|
||||
.option-item.isTrue[data-v-cc053d1c] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
.option-item.isTrue[data-v-2a6bfc44] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #70b603;
|
||||
background: #70b603;
|
||||
}
|
||||
.option-item.isFalse[data-v-cc053d1c] {
|
||||
.option-item.isFalse[data-v-2a6bfc44] {
|
||||
border: 1px solid #d9001b;
|
||||
}
|
||||
.option-item.isFalse[data-v-cc053d1c] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
.option-item.isFalse[data-v-2a6bfc44] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #d9001b;
|
||||
background: #d9001b;
|
||||
}
|
||||
.option-item[data-v-cc053d1c]:hover {
|
||||
.option-item[data-v-2a6bfc44]:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
.option-item[data-v-cc053d1c] .content {
|
||||
.option-item[data-v-2a6bfc44] .content {
|
||||
cursor: pointer;
|
||||
}
|
||||
.option-item[data-v-cc053d1c] .stem-content.no-border {
|
||||
.option-item[data-v-2a6bfc44] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=checkbox.vue.map */
|
||||
.content[data-v-6db419e1] {
|
||||
/*# 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%;
|
||||
}
|
||||
.content .stem-content[data-v-6db419e1] {
|
||||
.content .stem-content[data-v-dad5303e] {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 5px 14px;
|
||||
@ -68,12 +112,12 @@
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.content .stem-content.no-border[data-v-6db419e1] {
|
||||
.content .stem-content.no-border[data-v-dad5303e] {
|
||||
padding: 0;
|
||||
border: none;
|
||||
cursor: default;
|
||||
}
|
||||
.content .stem-content .placeholder[data-v-6db419e1] {
|
||||
.content .stem-content .placeholder[data-v-dad5303e] {
|
||||
color: #c0c4cc;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
@ -81,10 +125,98 @@
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=common.vue.map */
|
||||
.content[data-v-f3840eb4] {
|
||||
.option-item + .option-item[data-v-7eefc508] {
|
||||
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%;
|
||||
}
|
||||
.content .stem-content[data-v-f3840eb4] {
|
||||
.content .stem-content[data-v-9651bb74] {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 5px 14px;
|
||||
@ -93,12 +225,12 @@
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.content .stem-content.no-border[data-v-f3840eb4] {
|
||||
.content .stem-content.no-border[data-v-9651bb74] {
|
||||
padding: 0;
|
||||
border: none;
|
||||
cursor: default;
|
||||
}
|
||||
.content .stem-content .placeholder[data-v-f3840eb4] {
|
||||
.content .stem-content .placeholder[data-v-9651bb74] {
|
||||
color: #c0c4cc;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
@ -106,303 +238,289 @@
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=common.vue.map */
|
||||
.option-item + .option-item[data-v-3d438652] {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.option-item[data-v-3d438652] {
|
||||
display: flex;
|
||||
background: #fbfbfb;
|
||||
border-radius: 6px;
|
||||
padding-left: 16px;
|
||||
cursor: pointer;
|
||||
transition: all ease 0.3s;
|
||||
border: 1px solid #fbfbfb;
|
||||
}
|
||||
.option-item.isActive[data-v-3d438652] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item .questionSeq[data-v-3d438652] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item.isTrue[data-v-3d438652] {
|
||||
border: 1px solid #70b603;
|
||||
}
|
||||
.option-item.isTrue[data-v-3d438652] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
border-color: #70b603;
|
||||
background: #70b603;
|
||||
}
|
||||
.option-item.isFalse[data-v-3d438652] {
|
||||
border: 1px solid #d9001b;
|
||||
}
|
||||
.option-item.isFalse[data-v-3d438652] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
border-color: #d9001b;
|
||||
background: #d9001b;
|
||||
}
|
||||
.option-item[data-v-3d438652]:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
.option-item[data-v-3d438652] .content {
|
||||
cursor: pointer;
|
||||
}
|
||||
.option-item[data-v-3d438652] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=checkbox.vue.map */
|
||||
.option-item + .option-item[data-v-6c11c1df] {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.option-item[data-v-6c11c1df] {
|
||||
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-6c11c1df] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item.isActive[data-v-6c11c1df] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item.isTrue[data-v-6c11c1df] {
|
||||
border: 1px solid #70b603;
|
||||
}
|
||||
.option-item.isTrue[data-v-6c11c1df] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #70b603;
|
||||
background: #70b603;
|
||||
}
|
||||
.option-item.isFalse[data-v-6c11c1df] {
|
||||
border: 1px solid #d9001b;
|
||||
}
|
||||
.option-item.isFalse[data-v-6c11c1df] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #d9001b;
|
||||
background: #d9001b;
|
||||
}
|
||||
.option-item[data-v-6c11c1df]:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
.option-item[data-v-6c11c1df] .content {
|
||||
cursor: pointer;
|
||||
}
|
||||
.option-item[data-v-6c11c1df] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=radio.vue.map */
|
||||
.option-item + .option-item[data-v-303501f1] {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.option-item[data-v-303501f1] {
|
||||
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-303501f1] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item.isActive[data-v-303501f1] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item.isTrue[data-v-303501f1] {
|
||||
border: 1px solid #70b603;
|
||||
}
|
||||
.option-item.isTrue[data-v-303501f1] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #70b603;
|
||||
background: #70b603;
|
||||
}
|
||||
.option-item.isFalse[data-v-303501f1] {
|
||||
border: 1px solid #d9001b;
|
||||
}
|
||||
.option-item.isFalse[data-v-303501f1] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #d9001b;
|
||||
background: #d9001b;
|
||||
}
|
||||
.option-item[data-v-303501f1]:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
.option-item[data-v-303501f1] .content {
|
||||
cursor: pointer;
|
||||
}
|
||||
.option-item[data-v-303501f1] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=radio.vue.map */
|
||||
.line-content[data-v-685addee] {
|
||||
.line-content[data-v-07789553] {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
.line-content .line-content--item[data-v-685addee] {
|
||||
.line-content .line-content--item[data-v-07789553] {
|
||||
flex: 1;
|
||||
}
|
||||
.line-content .line-content--item[data-v-685addee] .stem-content {
|
||||
.line-content .line-content--item[data-v-07789553] .stem-content {
|
||||
height: 100%;
|
||||
}
|
||||
.line-content + .line-content[data-v-685addee] {
|
||||
.line-content + .line-content[data-v-07789553] {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.create-option[data-v-685addee] {
|
||||
.create-option[data-v-07789553] {
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
border-style: dashed !important;
|
||||
}
|
||||
.option-item[data-v-685addee] {
|
||||
.option-item[data-v-07789553] {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
.option-item + .option-item[data-v-685addee] {
|
||||
.option-item + .option-item[data-v-07789553] {
|
||||
margin-left: 100px;
|
||||
}
|
||||
.option-item.isMobile + .option-item.isMobile[data-v-685addee] {
|
||||
.option-item.isMobile + .option-item.isMobile[data-v-07789553] {
|
||||
margin-left: 50px;
|
||||
}
|
||||
.option-item[data-v-685addee] {
|
||||
.option-item[data-v-07789553] {
|
||||
margin-bottom: 10px;
|
||||
background: #fbfbfb;
|
||||
border-radius: 6px;
|
||||
padding-left: 16px;
|
||||
}
|
||||
.option-item .questionSeq[data-v-685addee] {
|
||||
.option-item .questionSeq[data-v-07789553] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item[data-v-685addee] .stem-content.no-border {
|
||||
.option-item[data-v-07789553] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=view-line.vue.map */
|
||||
.line-content[data-v-56033706] {
|
||||
.line-content[data-v-5453482a] {
|
||||
width: 100%;
|
||||
position: relative;
|
||||
}
|
||||
.line-content .line-content--item[data-v-56033706] {
|
||||
.line-content .line-content--item[data-v-5453482a] {
|
||||
flex: 1;
|
||||
}
|
||||
.line-content .line-content--item[data-v-56033706] .stem-content {
|
||||
.line-content .line-content--item[data-v-5453482a] .stem-content {
|
||||
height: 100%;
|
||||
}
|
||||
.line-content + .line-content[data-v-56033706] {
|
||||
.line-content + .line-content[data-v-5453482a] {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.create-option[data-v-56033706] {
|
||||
.create-option[data-v-5453482a] {
|
||||
width: 100%;
|
||||
margin-top: 10px;
|
||||
border-style: dashed !important;
|
||||
}
|
||||
.option-item[data-v-56033706] {
|
||||
.option-item[data-v-5453482a] {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
.option-item + .option-item[data-v-56033706] {
|
||||
.option-item + .option-item[data-v-5453482a] {
|
||||
margin-left: 100px;
|
||||
}
|
||||
.option-item.isMobile + .option-item.isMobile[data-v-56033706] {
|
||||
.option-item.isMobile + .option-item.isMobile[data-v-5453482a] {
|
||||
margin-left: 50px;
|
||||
}
|
||||
.option-item[data-v-56033706] {
|
||||
.option-item[data-v-5453482a] {
|
||||
margin-bottom: 10px;
|
||||
background: #FBFBFB;
|
||||
border-radius: 6px;
|
||||
padding-left: 16px;
|
||||
border: 1px solid #fbfbfb;
|
||||
}
|
||||
.option-item .questionSeq[data-v-56033706] {
|
||||
.option-item .questionSeq[data-v-5453482a] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item[data-v-56033706] .stem-content.no-border {
|
||||
.option-item[data-v-5453482a] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=view-line-answer.vue.map */
|
||||
.image-file[data-v-2d3153b3] {
|
||||
.image-file[data-v-67ac173b] {
|
||||
width: 218px;
|
||||
object-fit: scale-down;
|
||||
}
|
||||
.video-file[data-v-2d3153b3] {
|
||||
.video-file[data-v-67ac173b] {
|
||||
width: 408px;
|
||||
}
|
||||
.file-render[data-v-2d3153b3] {
|
||||
.file-render[data-v-67ac173b] {
|
||||
width: 100%;
|
||||
}
|
||||
.file-info[data-v-2d3153b3] {
|
||||
.file-info[data-v-67ac173b] {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
.file-info.videoHandler[data-v-2d3153b3] {
|
||||
.file-info.videoHandler[data-v-67ac173b] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
.file-info.videoHandler .fileName[data-v-2d3153b3] {
|
||||
.file-info.videoHandler .fileName[data-v-67ac173b] {
|
||||
font-size: 18px;
|
||||
color: #333333;
|
||||
margin-bottom: 19px;
|
||||
}
|
||||
.file-info.videoHandler .fileInfo[data-v-2d3153b3] {
|
||||
.file-info.videoHandler .fileInfo[data-v-67ac173b] {
|
||||
font-size: 14px;
|
||||
color: #666666;
|
||||
margin-bottom: 19px;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=index.vue.map */
|
||||
.image-file[data-v-6cd8acd6] {
|
||||
.image-file[data-v-9dbac350] {
|
||||
width: 218px;
|
||||
object-fit: scale-down;
|
||||
}
|
||||
.video-file[data-v-6cd8acd6] {
|
||||
.video-file[data-v-9dbac350] {
|
||||
width: 408px;
|
||||
}
|
||||
.file-render[data-v-6cd8acd6] {
|
||||
.file-render[data-v-9dbac350] {
|
||||
width: 100%;
|
||||
}
|
||||
.file-info[data-v-6cd8acd6] {
|
||||
.file-info[data-v-9dbac350] {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
.file-info.videoHandler[data-v-6cd8acd6] {
|
||||
.file-info.videoHandler[data-v-9dbac350] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
.file-info.videoHandler .fileName[data-v-6cd8acd6] {
|
||||
.file-info.videoHandler .fileName[data-v-9dbac350] {
|
||||
font-size: 18px;
|
||||
color: #333333;
|
||||
margin-bottom: 19px;
|
||||
}
|
||||
.file-info.videoHandler .fileInfo[data-v-6cd8acd6] {
|
||||
.file-info.videoHandler .fileInfo[data-v-9dbac350] {
|
||||
font-size: 14px;
|
||||
color: #666666;
|
||||
margin-bottom: 19px;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=index.vue.map */
|
||||
[data-v-ac616226] .el-dialog__header {
|
||||
.audio .audio-icon[data-v-a7067f84] {
|
||||
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;
|
||||
}
|
||||
.video-content[data-v-ac616226] {
|
||||
.video-content[data-v-c29405b0] {
|
||||
width: 180px;
|
||||
height: 135px;
|
||||
border-radius: 6px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
.video-content .play[data-v-ac616226] {
|
||||
.video-content .play[data-v-c29405b0] {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
cursor: pointer;
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
}
|
||||
.video-mask[data-v-ac616226] {
|
||||
.video-mask[data-v-c29405b0] {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
@ -410,154 +528,36 @@
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.video-mask img[data-v-ac616226] {
|
||||
.video-mask img[data-v-c29405b0] {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50% -50%);
|
||||
display: block;
|
||||
}
|
||||
.video-player[data-v-ac616226] {
|
||||
.video-player[data-v-c29405b0] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=video-play.vue.map */
|
||||
.audio .audio-icon[data-v-1fe2904e] {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.audio .audio-icon img[data-v-1fe2904e] {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
}
|
||||
.audio .audio-controls[data-v-1fe2904e] {
|
||||
width: 100%;
|
||||
max-width: 200px;
|
||||
flex: 1;
|
||||
height: 36px;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--progress[data-v-1fe2904e], .audio .audio-controls .audio-controls--handler[data-v-1fe2904e] {
|
||||
width: 100%;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler[data-v-1fe2904e] {
|
||||
line-height: 1;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .play[data-v-1fe2904e] {
|
||||
font-size: 24px;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-1fe2904e] {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .current-time[data-v-1fe2904e], .audio .audio-controls .audio-controls--handler .total-time[data-v-1fe2904e] {
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
}
|
||||
.play-handler.mobile[data-v-1fe2904e] {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
.audio-component[data-v-1fe2904e] {
|
||||
display: none;
|
||||
}
|
||||
[data-v-1fe2904e] .el-slider__runway {
|
||||
margin: 0 0 4px 0;
|
||||
background: #e3e3e3;
|
||||
height: 4px;
|
||||
}
|
||||
[data-v-1fe2904e] .el-slider__bar {
|
||||
height: 4px;
|
||||
}
|
||||
[data-v-1fe2904e] .el-slider__button {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
[data-v-1fe2904e] .el-slider__button-wrapper {
|
||||
top: -15px;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=audio-play-new.vue.map */
|
||||
.audio .audio-icon[data-v-9c5a6694] {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.audio .audio-icon img[data-v-9c5a6694] {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
}
|
||||
.audio .audio-controls[data-v-9c5a6694] {
|
||||
width: 100%;
|
||||
max-width: 200px;
|
||||
flex: 1;
|
||||
height: 36px;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--progress[data-v-9c5a6694], .audio .audio-controls .audio-controls--handler[data-v-9c5a6694] {
|
||||
width: 100%;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler[data-v-9c5a6694] {
|
||||
line-height: 1;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .play[data-v-9c5a6694] {
|
||||
font-size: 24px;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-9c5a6694] {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .current-time[data-v-9c5a6694], .audio .audio-controls .audio-controls--handler .total-time[data-v-9c5a6694] {
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
}
|
||||
.play-handler.mobile[data-v-9c5a6694] {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
.audio-component[data-v-9c5a6694] {
|
||||
display: none;
|
||||
}
|
||||
[data-v-9c5a6694] .el-slider__runway {
|
||||
margin: 0 0 4px 0;
|
||||
background: #e3e3e3;
|
||||
height: 4px;
|
||||
}
|
||||
[data-v-9c5a6694] .el-slider__bar {
|
||||
height: 4px;
|
||||
}
|
||||
[data-v-9c5a6694] .el-slider__button {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
[data-v-9c5a6694] .el-slider__button-wrapper {
|
||||
top: -15px;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=audio-play-new.vue.map */
|
||||
[data-v-aec120a0] .el-dialog__header {
|
||||
[data-v-f34974aa] .el-dialog__header {
|
||||
padding: 10px;
|
||||
}
|
||||
.video-content[data-v-aec120a0] {
|
||||
.video-content[data-v-f34974aa] {
|
||||
width: 180px;
|
||||
height: 135px;
|
||||
border-radius: 6px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
.video-content .play[data-v-aec120a0] {
|
||||
.video-content .play[data-v-f34974aa] {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
cursor: pointer;
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
}
|
||||
.video-mask[data-v-aec120a0] {
|
||||
.video-mask[data-v-f34974aa] {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
@ -565,14 +565,14 @@
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.video-mask img[data-v-aec120a0] {
|
||||
.video-mask img[data-v-f34974aa] {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50% -50%);
|
||||
display: block;
|
||||
}
|
||||
.video-player[data-v-aec120a0] {
|
||||
.video-player[data-v-f34974aa] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
import crypto from 'crypto';
|
||||
@ -385,7 +385,7 @@ __vue_render__$g._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$g = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$g = "data-v-1fe2904e";
|
||||
const __vue_scope_id__$g = "data-v-a7067f84";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$g = undefined;
|
||||
/* functional template */
|
||||
@ -13575,7 +13575,7 @@ __vue_render__$f._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$f = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$f = "data-v-ac616226";
|
||||
const __vue_scope_id__$f = "data-v-c29405b0";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$f = undefined;
|
||||
/* functional template */
|
||||
@ -13788,7 +13788,7 @@ __vue_render__$e._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$e = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$e = "data-v-6cd8acd6";
|
||||
const __vue_scope_id__$e = "data-v-67ac173b";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$e = undefined;
|
||||
/* functional template */
|
||||
@ -13980,7 +13980,7 @@ __vue_render__$d._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$d = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$d = "data-v-f3840eb4";
|
||||
const __vue_scope_id__$d = "data-v-dad5303e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$d = undefined;
|
||||
/* functional template */
|
||||
@ -14356,7 +14356,7 @@ __vue_render__$c._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$c = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$c = "data-v-6c11c1df";
|
||||
const __vue_scope_id__$c = "data-v-2a6bfc44";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$c = undefined;
|
||||
/* functional template */
|
||||
@ -14672,7 +14672,7 @@ __vue_render__$b._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$b = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$b = "data-v-3d438652";
|
||||
const __vue_scope_id__$b = "data-v-7eefc508";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$b = undefined;
|
||||
/* functional template */
|
||||
@ -19789,7 +19789,7 @@ __vue_render__$a._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$a = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$a = "data-v-56033706";
|
||||
const __vue_scope_id__$a = "data-v-5453482a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$a = undefined;
|
||||
/* functional template */
|
||||
@ -20091,7 +20091,7 @@ __vue_render__$9._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$9 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$9 = "data-v-685addee";
|
||||
const __vue_scope_id__$9 = "data-v-07789553";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$9 = undefined;
|
||||
/* functional template */
|
||||
@ -20969,7 +20969,7 @@ __vue_render__$8._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$8 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$8 = "data-v-cbaaf53e";
|
||||
const __vue_scope_id__$8 = "data-v-b0816074";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$8 = undefined;
|
||||
/* functional template */
|
||||
@ -21303,7 +21303,7 @@ __vue_render__$7._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$7 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$7 = "data-v-9c5a6694";
|
||||
const __vue_scope_id__$7 = "data-v-171f954a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$7 = undefined;
|
||||
/* functional template */
|
||||
@ -21520,7 +21520,7 @@ __vue_render__$6._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$6 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$6 = "data-v-aec120a0";
|
||||
const __vue_scope_id__$6 = "data-v-f34974aa";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$6 = undefined;
|
||||
/* functional template */
|
||||
@ -21733,7 +21733,7 @@ __vue_render__$5._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$5 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$5 = "data-v-2d3153b3";
|
||||
const __vue_scope_id__$5 = "data-v-9dbac350";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$5 = undefined;
|
||||
/* functional template */
|
||||
@ -21925,7 +21925,7 @@ __vue_render__$4._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$4 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$4 = "data-v-6db419e1";
|
||||
const __vue_scope_id__$4 = "data-v-9651bb74";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$4 = undefined;
|
||||
/* functional template */
|
||||
@ -22241,7 +22241,7 @@ __vue_render__$3._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$3 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$3 = "data-v-303501f1";
|
||||
const __vue_scope_id__$3 = "data-v-f1c36854";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$3 = undefined;
|
||||
/* functional template */
|
||||
@ -22550,7 +22550,7 @@ __vue_render__$2._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$2 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$2 = "data-v-cc053d1c";
|
||||
const __vue_scope_id__$2 = "data-v-2dc7a8d2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$2 = undefined;
|
||||
/* functional template */
|
||||
@ -22680,7 +22680,7 @@ var script$1 = {
|
||||
clozeLength() {
|
||||
let fillInTheBlanksSpan = this.question.description.match(/______/g);
|
||||
let sortString = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
|
||||
let data = fillInTheBlanksSpan?.length || 0;
|
||||
let data = fillInTheBlanksSpan.length || 0;
|
||||
let list = [];
|
||||
for (let i = 0; i < data; i++) {
|
||||
list.push({
|
||||
@ -22732,7 +22732,7 @@ var script$1 = {
|
||||
return;
|
||||
}
|
||||
} else if (answer.questionType == 'fillInTheBlanks' && this.isSubmit) {
|
||||
for (let i = 0; i < this.clozeLength?.length; i++) {
|
||||
for (let i = 0; i < this.clozeLength.length; i++) {
|
||||
if (!this.clozeLength[i].content) {
|
||||
this.$message.error('请先输入答案');
|
||||
return;
|
||||
@ -22752,7 +22752,7 @@ var script$1 = {
|
||||
if (questionType == 'shortSnswer') {
|
||||
this.inputAnswer = '';
|
||||
} else if (questionType == 'fillInTheBlanks') {
|
||||
for (let i = 0; i < this.clozeLength?.length; i++) {
|
||||
for (let i = 0; i < this.clozeLength.length; i++) {
|
||||
this.clozeLength[i].content = '';
|
||||
}
|
||||
}
|
||||
@ -22793,7 +22793,7 @@ var script$1 = {
|
||||
let serialNumber = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T'];
|
||||
let option = '';
|
||||
let question = this.question.stem.content;
|
||||
let optionList = this.question.questionOption || [];
|
||||
let optionList = this.question.questionOption;
|
||||
for (let i = 0; i < optionList.length; i++) {
|
||||
if (optionList[i].content) {
|
||||
option += serialNumber[i] + '.' + this.removeStyle(optionList[i].content) + (i < optionList.length - 1 ? ';' : '');
|
||||
@ -23276,7 +23276,7 @@ __vue_render__$1._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-992fef82";
|
||||
const __vue_scope_id__$1 = "data-v-635a2f1f";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -23528,7 +23528,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-bbb516e6";
|
||||
const __vue_scope_id__ = "data-v-d56ea49c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1,9 +1,9 @@
|
||||
|
||||
.read-the-docs[data-v-1eead8ba] {
|
||||
.read-the-docs[data-v-323c2d1f] {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
|
||||
.read-the-docs[data-v-7b73b520] {
|
||||
.read-the-docs[data-v-ac8a29ca] {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
@ -112,7 +112,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-7b73b520";
|
||||
const __vue_scope_id__$1 = "data-v-ac8a29ca";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -225,7 +225,7 @@ const __vue_script__ = script;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-1eead8ba";
|
||||
const __vue_scope_id__ = "data-v-323c2d1f";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1 +1 @@
|
||||
.read-the-docs[data-v-1eead8ba]{color:#888}.read-the-docs[data-v-7b73b520]{color:#888}
|
||||
.read-the-docs[data-v-323c2d1f]{color:#888}.read-the-docs[data-v-ac8a29ca]{color:#888}
|
||||
@ -1,5 +1,5 @@
|
||||
.preview-item-file[data-v-7dcd39ad]:hover,
|
||||
.slip-over-cover[data-v-7dcd39ad]:hover {
|
||||
.preview-item-file[data-v-36ca6030]:hover,
|
||||
.slip-over-cover[data-v-36ca6030]:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var epub = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAoCAMAAAChHKjRAAAAAXNSR0IArs4c6QAAAjdQTFRFAAAAiXb/kG/0inD6inX6jW72jXL2eGLpe2fuinL2i3H3iHf6i3L5dmTvjHH3inP4inH2i3L2d2TuhW7vjHH5d2TqjnH5fWnyd2bskHb5jXX1jHH2i3H3i3H4i3H4d2Xsd2Xqi3H4cmLoi3L4inH3i3L3inL3i3L3jHL3hG3zi3L3jHL4jnT5i3L3i3L3jHH2bFPvbl/nb2DncF/ncVP1cWHncWHocWHpclP2cmLpc2Lpc2Lqc2Ppc2PqdGPpdGPqd1r1d1z0d2TreFv2eFz0eFz1eGDxeGbseVv1eVz1el31el32el71el72e133e1/2e2TxfGD1fGXxfWD3fWH2fmjxf2T2f2rwgGX3gGnygWX2gWb2gWb3gWrzgWzzgmb3gmf2gmzyg23zhGj3hGn2hGr2hGr3hG3zhWr3hWv2hWv3hWz3hW7zhW70hmz3h233h273iG34iG/3iW34iW74iW/3iXD3iXH2inD4inH3inP2i3D4i3H3i3H4i3L3i3L4i3P4jHL3jHL4jHP3jHP4jHT2jHT3jHrxjHryjXP4jXT3jXT5jXX3jXvyjnT5jnX4j3T5j3T6j3b3lYH2l4H4mIL4mYP4movynY/xpJL3pJfzpZL5pZjzqJX5q5n5r576saD6uaz3va/7zMT5zcP7z8X70Mb70sj708n708r71c381c761s382ND72db4393549z+4+H55+b66OL96+b+6+r67+v+8/L99PD/9vT+///9///+////0H5GmAAAADB0Uk5TAA0XMjI6OkZNVVpefX+HjJCRkpSeoausra2vs7W2t7i5v8TN1tbd3t/o6+7v8PH8u0jmrQAAAapJREFUOMtjYGBgYBZQ1sMAOpoKHAwIwF+HDfSlG9nzElADVGRuZScEVcNWiVORvY29KESRZDluRfb2VhJgRSp1OBQlgRTZW8uDFKnjUpRrZgtSZamER1Fji5MhSJG9qTgDgxoORXXd5e5mYGDMjltRXV9nTiIIxAkjKeoq8veFg5DK5rqWvgl9QDBRCklRacG8BfOhYMHs/Bq4hBySIu9Fe5DAXH+4hDRCUaXnqj3b12+EgE3rJidjVeS1ZM9ig4AgMAh1S+3HpWiFX2EJGBRXN9fhUrQyBFt0oylaahIWBQZ5bbgVrW2eMhUMyrLacCqCgx2TUnAr2gUFW1szcCpaHd7RCwLtkVlduB1uEREDAvGFXXWUBcFy5+x8MMgrwh2Yyxyy8sCgKDqtB6sijzV7dm7eAgHbNkxLwKaoznvhbqSkMjMYq6La2BlzZkHBnOmZ9VgVtVX4OLpCgUtgUzNWRXV1zS1w0Ig9CHADaZyZEwnIMGgQViTLoEpYkQiDWBUhNTXcDKwEDdJnZGAQJKCmgQtUQvHhVaPNCSkRWQSVdfWwAi1FHiagAgAPu3js6FbZbgAAAABJRU5ErkJggg==";
|
||||
@ -158,7 +158,7 @@ var script = {
|
||||
// 跳转office在线预览
|
||||
previewToPathClick(item) {
|
||||
console.log(item);
|
||||
if (this.mode == 'preview' || this.mode == 'reader') {
|
||||
if (this.mode == 'preview') {
|
||||
this.$EventBus.$emit('learningStatistics', {
|
||||
type: 'doc',
|
||||
info: null,
|
||||
@ -1417,7 +1417,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-7dcd39ad";
|
||||
const __vue_scope_id__ = "data-v-36ca6030";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1 +1 @@
|
||||
.preview-item-file[data-v-7dcd39ad]:hover,.slip-over-cover[data-v-7dcd39ad]:hover{cursor:pointer}
|
||||
.preview-item-file[data-v-36ca6030]:hover,.slip-over-cover[data-v-36ca6030]:hover{cursor:pointer}
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-ebook-group-h5[data-v-55908341] {
|
||||
.xml-single-ebook-group-h5[data-v-48a57526] {
|
||||
}
|
||||
.xml-single-ebook-group-pc[data-v-55908341] {
|
||||
.xml-single-ebook-group-pc[data-v-48a57526] {
|
||||
}
|
||||
.xml-single-ebook-group-pad[data-v-55908341] {
|
||||
.xml-single-ebook-group-pad[data-v-48a57526] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -306,7 +306,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-55908341";
|
||||
const __vue_scope_id__ = "data-v-48a57526";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-ebook-group-h5[data-v-af9b8d4c] {
|
||||
.xml-single-ebook-group-h5[data-v-ebf14e08] {
|
||||
}
|
||||
.xml-single-ebook-group-pc[data-v-af9b8d4c] {
|
||||
.xml-single-ebook-group-pc[data-v-ebf14e08] {
|
||||
}
|
||||
.xml-single-ebook-group-pad[data-v-af9b8d4c] {
|
||||
.xml-single-ebook-group-pad[data-v-ebf14e08] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -128,10 +128,6 @@ var script = {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
bookReaderPath: {
|
||||
type: String,
|
||||
default: ''
|
||||
},
|
||||
extendParams: {
|
||||
type: Object,
|
||||
default: function () {
|
||||
@ -309,7 +305,6 @@ var __vue_render__ = function () {
|
||||
"rule-index": _vm.ruleIndex,
|
||||
mode: _vm.mode,
|
||||
resourceBasisPath: _vm.resourceBasisPath,
|
||||
bookReaderPath: _vm.bookReaderPath,
|
||||
isReader: _vm.isReader,
|
||||
},
|
||||
on: {
|
||||
@ -330,7 +325,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-af9b8d4c";
|
||||
const __vue_scope_id__ = "data-v-ebf14e08";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-ebook-group-h5[data-v-0b9200e9] {
|
||||
.xml-single-ebook-group-h5[data-v-12d3f00e] {
|
||||
}
|
||||
.xml-single-ebook-group-pc[data-v-0b9200e9] {
|
||||
.xml-single-ebook-group-pc[data-v-12d3f00e] {
|
||||
}
|
||||
.xml-single-ebook-group-pad[data-v-0b9200e9] {
|
||||
.xml-single-ebook-group-pad[data-v-12d3f00e] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -329,7 +329,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-0b9200e9";
|
||||
const __vue_scope_id__ = "data-v-12d3f00e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-music-group-h5[data-v-0ba26268] {
|
||||
.xml-single-music-group-h5[data-v-485b2a47] {
|
||||
}
|
||||
.xml-single-music-group-pc[data-v-0ba26268] {
|
||||
.xml-single-music-group-pc[data-v-485b2a47] {
|
||||
}
|
||||
.xml-single-music-group-pad[data-v-0ba26268] {
|
||||
.xml-single-music-group-pad[data-v-485b2a47] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -313,7 +313,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-0ba26268";
|
||||
const __vue_scope_id__ = "data-v-485b2a47";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-question-group-h5[data-v-77922a38] {
|
||||
.xml-single-question-group-h5[data-v-0f0ca4f3] {
|
||||
}
|
||||
.xml-single-question-group-pc[data-v-77922a38] {
|
||||
.xml-single-question-group-pc[data-v-0f0ca4f3] {
|
||||
}
|
||||
.xml-single-question-group-pad[data-v-77922a38] {
|
||||
.xml-single-question-group-pad[data-v-0f0ca4f3] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -345,7 +345,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-77922a38";
|
||||
const __vue_scope_id__ = "data-v-0f0ca4f3";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-question-group-h5[data-v-34ba0440] {
|
||||
.xml-single-question-group-h5[data-v-af0e1476] {
|
||||
}
|
||||
.xml-single-question-group-pc[data-v-34ba0440] {
|
||||
.xml-single-question-group-pc[data-v-af0e1476] {
|
||||
}
|
||||
.xml-single-question-group-pad[data-v-34ba0440] {
|
||||
.xml-single-question-group-pad[data-v-af0e1476] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -337,7 +337,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-34ba0440";
|
||||
const __vue_scope_id__ = "data-v-af0e1476";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-question-group-h5[data-v-34ba0440] {
|
||||
.xml-single-question-group-h5[data-v-af0e1476] {
|
||||
}
|
||||
.xml-single-question-group-pc[data-v-34ba0440] {
|
||||
.xml-single-question-group-pc[data-v-af0e1476] {
|
||||
}
|
||||
.xml-single-question-group-pad[data-v-34ba0440] {
|
||||
.xml-single-question-group-pad[data-v-af0e1476] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -337,7 +337,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-34ba0440";
|
||||
const __vue_scope_id__ = "data-v-af0e1476";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-text-group-h5[data-v-05ca7fa4] {
|
||||
.xml-single-text-group-h5[data-v-1257bb6e] {
|
||||
}
|
||||
.xml-single-text-group-pc[data-v-05ca7fa4] {
|
||||
.xml-single-text-group-pc[data-v-1257bb6e] {
|
||||
}
|
||||
.xml-single-text-group-pad[data-v-05ca7fa4] {
|
||||
.xml-single-text-group-pad[data-v-1257bb6e] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -361,7 +361,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-05ca7fa4";
|
||||
const __vue_scope_id__ = "data-v-1257bb6e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-video-group-h5[data-v-3ae74720] {
|
||||
.xml-single-video-group-h5[data-v-bdcc21f6] {
|
||||
}
|
||||
.xml-single-video-group-pc[data-v-3ae74720] {
|
||||
.xml-single-video-group-pc[data-v-bdcc21f6] {
|
||||
}
|
||||
.xml-single-video-group-pad[data-v-3ae74720] {
|
||||
.xml-single-video-group-pad[data-v-bdcc21f6] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -325,7 +325,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-3ae74720";
|
||||
const __vue_scope_id__ = "data-v-bdcc21f6";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,75 +1,72 @@
|
||||
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=tenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eleventh.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=ninth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventh.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
/*# sourceMappingURL=tenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme2.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=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||
@ -78,31 +75,34 @@
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Bluetheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Bluetheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Bluetheme4.vue.map */
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Bluetheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Bluetheme2.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
|
||||
/*# sourceMappingURL=Bluetheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-483bfd20] {
|
||||
}
|
||||
.xml-text-pc[data-v-4666e3b2] {
|
||||
.xml-text-pc[data-v-483bfd20] {
|
||||
}
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
.xml-text-h5[data-v-483bfd20] {
|
||||
}
|
||||
|
||||
.xml-text-h5 .inline-audio-wrap,
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
import crypto from 'crypto';
|
||||
@ -9364,7 +9364,7 @@ __vue_render__$B._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$A = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$A = "data-v-7aa6099d";
|
||||
const __vue_scope_id__$A = "data-v-0781f4c2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$A = undefined;
|
||||
/* functional template */
|
||||
@ -9436,7 +9436,7 @@ class MagicLink extends HTMLElement {
|
||||
}
|
||||
.magic-link {
|
||||
display: inline;
|
||||
font-size:16px;
|
||||
// font-size:16px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
text-align: left;
|
||||
@ -48778,6 +48778,7 @@ var script$x = {
|
||||
dataName: this.blockDataName,
|
||||
data: this.pBlockData,
|
||||
graphLinks: this.currentRule.data?.graphLinks || [],
|
||||
pureTextComponent: this.isPureTextComponent,
|
||||
dataIndex: this.dataIndex,
|
||||
blockId: this.blockId
|
||||
};
|
||||
@ -48897,7 +48898,7 @@ var script$x = {
|
||||
let _this = this;
|
||||
this.blockData = this.pBlockData;
|
||||
if (!this.blockData.html) {
|
||||
this.blockData.html = '<span>暂无内容</span>';
|
||||
this.blockData.html = '<span>暂无内容1</span>';
|
||||
}
|
||||
`#${this.blockId} .richtext-reset-wrapper--view`;
|
||||
let mceMagicLinkRegistered = window.customElements?.get('magic-link');
|
||||
@ -48927,15 +48928,6 @@ var script$x = {
|
||||
}]
|
||||
});
|
||||
});
|
||||
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) {
|
||||
let {
|
||||
plaintext,
|
||||
@ -48943,9 +48935,10 @@ var script$x = {
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
stylemode
|
||||
stylemode,
|
||||
showType,
|
||||
hotzoneType
|
||||
} = e.target.dataset;
|
||||
console.log('%c%s', 'font-size:2em;background: #00965E;color: #FFF', 'magic-link点击', e, e.target.dataset);
|
||||
if (_this.mode === 'editor') {
|
||||
_this.$message.info('当前内容仅支持在预览模式下查看');
|
||||
return;
|
||||
@ -48957,7 +48950,7 @@ var script$x = {
|
||||
multiple: true,
|
||||
nowImgIndex: 0,
|
||||
imgList: [{
|
||||
url: getFileUrl(content),
|
||||
url: content,
|
||||
title: plaintext
|
||||
}]
|
||||
});
|
||||
@ -48967,7 +48960,7 @@ var script$x = {
|
||||
_this.$EventBus.$emit('handleMagicLinkAudioPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -48981,7 +48974,7 @@ var script$x = {
|
||||
_this.$EventBus.$emit('handleMagicLinkVideoPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -48993,6 +48986,9 @@ var script$x = {
|
||||
if (type === 'richtext') {
|
||||
content = content.replace(/text\-align:\s?justify/g, 'text-align:left');
|
||||
// 魔链富文本
|
||||
if (showType === 'popover') {
|
||||
return;
|
||||
}
|
||||
_this.inlineWordsModal = {
|
||||
title,
|
||||
content,
|
||||
@ -49003,7 +48999,7 @@ var script$x = {
|
||||
if (type === 'sheet') {
|
||||
// 插入活页
|
||||
_this.$EventBus.$emit('hotzoneClick', {
|
||||
type: 'looseleaf',
|
||||
type: hotzoneType || 'looseleaf',
|
||||
value: content,
|
||||
label: title
|
||||
});
|
||||
@ -49199,8 +49195,8 @@ var script$x = {
|
||||
let ADom = document.getElementById(this.blockId).getElementsByTagName('a') || [];
|
||||
if (ADom) {
|
||||
for (let i = 0; i < ADom.length; i++) {
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
let href = ADom[i].href;
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
ADom[i].href = 'javascript: void(0)';
|
||||
ADom[i].onclick = function (e) {
|
||||
_this.$EventBus.$emit('openTextHyperlink', {
|
||||
@ -51058,7 +51054,7 @@ __vue_render__$x._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$x = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$x = "data-v-4666e3b2";
|
||||
const __vue_scope_id__$x = "data-v-483bfd20";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$x = undefined;
|
||||
/* functional template */
|
||||
@ -51330,7 +51326,7 @@ __vue_render__$w._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$w = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$w = "data-v-2bc4bb7c";
|
||||
const __vue_scope_id__$w = "data-v-0d9893a7";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$w = undefined;
|
||||
/* functional template */
|
||||
@ -51525,7 +51521,7 @@ __vue_render__$v._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$v = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$v = "data-v-6f11c332";
|
||||
const __vue_scope_id__$v = "data-v-282ecbe8";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$v = undefined;
|
||||
/* functional template */
|
||||
@ -51716,7 +51712,7 @@ __vue_render__$u._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$u = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$u = "data-v-64b07e51";
|
||||
const __vue_scope_id__$u = "data-v-5b4955b6";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$u = undefined;
|
||||
/* functional template */
|
||||
@ -51913,7 +51909,7 @@ __vue_render__$t._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$t = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$t = "data-v-701026d2";
|
||||
const __vue_scope_id__$t = "data-v-67a9825c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$t = undefined;
|
||||
/* functional template */
|
||||
@ -52110,7 +52106,7 @@ __vue_render__$s._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$s = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$s = "data-v-ca50cd36";
|
||||
const __vue_scope_id__$s = "data-v-34d4db40";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$s = undefined;
|
||||
/* functional template */
|
||||
@ -52311,7 +52307,7 @@ __vue_render__$r._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$r = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$r = "data-v-ebd7fe48";
|
||||
const __vue_scope_id__$r = "data-v-017b6cfe";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$r = undefined;
|
||||
/* functional template */
|
||||
@ -52532,7 +52528,7 @@ __vue_render__$q._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$q = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$q = "data-v-6c00036e";
|
||||
const __vue_scope_id__$q = "data-v-6b231fd3";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$q = undefined;
|
||||
/* functional template */
|
||||
@ -52729,7 +52725,7 @@ __vue_render__$p._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$p = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$p = "data-v-1888461c";
|
||||
const __vue_scope_id__$p = "data-v-56fdc257";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$p = undefined;
|
||||
/* functional template */
|
||||
@ -52926,7 +52922,7 @@ __vue_render__$o._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$o = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$o = "data-v-43776a56";
|
||||
const __vue_scope_id__$o = "data-v-7004b951";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$o = undefined;
|
||||
/* functional template */
|
||||
@ -53123,7 +53119,7 @@ __vue_render__$n._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$n = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$n = "data-v-1d7ec26a";
|
||||
const __vue_scope_id__$n = "data-v-1d713136";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$n = undefined;
|
||||
/* functional template */
|
||||
@ -53322,7 +53318,7 @@ __vue_render__$m._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$m = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$m = "data-v-390efcba";
|
||||
const __vue_scope_id__$m = "data-v-14b2e342";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$m = undefined;
|
||||
/* functional template */
|
||||
@ -53533,7 +53529,7 @@ __vue_render__$l._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$l = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$l = "data-v-cc50973a";
|
||||
const __vue_scope_id__$l = "data-v-7554e79e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$l = undefined;
|
||||
/* functional template */
|
||||
@ -53744,7 +53740,7 @@ __vue_render__$k._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$k = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$k = "data-v-acfeac7c";
|
||||
const __vue_scope_id__$k = "data-v-a0d12086";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$k = undefined;
|
||||
/* functional template */
|
||||
@ -53955,7 +53951,7 @@ __vue_render__$j._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$j = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$j = "data-v-3fb693db";
|
||||
const __vue_scope_id__$j = "data-v-1b33c716";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$j = undefined;
|
||||
/* functional template */
|
||||
@ -54166,7 +54162,7 @@ __vue_render__$i._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$i = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$i = "data-v-12a60397";
|
||||
const __vue_scope_id__$i = "data-v-23b9925c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$i = undefined;
|
||||
/* functional template */
|
||||
@ -54377,7 +54373,7 @@ __vue_render__$h._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$h = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$h = "data-v-34d5195a";
|
||||
const __vue_scope_id__$h = "data-v-7ddab2e4";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$h = undefined;
|
||||
/* functional template */
|
||||
@ -54588,7 +54584,7 @@ __vue_render__$g._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$g = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$g = "data-v-8ef639e2";
|
||||
const __vue_scope_id__$g = "data-v-d7fbd36c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$g = undefined;
|
||||
/* functional template */
|
||||
@ -54779,7 +54775,7 @@ __vue_render__$f._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$f = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$f = "data-v-1871b8e8";
|
||||
const __vue_scope_id__$f = "data-v-1357e2a3";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$f = undefined;
|
||||
/* functional template */
|
||||
@ -54970,7 +54966,7 @@ __vue_render__$e._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$e = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$e = "data-v-73611cf6";
|
||||
const __vue_scope_id__$e = "data-v-7d94c980";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$e = undefined;
|
||||
/* functional template */
|
||||
@ -55161,7 +55157,7 @@ __vue_render__$d._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$d = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$d = "data-v-742d2a22";
|
||||
const __vue_scope_id__$d = "data-v-6f1353dd";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$d = undefined;
|
||||
/* functional template */
|
||||
@ -55352,7 +55348,7 @@ __vue_render__$c._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$c = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$c = "data-v-220ae2bf";
|
||||
const __vue_scope_id__$c = "data-v-1cf10c7a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$c = undefined;
|
||||
/* functional template */
|
||||
@ -55543,7 +55539,7 @@ __vue_render__$b._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$b = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$b = "data-v-6f969a42";
|
||||
const __vue_scope_id__$b = "data-v-8216ca78";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$b = undefined;
|
||||
/* functional template */
|
||||
@ -55734,7 +55730,7 @@ __vue_render__$a._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$a = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$a = "data-v-6710eb5e";
|
||||
const __vue_scope_id__$a = "data-v-5dd0d343";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$a = undefined;
|
||||
/* functional template */
|
||||
@ -55925,7 +55921,7 @@ __vue_render__$9._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$9 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$9 = "data-v-05ed23dd";
|
||||
const __vue_scope_id__$9 = "data-v-06a5e87c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$9 = undefined;
|
||||
/* functional template */
|
||||
@ -56116,7 +56112,7 @@ __vue_render__$8._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$8 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$8 = "data-v-b66d4748";
|
||||
const __vue_scope_id__$8 = "data-v-c8ed777e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$8 = undefined;
|
||||
/* functional template */
|
||||
@ -56307,7 +56303,7 @@ __vue_render__$7._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$7 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$7 = "data-v-9ab9b2a6";
|
||||
const __vue_scope_id__$7 = "data-v-6f8cced2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$7 = undefined;
|
||||
/* functional template */
|
||||
@ -56498,7 +56494,7 @@ __vue_render__$6._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$6 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$6 = "data-v-40305b6c";
|
||||
const __vue_scope_id__$6 = "data-v-05cbf8de";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$6 = undefined;
|
||||
/* functional template */
|
||||
@ -56689,7 +56685,7 @@ __vue_render__$5._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$5 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$5 = "data-v-3e15c828";
|
||||
const __vue_scope_id__$5 = "data-v-fdb594e6";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$5 = undefined;
|
||||
/* functional template */
|
||||
@ -56880,7 +56876,7 @@ __vue_render__$4._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$4 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$4 = "data-v-5b4ac4ea";
|
||||
const __vue_scope_id__$4 = "data-v-18346d0f";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$4 = undefined;
|
||||
/* functional template */
|
||||
@ -57071,7 +57067,7 @@ __vue_render__$3._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$3 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$3 = "data-v-2fc4c2f6";
|
||||
const __vue_scope_id__$3 = "data-v-93e0d61e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$3 = undefined;
|
||||
/* functional template */
|
||||
@ -57262,7 +57258,7 @@ __vue_render__$2._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$2 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$2 = "data-v-c19e225a";
|
||||
const __vue_scope_id__$2 = "data-v-257bc0ce";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$2 = undefined;
|
||||
/* functional template */
|
||||
@ -57453,7 +57449,7 @@ __vue_render__$1._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-0e9d1ab0";
|
||||
const __vue_scope_id__$1 = "data-v-d63026aa";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -57644,7 +57640,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-7e09468d";
|
||||
const __vue_scope_id__ = "data-v-04541888";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
@ -367,7 +367,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-326ad307";
|
||||
const __vue_scope_id__ = "data-v-321184ac";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,3 +1,11 @@
|
||||
|
||||
.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-link-wrap {
|
||||
align-items: center;
|
||||
@ -69,14 +77,6 @@
|
||||
|
||||
/*# sourceMappingURL=XmlText.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
}
|
||||
.xml-text-pc[data-v-4666e3b2] {
|
||||
}
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*# sourceMappingURL=XmlTextDialog.vue.map */
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
import crypto from 'crypto';
|
||||
@ -9364,7 +9364,7 @@ __vue_render__$4._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$3 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$3 = "data-v-7aa6099d";
|
||||
const __vue_scope_id__$3 = "data-v-0781f4c2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$3 = undefined;
|
||||
/* functional template */
|
||||
@ -9436,7 +9436,7 @@ class MagicLink extends HTMLElement {
|
||||
}
|
||||
.magic-link {
|
||||
display: inline;
|
||||
font-size:16px;
|
||||
// font-size:16px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
text-align: left;
|
||||
@ -48778,6 +48778,7 @@ var script = {
|
||||
dataName: this.blockDataName,
|
||||
data: this.pBlockData,
|
||||
graphLinks: this.currentRule.data?.graphLinks || [],
|
||||
pureTextComponent: this.isPureTextComponent,
|
||||
dataIndex: this.dataIndex,
|
||||
blockId: this.blockId
|
||||
};
|
||||
@ -48897,7 +48898,7 @@ var script = {
|
||||
let _this = this;
|
||||
this.blockData = this.pBlockData;
|
||||
if (!this.blockData.html) {
|
||||
this.blockData.html = '<span>暂无内容</span>';
|
||||
this.blockData.html = '<span>暂无内容1</span>';
|
||||
}
|
||||
`#${this.blockId} .richtext-reset-wrapper--view`;
|
||||
let mceMagicLinkRegistered = window.customElements?.get('magic-link');
|
||||
@ -48927,15 +48928,6 @@ var script = {
|
||||
}]
|
||||
});
|
||||
});
|
||||
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) {
|
||||
let {
|
||||
plaintext,
|
||||
@ -48943,9 +48935,10 @@ var script = {
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
stylemode
|
||||
stylemode,
|
||||
showType,
|
||||
hotzoneType
|
||||
} = e.target.dataset;
|
||||
console.log('%c%s', 'font-size:2em;background: #00965E;color: #FFF', 'magic-link点击', e, e.target.dataset);
|
||||
if (_this.mode === 'editor') {
|
||||
_this.$message.info('当前内容仅支持在预览模式下查看');
|
||||
return;
|
||||
@ -48957,7 +48950,7 @@ var script = {
|
||||
multiple: true,
|
||||
nowImgIndex: 0,
|
||||
imgList: [{
|
||||
url: getFileUrl(content),
|
||||
url: content,
|
||||
title: plaintext
|
||||
}]
|
||||
});
|
||||
@ -48967,7 +48960,7 @@ var script = {
|
||||
_this.$EventBus.$emit('handleMagicLinkAudioPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -48981,7 +48974,7 @@ var script = {
|
||||
_this.$EventBus.$emit('handleMagicLinkVideoPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -48993,6 +48986,9 @@ var script = {
|
||||
if (type === 'richtext') {
|
||||
content = content.replace(/text\-align:\s?justify/g, 'text-align:left');
|
||||
// 魔链富文本
|
||||
if (showType === 'popover') {
|
||||
return;
|
||||
}
|
||||
_this.inlineWordsModal = {
|
||||
title,
|
||||
content,
|
||||
@ -49003,7 +48999,7 @@ var script = {
|
||||
if (type === 'sheet') {
|
||||
// 插入活页
|
||||
_this.$EventBus.$emit('hotzoneClick', {
|
||||
type: 'looseleaf',
|
||||
type: hotzoneType || 'looseleaf',
|
||||
value: content,
|
||||
label: title
|
||||
});
|
||||
@ -49199,8 +49195,8 @@ var script = {
|
||||
let ADom = document.getElementById(this.blockId).getElementsByTagName('a') || [];
|
||||
if (ADom) {
|
||||
for (let i = 0; i < ADom.length; i++) {
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
let href = ADom[i].href;
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
ADom[i].href = 'javascript: void(0)';
|
||||
ADom[i].onclick = function (e) {
|
||||
_this.$EventBus.$emit('openTextHyperlink', {
|
||||
@ -51058,7 +51054,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-4666e3b2";
|
||||
const __vue_scope_id__ = "data-v-483bfd20";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
@charset "UTF-8";.xml-hevue-imgpreview-wrap{position:fixed;top:0;bottom:0;right:0;left:0;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;z-index:9999;color:rgba(255,255,255,.6)}.xml-hevue-imgpreview-wrap .he-img-wrap{width:100%;height:100%;text-align:center;vertical-align:middle;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xml-hevue-imgpreview-wrap .arrow{width:42px;height:42px;text-align:center;line-height:42px;position:absolute;top:50%;border-radius:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);-ms-transform:translateY(-50%);font-size:24px;cursor:pointer;-webkit-transition:all .2s;transition:all .2s;background:rgba(0,0,0,.3)}.xml-hevue-imgpreview-wrap .arrow:hover{opacity:.8;-webkit-transform:translateY(-50%) scale(1.2);transform:translateY(-50%) scale(1.2)}.xml-hevue-imgpreview-wrap .arrow-left{left:50px}.xml-hevue-imgpreview-wrap .arrow-right{right:50px}.xml-hevue-imgpreview-wrap .he-close-icon{position:absolute;right:20px;top:50px;z-index:2;width:36px;height:36px;font-size:22px;line-height:36px;text-align:center;border-radius:50%;cursor:pointer;-webkit-transition:all .2s;transition:all .2s;background:rgba(0,0,0,.3)}.xml-hevue-imgpreview-wrap .he-close-icon:hover{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.xml-hevue-imgpreview-wrap .he-control-bar-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;position:absolute;width:100%;bottom:calc(5% + 80px);left:0}.xml-hevue-imgpreview-wrap .he-control-bar{height:44px;bottom:10%;padding:0 22px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:22px;margin:0 auto;background:rgba(0,0,0,.3)}.xml-hevue-imgpreview-wrap .he-control-title{position:absolute;top:30px;left:0;width:100%;padding:0 20px;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;color:#fff;z-index:1}.xml-hevue-imgpreview-wrap .he-control-num{position:absolute;bottom:5%;left:0;width:100%;padding:0 22px;font-size:16px;background:rgba(0,0,0,.3)}.xml-hevue-imgpreview-wrap .he-control-num .briefIntroduction{position:relative;margin:0 auto;max-width:800px;max-height:70vh;overflow-y:scroll}.xml-hevue-imgpreview-wrap .he-control-num .briefIntroduction .expand_and_collapse{position:absolute;right:0;bottom:0;color:#299fff;cursor:pointer}.xml-hevue-imgpreview-wrap .he-control-num .text-ellipsis{overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:3;display:-webkit-box;-webkit-box-orient:vertical}.xml-hevue-imgpreview-wrap .he-control-btn{line-height:44px;font-size:24px;cursor:pointer;padding:0 9px;-webkit-transition:all .2s;transition:all .2s}.xml-hevue-imgpreview-wrap .he-control-btn:hover{-webkit-transform:scale(1.2);transform:scale(1.2)}.xml-hevue-imgpreview-wrap .fade-enter-active,.xml-hevue-imgpreview-wrap .fade-leave-active{-webkit-transition:opacity .3s;transition:opacity .3s}.xml-hevue-imgpreview-wrap .fade-enter,.xml-hevue-imgpreview-wrap .fade-leave-to{opacity:0}.xml-hevue-imgpreview-wrap .hevue-img-status-icon{font-size:56px}.xml-hevue-imgpreview-wrap .rotate-animation{-webkit-animation:rotate 1.5s linear infinite;animation:rotate 1.5s linear infinite}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.xml-hevue-imgpreview-wrap .he-img-wrap{background:rgba(0,0,0,.8);backdrop-filter:blur(0)}.he-close-icon,.he-control-num,.xml-hevue-imgpreview-wrap .arrow,.xml-hevue-imgpreview-wrap .he-control-bar{background:rgba(0,0,0,.3);backdrop-filter:blur(5px)}
|
||||
@charset "UTF-8";.xml-hevue-imgpreview-wrap{position:fixed;top:0;bottom:0;right:0;left:0;user-select:none;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;z-index:9999;color:rgba(255,255,255,.6)}.xml-hevue-imgpreview-wrap .he-img-wrap{width:100%;height:100%;text-align:center;vertical-align:middle;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.xml-hevue-imgpreview-wrap .arrow{width:42px;height:42px;text-align:center;line-height:42px;position:absolute;top:50%;border-radius:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);-ms-transform:translateY(-50%);font-size:24px;cursor:pointer;-webkit-transition:all .2s;transition:all .2s;background:rgba(0,0,0,.3)}.xml-hevue-imgpreview-wrap .arrow:hover{opacity:.8;-webkit-transform:translateY(-50%) scale(1.2);transform:translateY(-50%) scale(1.2)}.xml-hevue-imgpreview-wrap .arrow-left{left:50px}.xml-hevue-imgpreview-wrap .arrow-right{right:50px}.xml-hevue-imgpreview-wrap .he-close-icon{position:absolute;right:20px;top:50px;z-index:2;width:36px;height:36px;font-size:22px;line-height:36px;text-align:center;border-radius:50%;cursor:pointer;-webkit-transition:all .2s;transition:all .2s;background:rgba(0,0,0,.3)}.xml-hevue-imgpreview-wrap .he-close-icon:hover{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.xml-hevue-imgpreview-wrap .he-control-bar-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;position:absolute;width:100%;bottom:calc(5% + 80px);left:0}.xml-hevue-imgpreview-wrap .he-control-bar{height:44px;bottom:10%;padding:0 22px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:22px;margin:0 auto;background:rgba(0,0,0,.3)}.xml-hevue-imgpreview-wrap .he-control-title{position:absolute;top:20px;left:0;width:100%;padding:0 20px;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;color:#fff;z-index:1;font-size:20px;font-family:PingFang SC;font-weight:500}.xml-hevue-imgpreview-wrap .he-control-num{position:absolute;bottom:5%;left:0;width:100%;padding:0 22px;font-size:16px;background:rgba(0,0,0,.3)}.xml-hevue-imgpreview-wrap .he-control-num .briefIntroduction{position:relative;margin:0 auto;max-width:800px;max-height:70vh;overflow-y:scroll}.xml-hevue-imgpreview-wrap .he-control-num .briefIntroduction .expand_and_collapse{position:absolute;right:0;bottom:0;color:#299fff;cursor:pointer}.xml-hevue-imgpreview-wrap .he-control-num .text-ellipsis{overflow:hidden;text-overflow:ellipsis;-webkit-line-clamp:3;display:-webkit-box;-webkit-box-orient:vertical}.xml-hevue-imgpreview-wrap .he-control-btn{line-height:44px;font-size:24px;cursor:pointer;padding:0 9px;-webkit-transition:all .2s;transition:all .2s}.xml-hevue-imgpreview-wrap .he-control-btn:hover{-webkit-transform:scale(1.2);transform:scale(1.2)}.xml-hevue-imgpreview-wrap .fade-enter-active,.xml-hevue-imgpreview-wrap .fade-leave-active{-webkit-transition:opacity .3s;transition:opacity .3s}.xml-hevue-imgpreview-wrap .fade-enter,.xml-hevue-imgpreview-wrap .fade-leave-to{opacity:0}.xml-hevue-imgpreview-wrap .hevue-img-status-icon{font-size:56px}.xml-hevue-imgpreview-wrap .rotate-animation{-webkit-animation:rotate 1.5s linear infinite;animation:rotate 1.5s linear infinite}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes rotate{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.xml-hevue-imgpreview-wrap .he-img-wrap{background:rgba(0,0,0,.8);backdrop-filter:blur(0)}.he-close-icon,.he-control-num,.xml-hevue-imgpreview-wrap .arrow,.xml-hevue-imgpreview-wrap .he-control-bar{background:rgba(0,0,0,.3);backdrop-filter:blur(5px)}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
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
@ -1,108 +1,93 @@
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=semicircle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=rectangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=rotundity.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=hexagon.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=square.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=thirteenth.vue.map */
|
||||
/*# sourceMappingURL=rectangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=triangle.vue.map */
|
||||
/*# sourceMappingURL=hexagon.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
/*# sourceMappingURL=rotundity.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=square.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=twelfth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourteen.vue.map */
|
||||
/*# sourceMappingURL=semicircle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=triangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=thirteenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=nineteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventeen.vue.map */
|
||||
/*# sourceMappingURL=fourteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighteen2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Twentythree.vue.map */
|
||||
/*# sourceMappingURL=SanQintheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=twenty.vue.map */
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme6.vue.map */
|
||||
/*# sourceMappingURL=seventeen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Twentyone.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme3.vue.map */
|
||||
/*# sourceMappingURL=Greentheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme6.vue.map */
|
||||
@ -111,18 +96,33 @@
|
||||
/*# sourceMappingURL=SanQintheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Twentytwo.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Twentyfour.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme1.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=twenty.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Knowledge.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Twentytwo.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Twentythree.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Twentyfive.vue.map */
|
||||
.xml-text-h5 .inline-audio-wrap,
|
||||
.xml-text-h5 .inline-link-wrap {
|
||||
@ -195,11 +195,11 @@
|
||||
|
||||
/*# sourceMappingURL=XmlText.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
.xml-text-h5[data-v-483bfd20] {
|
||||
}
|
||||
.xml-text-pc[data-v-4666e3b2] {
|
||||
.xml-text-pc[data-v-483bfd20] {
|
||||
}
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
.xml-text-h5[data-v-483bfd20] {
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
import crypto from 'crypto';
|
||||
@ -9364,7 +9364,7 @@ __vue_render__$K._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$J = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$J = "data-v-7aa6099d";
|
||||
const __vue_scope_id__$J = "data-v-0781f4c2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$J = undefined;
|
||||
/* functional template */
|
||||
@ -9436,7 +9436,7 @@ class MagicLink extends HTMLElement {
|
||||
}
|
||||
.magic-link {
|
||||
display: inline;
|
||||
font-size:16px;
|
||||
// font-size:16px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
text-align: left;
|
||||
@ -48778,6 +48778,7 @@ var script$G = {
|
||||
dataName: this.blockDataName,
|
||||
data: this.pBlockData,
|
||||
graphLinks: this.currentRule.data?.graphLinks || [],
|
||||
pureTextComponent: this.isPureTextComponent,
|
||||
dataIndex: this.dataIndex,
|
||||
blockId: this.blockId
|
||||
};
|
||||
@ -48897,7 +48898,7 @@ var script$G = {
|
||||
let _this = this;
|
||||
this.blockData = this.pBlockData;
|
||||
if (!this.blockData.html) {
|
||||
this.blockData.html = '<span>暂无内容</span>';
|
||||
this.blockData.html = '<span>暂无内容1</span>';
|
||||
}
|
||||
`#${this.blockId} .richtext-reset-wrapper--view`;
|
||||
let mceMagicLinkRegistered = window.customElements?.get('magic-link');
|
||||
@ -48927,15 +48928,6 @@ var script$G = {
|
||||
}]
|
||||
});
|
||||
});
|
||||
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) {
|
||||
let {
|
||||
plaintext,
|
||||
@ -48943,9 +48935,10 @@ var script$G = {
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
stylemode
|
||||
stylemode,
|
||||
showType,
|
||||
hotzoneType
|
||||
} = e.target.dataset;
|
||||
console.log('%c%s', 'font-size:2em;background: #00965E;color: #FFF', 'magic-link点击', e, e.target.dataset);
|
||||
if (_this.mode === 'editor') {
|
||||
_this.$message.info('当前内容仅支持在预览模式下查看');
|
||||
return;
|
||||
@ -48957,7 +48950,7 @@ var script$G = {
|
||||
multiple: true,
|
||||
nowImgIndex: 0,
|
||||
imgList: [{
|
||||
url: getFileUrl(content),
|
||||
url: content,
|
||||
title: plaintext
|
||||
}]
|
||||
});
|
||||
@ -48967,7 +48960,7 @@ var script$G = {
|
||||
_this.$EventBus.$emit('handleMagicLinkAudioPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -48981,7 +48974,7 @@ var script$G = {
|
||||
_this.$EventBus.$emit('handleMagicLinkVideoPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -48993,6 +48986,9 @@ var script$G = {
|
||||
if (type === 'richtext') {
|
||||
content = content.replace(/text\-align:\s?justify/g, 'text-align:left');
|
||||
// 魔链富文本
|
||||
if (showType === 'popover') {
|
||||
return;
|
||||
}
|
||||
_this.inlineWordsModal = {
|
||||
title,
|
||||
content,
|
||||
@ -49003,7 +48999,7 @@ var script$G = {
|
||||
if (type === 'sheet') {
|
||||
// 插入活页
|
||||
_this.$EventBus.$emit('hotzoneClick', {
|
||||
type: 'looseleaf',
|
||||
type: hotzoneType || 'looseleaf',
|
||||
value: content,
|
||||
label: title
|
||||
});
|
||||
@ -49199,8 +49195,8 @@ var script$G = {
|
||||
let ADom = document.getElementById(this.blockId).getElementsByTagName('a') || [];
|
||||
if (ADom) {
|
||||
for (let i = 0; i < ADom.length; i++) {
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
let href = ADom[i].href;
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
ADom[i].href = 'javascript: void(0)';
|
||||
ADom[i].onclick = function (e) {
|
||||
_this.$EventBus.$emit('openTextHyperlink', {
|
||||
@ -51058,7 +51054,7 @@ __vue_render__$G._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$G = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$G = "data-v-4666e3b2";
|
||||
const __vue_scope_id__$G = "data-v-483bfd20";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$G = undefined;
|
||||
/* functional template */
|
||||
@ -51358,7 +51354,7 @@ __vue_render__$F._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$F = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$F = "data-v-56a198fa";
|
||||
const __vue_scope_id__$F = "data-v-a00f2484";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$F = undefined;
|
||||
/* functional template */
|
||||
@ -51578,7 +51574,7 @@ __vue_render__$E._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$E = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$E = "data-v-2a582ff5";
|
||||
const __vue_scope_id__$E = "data-v-4411be5a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$E = undefined;
|
||||
/* functional template */
|
||||
@ -51798,7 +51794,7 @@ __vue_render__$D._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$D = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$D = "data-v-13c4d2ec";
|
||||
const __vue_scope_id__$D = "data-v-42f9a227";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$D = undefined;
|
||||
/* functional template */
|
||||
@ -52035,7 +52031,7 @@ __vue_render__$C._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$C = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$C = "data-v-566f2eb9";
|
||||
const __vue_scope_id__$C = "data-v-789d135e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$C = undefined;
|
||||
/* functional template */
|
||||
@ -52255,7 +52251,7 @@ __vue_render__$B._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$B = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$B = "data-v-0dc66d52";
|
||||
const __vue_scope_id__$B = "data-v-60f3a44d";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$B = undefined;
|
||||
/* functional template */
|
||||
@ -52471,7 +52467,7 @@ __vue_render__$A._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$A = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$A = "data-v-22bcf379";
|
||||
const __vue_scope_id__$A = "data-v-7ffab134";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$A = undefined;
|
||||
/* functional template */
|
||||
@ -52691,7 +52687,7 @@ __vue_render__$z._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$z = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$z = "data-v-0fe46bcc";
|
||||
const __vue_scope_id__$z = "data-v-6a958ef1";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$z = undefined;
|
||||
/* functional template */
|
||||
@ -52960,7 +52956,7 @@ __vue_render__$y._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$y = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$y = "data-v-1457d9f5";
|
||||
const __vue_scope_id__$y = "data-v-590b1c5a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$y = undefined;
|
||||
/* functional template */
|
||||
@ -53180,7 +53176,7 @@ __vue_render__$x._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$x = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$x = "data-v-fb782c6a";
|
||||
const __vue_scope_id__$x = "data-v-ab464720";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$x = undefined;
|
||||
/* functional template */
|
||||
@ -53449,7 +53445,7 @@ __vue_render__$w._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$w = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$w = "data-v-3f81e96d";
|
||||
const __vue_scope_id__$w = "data-v-1105c768";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$w = undefined;
|
||||
/* functional template */
|
||||
@ -53669,7 +53665,7 @@ __vue_render__$v._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$v = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$v = "data-v-44b9aa96";
|
||||
const __vue_scope_id__$v = "data-v-918d650a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$v = undefined;
|
||||
/* functional template */
|
||||
@ -53938,7 +53934,7 @@ __vue_render__$u._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$u = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$u = "data-v-7b2e45e4";
|
||||
const __vue_scope_id__$u = "data-v-7d547b9f";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$u = undefined;
|
||||
/* functional template */
|
||||
@ -54188,7 +54184,7 @@ __vue_render__$t._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$t = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$t = "data-v-57857574";
|
||||
const __vue_scope_id__$t = "data-v-65c498eb";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$t = undefined;
|
||||
/* functional template */
|
||||
@ -54406,7 +54402,7 @@ __vue_render__$s._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$s = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$s = "data-v-58b154c2";
|
||||
const __vue_scope_id__$s = "data-v-e9e72478";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$s = undefined;
|
||||
/* functional template */
|
||||
@ -54652,7 +54648,7 @@ __vue_render__$r._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$r = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$r = "data-v-30ad8667";
|
||||
const __vue_scope_id__$r = "data-v-61cb4f62";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$r = undefined;
|
||||
/* functional template */
|
||||
@ -54873,7 +54869,7 @@ __vue_render__$q._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$q = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$q = "data-v-57360cee";
|
||||
const __vue_scope_id__$q = "data-v-0dbeaeae";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$q = undefined;
|
||||
/* functional template */
|
||||
@ -55125,7 +55121,7 @@ __vue_render__$p._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$p = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$p = "data-v-05b67824";
|
||||
const __vue_scope_id__$p = "data-v-84a72f5a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$p = undefined;
|
||||
/* functional template */
|
||||
@ -55350,7 +55346,7 @@ __vue_render__$o._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$o = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$o = "data-v-6d98bf1e";
|
||||
const __vue_scope_id__$o = "data-v-2f3d022c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$o = undefined;
|
||||
/* functional template */
|
||||
@ -55575,7 +55571,7 @@ __vue_render__$n._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$n = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$n = "data-v-f6617d46";
|
||||
const __vue_scope_id__$n = "data-v-401bd1fc";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$n = undefined;
|
||||
/* functional template */
|
||||
@ -55793,7 +55789,7 @@ __vue_render__$m._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$m = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$m = "data-v-5d3475c2";
|
||||
const __vue_scope_id__$m = "data-v-6a5b4a86";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$m = undefined;
|
||||
/* functional template */
|
||||
@ -56044,7 +56040,7 @@ __vue_render__$l._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$l = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$l = "data-v-51cc33ba";
|
||||
const __vue_scope_id__$l = "data-v-9d0df996";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$l = undefined;
|
||||
/* functional template */
|
||||
@ -56305,7 +56301,7 @@ __vue_render__$k._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$k = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$k = "data-v-bdb17eca";
|
||||
const __vue_scope_id__$k = "data-v-4a8bb7c0";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$k = undefined;
|
||||
/* functional template */
|
||||
@ -56526,7 +56522,7 @@ __vue_render__$j._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$j = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$j = "data-v-5e9c58b2";
|
||||
const __vue_scope_id__$j = "data-v-25a89ed2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$j = undefined;
|
||||
/* functional template */
|
||||
@ -56749,7 +56745,7 @@ __vue_render__$i._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$i = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$i = "data-v-78c04606";
|
||||
const __vue_scope_id__$i = "data-v-9cc8123c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$i = undefined;
|
||||
/* functional template */
|
||||
@ -56969,7 +56965,7 @@ __vue_render__$h._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$h = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$h = "data-v-55b29dbc";
|
||||
const __vue_scope_id__$h = "data-v-0bfdf35d";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$h = undefined;
|
||||
/* functional template */
|
||||
@ -57201,7 +57197,7 @@ __vue_render__$g._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$g = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$g = "data-v-9e3c96d6";
|
||||
const __vue_scope_id__$g = "data-v-fb2e5160";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$g = undefined;
|
||||
/* functional template */
|
||||
@ -57459,7 +57455,7 @@ __vue_render__$f._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$f = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$f = "data-v-0d388e07";
|
||||
const __vue_scope_id__$f = "data-v-fcbe7028";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$f = undefined;
|
||||
/* functional template */
|
||||
@ -57680,7 +57676,7 @@ __vue_render__$e._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$e = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$e = "data-v-ea131be6";
|
||||
const __vue_scope_id__$e = "data-v-18d47f32";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$e = undefined;
|
||||
/* functional template */
|
||||
@ -57901,7 +57897,7 @@ __vue_render__$d._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$d = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$d = "data-v-012c196e";
|
||||
const __vue_scope_id__$d = "data-v-e1ebb2da";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$d = undefined;
|
||||
/* functional template */
|
||||
@ -58120,7 +58116,7 @@ __vue_render__$c._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$c = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$c = "data-v-848fa49e";
|
||||
const __vue_scope_id__$c = "data-v-76ad1c2c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$c = undefined;
|
||||
/* functional template */
|
||||
@ -58343,7 +58339,7 @@ __vue_render__$b._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$b = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$b = "data-v-40165113";
|
||||
const __vue_scope_id__$b = "data-v-ddb34b10";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$b = undefined;
|
||||
/* functional template */
|
||||
@ -58566,7 +58562,7 @@ __vue_render__$a._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$a = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$a = "data-v-46f2f6ac";
|
||||
const __vue_scope_id__$a = "data-v-35bbc525";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$a = undefined;
|
||||
/* functional template */
|
||||
@ -58825,7 +58821,7 @@ __vue_render__$9._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$9 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$9 = "data-v-01caee83";
|
||||
const __vue_scope_id__$9 = "data-v-c97ec630";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$9 = undefined;
|
||||
/* functional template */
|
||||
@ -59042,7 +59038,7 @@ __vue_render__$8._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$8 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$8 = "data-v-6ab7ccb4";
|
||||
const __vue_scope_id__$8 = "data-v-3841fea1";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$8 = undefined;
|
||||
/* functional template */
|
||||
@ -59259,7 +59255,7 @@ __vue_render__$7._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$7 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$7 = "data-v-6f64aba6";
|
||||
const __vue_scope_id__$7 = "data-v-3731b9d2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$7 = undefined;
|
||||
/* functional template */
|
||||
@ -59475,7 +59471,7 @@ __vue_render__$6._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$6 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$6 = "data-v-60db5a12";
|
||||
const __vue_scope_id__$6 = "data-v-0090ea12";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$6 = undefined;
|
||||
/* functional template */
|
||||
@ -59697,7 +59693,7 @@ __vue_render__$5._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$5 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$5 = "data-v-bb0b6ff2";
|
||||
const __vue_scope_id__$5 = "data-v-6f63c87c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$5 = undefined;
|
||||
/* functional template */
|
||||
@ -59925,7 +59921,7 @@ __vue_render__$4._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$4 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$4 = "data-v-0c505260";
|
||||
const __vue_scope_id__$4 = "data-v-4b5e4385";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$4 = undefined;
|
||||
/* functional template */
|
||||
@ -60157,7 +60153,7 @@ __vue_render__$3._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$3 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$3 = "data-v-6cc98c53";
|
||||
const __vue_scope_id__$3 = "data-v-4ffd4964";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$3 = undefined;
|
||||
/* functional template */
|
||||
@ -60389,7 +60385,7 @@ __vue_render__$2._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$2 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$2 = "data-v-44854066";
|
||||
const __vue_scope_id__$2 = "data-v-4be6a721";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$2 = undefined;
|
||||
/* functional template */
|
||||
@ -60623,7 +60619,7 @@ __vue_render__$1._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-12fa1bac";
|
||||
const __vue_scope_id__$1 = "data-v-0df3b9e5";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -60861,7 +60857,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-398dd67d";
|
||||
const __vue_scope_id__ = "data-v-e60d723c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,173 +1,173 @@
|
||||
.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=semicircle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=thirteenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||
/*# sourceMappingURL=rectangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventeen.vue.map */
|
||||
.title-text[data-v-616d10ee] {
|
||||
background-color: var(--background-color) !important;
|
||||
}
|
||||
.title-left[data-v-616d10ee] {
|
||||
border-color: var(--background-color) !important;
|
||||
color: var(--background-color) !important;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=nineteen.vue.map */
|
||||
/*# sourceMappingURL=fifteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=twelfth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=rectangle.vue.map */
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=hexagon.vue.map */
|
||||
/*# sourceMappingURL=semicircle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme3.vue.map */
|
||||
/*# sourceMappingURL=thirteenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Knowledge.vue.map */
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourteen.vue.map */
|
||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtythree.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyone.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=triangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtytwo.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyfour.vue.map */
|
||||
/*# sourceMappingURL=fourteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtysix.vue.map */
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=nineteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Knowledge.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=hexagon.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventeen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=triangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtynine.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtythree.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyfour.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyfive.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleCrane.vue.map */
|
||||
/*# sourceMappingURL=Thirtytwo.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleTearcher.vue.map */
|
||||
/*# sourceMappingURL=Redtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=BuleRectangleTwo.vue.map */
|
||||
/*# sourceMappingURL=Thirtyone.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=BuleRectangle.vue.map */
|
||||
/*# sourceMappingURL=Sevenpagefour.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyseven.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyeight.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleLogging.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagefour.vue.map */
|
||||
.title-bgimg[data-v-025e9706] {
|
||||
/*# sourceMappingURL=titleQuestion.vue.map */
|
||||
.title-bgimg[data-v-f86c7abc] {
|
||||
background-image: url(../style/title-text-bgimg.png);
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=Sevenpageone.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagetwo.vue.map */
|
||||
/*# sourceMappingURL=BuleRectangleTwo.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyseven.vue.map */
|
||||
/*# sourceMappingURL=titleCrane.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagethree.vue.map */
|
||||
/*# sourceMappingURL=BuleRectangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleQuestion.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagefive.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleLight.vue.map */
|
||||
/*# sourceMappingURL=Thirtysix.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleText.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=Fortyone.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagethree.vue.map */
|
||||
.xml-text-h5 .inline-audio-wrap,
|
||||
.xml-text-h5 .inline-link-wrap {
|
||||
align-items: center;
|
||||
@ -239,11 +239,11 @@
|
||||
|
||||
/*# sourceMappingURL=XmlText.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
.xml-text-h5[data-v-483bfd20] {
|
||||
}
|
||||
.xml-text-pc[data-v-4666e3b2] {
|
||||
.xml-text-pc[data-v-483bfd20] {
|
||||
}
|
||||
.xml-text-h5[data-v-4666e3b2] {
|
||||
.xml-text-h5[data-v-483bfd20] {
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
import crypto from 'crypto';
|
||||
@ -9364,7 +9364,7 @@ __vue_render__$W._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$V = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$V = "data-v-7aa6099d";
|
||||
const __vue_scope_id__$V = "data-v-0781f4c2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$V = undefined;
|
||||
/* functional template */
|
||||
@ -9436,7 +9436,7 @@ class MagicLink extends HTMLElement {
|
||||
}
|
||||
.magic-link {
|
||||
display: inline;
|
||||
font-size:16px;
|
||||
// font-size:16px;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
text-align: left;
|
||||
@ -48778,6 +48778,7 @@ var script$S = {
|
||||
dataName: this.blockDataName,
|
||||
data: this.pBlockData,
|
||||
graphLinks: this.currentRule.data?.graphLinks || [],
|
||||
pureTextComponent: this.isPureTextComponent,
|
||||
dataIndex: this.dataIndex,
|
||||
blockId: this.blockId
|
||||
};
|
||||
@ -48897,7 +48898,7 @@ var script$S = {
|
||||
let _this = this;
|
||||
this.blockData = this.pBlockData;
|
||||
if (!this.blockData.html) {
|
||||
this.blockData.html = '<span>暂无内容</span>';
|
||||
this.blockData.html = '<span>暂无内容1</span>';
|
||||
}
|
||||
`#${this.blockId} .richtext-reset-wrapper--view`;
|
||||
let mceMagicLinkRegistered = window.customElements?.get('magic-link');
|
||||
@ -48927,15 +48928,6 @@ var script$S = {
|
||||
}]
|
||||
});
|
||||
});
|
||||
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) {
|
||||
let {
|
||||
plaintext,
|
||||
@ -48943,9 +48935,10 @@ var script$S = {
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
stylemode
|
||||
stylemode,
|
||||
showType,
|
||||
hotzoneType
|
||||
} = e.target.dataset;
|
||||
console.log('%c%s', 'font-size:2em;background: #00965E;color: #FFF', 'magic-link点击', e, e.target.dataset);
|
||||
if (_this.mode === 'editor') {
|
||||
_this.$message.info('当前内容仅支持在预览模式下查看');
|
||||
return;
|
||||
@ -48957,7 +48950,7 @@ var script$S = {
|
||||
multiple: true,
|
||||
nowImgIndex: 0,
|
||||
imgList: [{
|
||||
url: getFileUrl(content),
|
||||
url: content,
|
||||
title: plaintext
|
||||
}]
|
||||
});
|
||||
@ -48967,7 +48960,7 @@ var script$S = {
|
||||
_this.$EventBus.$emit('handleMagicLinkAudioPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -48981,7 +48974,7 @@ var script$S = {
|
||||
_this.$EventBus.$emit('handleMagicLinkVideoPlay', {
|
||||
plaintext,
|
||||
title,
|
||||
content: getFileUrl(content),
|
||||
content,
|
||||
type,
|
||||
isPlaying,
|
||||
targetId: e.target.id,
|
||||
@ -48993,6 +48986,9 @@ var script$S = {
|
||||
if (type === 'richtext') {
|
||||
content = content.replace(/text\-align:\s?justify/g, 'text-align:left');
|
||||
// 魔链富文本
|
||||
if (showType === 'popover') {
|
||||
return;
|
||||
}
|
||||
_this.inlineWordsModal = {
|
||||
title,
|
||||
content,
|
||||
@ -49003,7 +48999,7 @@ var script$S = {
|
||||
if (type === 'sheet') {
|
||||
// 插入活页
|
||||
_this.$EventBus.$emit('hotzoneClick', {
|
||||
type: 'looseleaf',
|
||||
type: hotzoneType || 'looseleaf',
|
||||
value: content,
|
||||
label: title
|
||||
});
|
||||
@ -49199,8 +49195,8 @@ var script$S = {
|
||||
let ADom = document.getElementById(this.blockId).getElementsByTagName('a') || [];
|
||||
if (ADom) {
|
||||
for (let i = 0; i < ADom.length; i++) {
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
let href = ADom[i].href;
|
||||
// if (JSON.stringify(this.releaseUrlList).indexOf(ADom[i].href) == -1) {
|
||||
ADom[i].href = 'javascript: void(0)';
|
||||
ADom[i].onclick = function (e) {
|
||||
_this.$EventBus.$emit('openTextHyperlink', {
|
||||
@ -51058,7 +51054,7 @@ __vue_render__$S._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$S = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$S = "data-v-4666e3b2";
|
||||
const __vue_scope_id__$S = "data-v-483bfd20";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$S = undefined;
|
||||
/* functional template */
|
||||
@ -51409,7 +51405,7 @@ __vue_render__$R._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$R = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$R = "data-v-616d10ee";
|
||||
const __vue_scope_id__$R = "data-v-fc425bf8";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$R = undefined;
|
||||
/* functional template */
|
||||
@ -51631,7 +51627,7 @@ __vue_render__$Q._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$Q = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$Q = "data-v-0bbb4f3a";
|
||||
const __vue_scope_id__$Q = "data-v-4da3c3c2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$Q = undefined;
|
||||
/* functional template */
|
||||
@ -51901,7 +51897,7 @@ __vue_render__$P._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$P = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$P = "data-v-2c084d29";
|
||||
const __vue_scope_id__$P = "data-v-e9ffa2e4";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$P = undefined;
|
||||
/* functional template */
|
||||
@ -52122,7 +52118,7 @@ __vue_render__$O._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$O = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$O = "data-v-3af6d3d2";
|
||||
const __vue_scope_id__$O = "data-v-78033d5c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$O = undefined;
|
||||
/* functional template */
|
||||
@ -52343,7 +52339,7 @@ __vue_render__$N._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$N = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$N = "data-v-fbf24244";
|
||||
const __vue_scope_id__$N = "data-v-5d501919";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$N = undefined;
|
||||
/* functional template */
|
||||
@ -52602,7 +52598,7 @@ __vue_render__$M._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$M = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$M = "data-v-462bc6a8";
|
||||
const __vue_scope_id__$M = "data-v-241e30e3";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$M = undefined;
|
||||
/* functional template */
|
||||
@ -52824,7 +52820,7 @@ __vue_render__$L._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$L = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$L = "data-v-7487515c";
|
||||
const __vue_scope_id__$L = "data-v-4571f88d";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$L = undefined;
|
||||
/* functional template */
|
||||
@ -53044,7 +53040,7 @@ __vue_render__$K._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$K = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$K = "data-v-59bc5a3c";
|
||||
const __vue_scope_id__$K = "data-v-4e95bbf2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$K = undefined;
|
||||
/* functional template */
|
||||
@ -53268,7 +53264,7 @@ __vue_render__$J._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$J = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$J = "data-v-df779e1c";
|
||||
const __vue_scope_id__$J = "data-v-e21be426";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$J = undefined;
|
||||
/* functional template */
|
||||
@ -53492,7 +53488,7 @@ __vue_render__$I._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$I = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$I = "data-v-15d1c71c";
|
||||
const __vue_scope_id__$I = "data-v-5a5fa817";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$I = undefined;
|
||||
/* functional template */
|
||||
@ -53739,7 +53735,7 @@ __vue_render__$H._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$H = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$H = "data-v-6a63b0c0";
|
||||
const __vue_scope_id__$H = "data-v-6d677d76";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$H = undefined;
|
||||
/* functional template */
|
||||
@ -53990,7 +53986,7 @@ __vue_render__$G._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$G = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$G = "data-v-1966f0fb";
|
||||
const __vue_scope_id__$G = "data-v-651ffbb6";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$G = undefined;
|
||||
/* functional template */
|
||||
@ -54260,7 +54256,7 @@ __vue_render__$F._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$F = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$F = "data-v-721237c7";
|
||||
const __vue_scope_id__$F = "data-v-497217ac";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$F = undefined;
|
||||
/* functional template */
|
||||
@ -54517,7 +54513,7 @@ __vue_render__$E._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$E = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$E = "data-v-3706def2";
|
||||
const __vue_scope_id__$E = "data-v-1c3b2da8";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$E = undefined;
|
||||
/* functional template */
|
||||
@ -54784,7 +54780,7 @@ __vue_render__$D._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$D = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$D = "data-v-5442cbe5";
|
||||
const __vue_scope_id__$D = "data-v-9b6ab440";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$D = undefined;
|
||||
/* functional template */
|
||||
@ -55006,7 +55002,7 @@ __vue_render__$C._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$C = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$C = "data-v-478188c1";
|
||||
const __vue_scope_id__$C = "data-v-9f587188";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$C = undefined;
|
||||
/* functional template */
|
||||
@ -55230,7 +55226,7 @@ __vue_render__$B._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$B = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$B = "data-v-5fcb6934";
|
||||
const __vue_scope_id__$B = "data-v-3706a5af";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$B = undefined;
|
||||
/* functional template */
|
||||
@ -55463,7 +55459,7 @@ __vue_render__$A._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$A = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$A = "data-v-11ebcaf6";
|
||||
const __vue_scope_id__$A = "data-v-22e49d80";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$A = undefined;
|
||||
/* functional template */
|
||||
@ -55682,7 +55678,7 @@ __vue_render__$z._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$z = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$z = "data-v-1ff758ed";
|
||||
const __vue_scope_id__$z = "data-v-ad2f3cdc";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$z = undefined;
|
||||
/* functional template */
|
||||
@ -55903,7 +55899,7 @@ __vue_render__$y._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$y = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$y = "data-v-4ccfd1c2";
|
||||
const __vue_scope_id__$y = "data-v-7b3ea4f8";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$y = undefined;
|
||||
/* functional template */
|
||||
@ -56122,7 +56118,7 @@ __vue_render__$x._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$x = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$x = "data-v-70644668";
|
||||
const __vue_scope_id__$x = "data-v-0fcfd9f2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$x = undefined;
|
||||
/* functional template */
|
||||
@ -56375,7 +56371,7 @@ __vue_render__$w._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$w = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$w = "data-v-25cdd27e";
|
||||
const __vue_scope_id__$w = "data-v-70218cb9";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$w = undefined;
|
||||
/* functional template */
|
||||
@ -56597,7 +56593,7 @@ __vue_render__$v._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$v = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$v = "data-v-7e1af04c";
|
||||
const __vue_scope_id__$v = "data-v-92102cf2";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$v = undefined;
|
||||
/* functional template */
|
||||
@ -56857,7 +56853,7 @@ __vue_render__$u._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$u = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$u = "data-v-548bec52";
|
||||
const __vue_scope_id__$u = "data-v-721af766";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$u = undefined;
|
||||
/* functional template */
|
||||
@ -57082,7 +57078,7 @@ __vue_render__$t._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$t = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$t = "data-v-ae2ed048";
|
||||
const __vue_scope_id__$t = "data-v-5f4bc581";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$t = undefined;
|
||||
/* functional template */
|
||||
@ -57303,7 +57299,7 @@ __vue_render__$s._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$s = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$s = "data-v-7cd7413e";
|
||||
const __vue_scope_id__$s = "data-v-0829f2dc";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$s = undefined;
|
||||
/* functional template */
|
||||
@ -57522,7 +57518,7 @@ __vue_render__$r._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$r = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$r = "data-v-5af78a7d";
|
||||
const __vue_scope_id__$r = "data-v-31db42b8";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$r = undefined;
|
||||
/* functional template */
|
||||
@ -57739,7 +57735,7 @@ __vue_render__$q._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$q = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$q = "data-v-5abd9437";
|
||||
const __vue_scope_id__$q = "data-v-e008fe9c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$q = undefined;
|
||||
/* functional template */
|
||||
@ -57997,7 +57993,7 @@ __vue_render__$p._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$p = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$p = "data-v-4031660d";
|
||||
const __vue_scope_id__$p = "data-v-4ed048f0";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$p = undefined;
|
||||
/* functional template */
|
||||
@ -58219,7 +58215,7 @@ __vue_render__$o._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$o = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$o = "data-v-eb3fc7ec";
|
||||
const __vue_scope_id__$o = "data-v-8aea63f6";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$o = undefined;
|
||||
/* functional template */
|
||||
@ -58440,7 +58436,7 @@ __vue_render__$n._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$n = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$n = "data-v-f815e140";
|
||||
const __vue_scope_id__$n = "data-v-050c48db";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$n = undefined;
|
||||
/* functional template */
|
||||
@ -58661,7 +58657,7 @@ __vue_render__$m._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$m = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$m = "data-v-7fa3800c";
|
||||
const __vue_scope_id__$m = "data-v-41457975";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$m = undefined;
|
||||
/* functional template */
|
||||
@ -58886,7 +58882,7 @@ __vue_render__$l._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$l = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$l = "data-v-0fd18780";
|
||||
const __vue_scope_id__$l = "data-v-695e65fb";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$l = undefined;
|
||||
/* functional template */
|
||||
@ -59107,7 +59103,7 @@ __vue_render__$k._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$k = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$k = "data-v-2ddea684";
|
||||
const __vue_scope_id__$k = "data-v-56babd63";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$k = undefined;
|
||||
/* functional template */
|
||||
@ -59373,7 +59369,7 @@ __vue_render__$j._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$j = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$j = "data-v-6d51a022";
|
||||
const __vue_scope_id__$j = "data-v-0552a4c6";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$j = undefined;
|
||||
/* functional template */
|
||||
@ -59598,7 +59594,7 @@ __vue_render__$i._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$i = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$i = "data-v-276ebb8b";
|
||||
const __vue_scope_id__$i = "data-v-156ac530";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$i = undefined;
|
||||
/* functional template */
|
||||
@ -59823,7 +59819,7 @@ __vue_render__$h._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$h = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$h = "data-v-26ceee4c";
|
||||
const __vue_scope_id__$h = "data-v-4f772f9e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$h = undefined;
|
||||
/* functional template */
|
||||
@ -60044,7 +60040,7 @@ __vue_render__$g._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$g = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$g = "data-v-168fe6f7";
|
||||
const __vue_scope_id__$g = "data-v-4f924f9c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$g = undefined;
|
||||
/* functional template */
|
||||
@ -60314,7 +60310,7 @@ __vue_render__$f._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$f = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$f = "data-v-54cd1e1a";
|
||||
const __vue_scope_id__$f = "data-v-676c75d5";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$f = undefined;
|
||||
/* functional template */
|
||||
@ -60637,7 +60633,7 @@ __vue_render__$e._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$e = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$e = "data-v-850afbf2";
|
||||
const __vue_scope_id__$e = "data-v-211b49ac";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$e = undefined;
|
||||
/* functional template */
|
||||
@ -60915,7 +60911,7 @@ __vue_render__$d._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$d = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$d = "data-v-09d1a44e";
|
||||
const __vue_scope_id__$d = "data-v-32fbd373";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$d = undefined;
|
||||
/* functional template */
|
||||
@ -61156,7 +61152,7 @@ __vue_render__$c._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$c = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$c = "data-v-9c9df7f6";
|
||||
const __vue_scope_id__$c = "data-v-1df723aa";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$c = undefined;
|
||||
/* functional template */
|
||||
@ -61405,7 +61401,7 @@ __vue_render__$b._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$b = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$b = "data-v-0620a4c2";
|
||||
const __vue_scope_id__$b = "data-v-ebf9924c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$b = undefined;
|
||||
/* functional template */
|
||||
@ -61654,7 +61650,7 @@ __vue_render__$a._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$a = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$a = "data-v-0237876d";
|
||||
const __vue_scope_id__$a = "data-v-89d2cb5c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$a = undefined;
|
||||
/* functional template */
|
||||
@ -61903,7 +61899,7 @@ __vue_render__$9._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$9 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$9 = "data-v-751064a7";
|
||||
const __vue_scope_id__$9 = "data-v-4fd8a33c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$9 = undefined;
|
||||
/* functional template */
|
||||
@ -62152,7 +62148,7 @@ __vue_render__$8._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$8 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$8 = "data-v-2ea0cf7b";
|
||||
const __vue_scope_id__$8 = "data-v-88974e94";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$8 = undefined;
|
||||
/* functional template */
|
||||
@ -62401,7 +62397,7 @@ __vue_render__$7._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$7 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$7 = "data-v-bbc7853a";
|
||||
const __vue_scope_id__$7 = "data-v-5afb5048";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$7 = undefined;
|
||||
/* functional template */
|
||||
@ -62671,7 +62667,7 @@ __vue_render__$6._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$6 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$6 = "data-v-025e9706";
|
||||
const __vue_scope_id__$6 = "data-v-f86c7abc";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$6 = undefined;
|
||||
/* functional template */
|
||||
@ -62965,7 +62961,7 @@ __vue_render__$5._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$5 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$5 = "data-v-03de8819";
|
||||
const __vue_scope_id__$5 = "data-v-40c0d558";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$5 = undefined;
|
||||
/* functional template */
|
||||
@ -63268,7 +63264,7 @@ __vue_render__$4._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$4 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$4 = "data-v-659c9535";
|
||||
const __vue_scope_id__$4 = "data-v-085d215a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$4 = undefined;
|
||||
/* functional template */
|
||||
@ -63554,7 +63550,7 @@ __vue_render__$3._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$3 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$3 = "data-v-1b087604";
|
||||
const __vue_scope_id__$3 = "data-v-1313a7e3";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$3 = undefined;
|
||||
/* functional template */
|
||||
@ -63870,7 +63866,7 @@ __vue_render__$2._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$2 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$2 = "data-v-532be828";
|
||||
const __vue_scope_id__$2 = "data-v-ad05f066";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$2 = undefined;
|
||||
/* functional template */
|
||||
@ -64125,7 +64121,7 @@ __vue_render__$1._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-21d308f9";
|
||||
const __vue_scope_id__$1 = "data-v-553350c4";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -64376,7 +64372,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-38ea8301";
|
||||
const __vue_scope_id__ = "data-v-42fe8034";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1 +1 @@
|
||||
.title-text[data-v-616d10ee]{background-color:var(--background-color)!important}.title-left[data-v-616d10ee]{border-color:var(--background-color)!important;color:var(--background-color)!important}.title-bgimg[data-v-025e9706]{background-image:url(../style/title-text-bgimg.png)}.xml-text-h5 .inline-audio-wrap,.xml-text-h5 .inline-link-wrap{align-items:center}.xml-text-h5 .inline-audio-wrap span,.xml-text-h5 .inline-link-wrap span{display:inline-block}.xml-text-h5 .inline-audio-box{width:20px;height:20px;box-sizing:border-box;position:relative;margin-left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol{width:20px;height:20px;box-sizing:border-box;overflow:hidden;transform:rotate(135deg);position:relative}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle{border:3px solid #418eed;border-radius:50%;position:absolute}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.first{width:3px;height:3px;background:#0076bc;top:14px;left:14px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.second{width:15px;height:15px;top:10px;left:10px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.third{width:24px;height:24px;top:6px;left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .second{animation:fadeInOut 1s infinite .2s}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .third{animation:fadeInOut 1s infinite .4s}@keyframes fadeInOut{0%{opacity:0}100%{opacity:1}}.virtual-input .el-textarea__inner{min-height:0!important;height:0!important;padding:0!important;margin:0!important;border:none!important}
|
||||
.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}
|
||||
@ -1,4 +1,4 @@
|
||||
.xml-video-container-pdf[data-v-3c5e97c1] {
|
||||
.xml-video-container-pdf[data-v-a275a088] {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
@ -8,13 +8,13 @@
|
||||
padding-bottom: 56.25%;
|
||||
background: #000;
|
||||
}
|
||||
.xml-video-container-pdf .cover[data-v-3c5e97c1] {
|
||||
.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-3c5e97c1] {
|
||||
.xml-video-container-pdf .play[data-v-a275a088] {
|
||||
position: absolute;
|
||||
top: 45%;
|
||||
left: 45%;
|
||||
@ -25,9 +25,9 @@
|
||||
|
||||
/*# sourceMappingURL=XmlVideoImg.vue.map */
|
||||
|
||||
.xml-video-container-h5[data-v-22dec3d4] {
|
||||
.xml-video-container-h5[data-v-ddfe855e] {
|
||||
}
|
||||
.xml-video-container-pc[data-v-22dec3d4] {
|
||||
.xml-video-container-pc[data-v-ddfe855e] {
|
||||
}
|
||||
.xml-video-container-pad[data-v-22dec3d4] {
|
||||
.xml-video-container-pad[data-v-ddfe855e] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Fri Apr 25 2025 16:10:48 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Apr 28 2025 08:58:41 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
@ -14776,7 +14776,7 @@ __vue_render__$1._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-22dec3d4";
|
||||
const __vue_scope_id__$1 = "data-v-ddfe855e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -14987,7 +14987,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-3c5e97c1";
|
||||
const __vue_scope_id__ = "data-v-a275a088";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1 +1 @@
|
||||
.xml-video-container-pdf[data-v-3c5e97c1]{position:relative;display:flex;justify-content:center;align-items:center;width:100%;height:0;padding-bottom:56.25%;background:#000}.xml-video-container-pdf .cover[data-v-3c5e97c1]{position:absolute;top:0;max-width:100%;max-height:100%}.xml-video-container-pdf .play[data-v-3c5e97c1]{position:absolute;top:45%;left:45%;width:10%;background:#bebebe;border-radius:50%}
|
||||
.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%}
|
||||
Loading…
Reference in New Issue
Block a user