cyc
This commit is contained in:
parent
184ccb0889
commit
769e31b428
Binary file not shown.
|
Before Width: | Height: | Size: 16 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 20 KiB |
@ -1,14 +1,14 @@
|
||||
.catalog-node-label[data-v-61c986fa] {
|
||||
.catalog-node-label[data-v-a4248782] {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.catalog-node-label img[data-v-61c986fa] {
|
||||
.catalog-node-label img[data-v-a4248782] {
|
||||
margin-right: 4px;
|
||||
}
|
||||
.xml-show-catalog[data-v-61c986fa] .el-tree-node__content {
|
||||
.xml-show-catalog[data-v-a4248782] .el-tree-node__content {
|
||||
height: auto;
|
||||
}
|
||||
.xml-show-catalog[data-v-61c986fa] .el-tree-node__content .catalog-node-label {
|
||||
.xml-show-catalog[data-v-a4248782] .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 ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 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-a4248782";
|
||||
/* 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-a4248782]{display:flex;align-items:center}.catalog-node-label img[data-v-a4248782]{margin-right:4px}.xml-show-catalog[data-v-a4248782] .el-tree-node__content{height:auto}.xml-show-catalog[data-v-a4248782] .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-9aae5a66] {
|
||||
.xml-ebook-container-h5[data-v-4640bc87] {
|
||||
}
|
||||
.xml-ebook-container-pc[data-v-9aae5a66] {
|
||||
.xml-ebook-container-pc[data-v-4640bc87] {
|
||||
}
|
||||
.xml-ebook-container-pad[data-v-9aae5a66] {
|
||||
.xml-ebook-container-pad[data-v-4640bc87] {
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
@ -384,6 +384,11 @@ var script = {
|
||||
default: function () {
|
||||
return {};
|
||||
}
|
||||
},
|
||||
isReader: {
|
||||
// 是否阅读器
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
@ -440,12 +445,12 @@ var script = {
|
||||
});
|
||||
} else if (info.uploadFileUrl) {
|
||||
if (info.uploadFileUrl.indexOf('.epub') > 0) {
|
||||
this.baseUrl = 'epubjs/index.html#/epub-read?flow=scrolled&bookPath=' + baseUrl;
|
||||
this.baseUrl = '/static/epubjs/index.html#/epub-read?flow=scrolled&bookPath=' + baseUrl;
|
||||
this.showPdf = true;
|
||||
this.textInfo = info.name || info.title;
|
||||
} else {
|
||||
// const baseUrl = this.resourceBasisPath + info.uploadFileUrl.split('./')[1]
|
||||
this.baseUrl = `/pdfjs/web/viewer.html?file=${baseUrl}`;
|
||||
this.baseUrl = `/static/pdfjs/web/viewer.html?file=${baseUrl}`;
|
||||
this.showPdf = true;
|
||||
this.textInfo = info.name || info.title;
|
||||
}
|
||||
@ -605,10 +610,11 @@ var __vue_render__ = function () {
|
||||
height: "600",
|
||||
src:
|
||||
item.uploadFileUrl.indexOf(".epub") !== -1
|
||||
? "epubjs/index.html#/epub-read?flow=scrolled&bookPath=" +
|
||||
? "/static/epubjs/index.html#/epub-read?flow=scrolled&bookPath=" +
|
||||
item.uploadFileUrl
|
||||
: item.uploadFileUrl.indexOf(".pdf") !== -1
|
||||
? "/pdfjs/web/viewer.html?file=" + item.uploadFileUrl
|
||||
? "/static/pdfjs/web/viewer.html?file=" +
|
||||
item.uploadFileUrl
|
||||
: item.uploadFileUrl,
|
||||
frameborder: "0",
|
||||
},
|
||||
@ -765,7 +771,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-9aae5a66";
|
||||
const __vue_scope_id__ = "data-v-4640bc87";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 17 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 22 KiB |
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
@ -207,7 +207,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-35e9204b";
|
||||
const __vue_scope_id__ = "data-v-619d09d0";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
|
||||
@ -4,15 +4,15 @@
|
||||
}
|
||||
|
||||
|
||||
.el-image__inner[data-v-fb4f6862] {
|
||||
.el-image__inner[data-v-45a069ea] {
|
||||
width: 100% !important;
|
||||
}
|
||||
.xml-image-ping-pu-h5[data-v-fb4f6862] {
|
||||
.xml-image-ping-pu-h5[data-v-45a069ea] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.xml-image-hua-lang[data-v-fb4f6862] {
|
||||
.xml-image-hua-lang[data-v-45a069ea] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
import Vue from 'vue';
|
||||
@ -1119,7 +1119,7 @@ __vue_render__$2._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-fb4f6862";
|
||||
const __vue_scope_id__$1 = "data-v-45a069ea";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1 +1 @@
|
||||
.xml-image-lun-bo .el-carousel__item{text-align:center}.el-image__inner[data-v-fb4f6862]{width:100%!important}.xml-image-ping-pu-h5[data-v-fb4f6862]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-fb4f6862]{display:flex;flex-direction:column;align-items:center}
|
||||
.xml-image-lun-bo .el-carousel__item{text-align:center}.el-image__inner[data-v-45a069ea]{width:100%!important}.xml-image-ping-pu-h5[data-v-45a069ea]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-45a069ea]{display:flex;flex-direction:column;align-items:center}
|
||||
@ -3,31 +3,36 @@
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventh.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-1fc9f10a] {
|
||||
.xml-image-lun-bo .el-carousel__item {
|
||||
text-align: center;
|
||||
}
|
||||
.xml-text-pc[data-v-1fc9f10a] {
|
||||
|
||||
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-h5[data-v-1fc9f10a] {
|
||||
.xml-text-pc[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
|
||||
.xml-text-h5 .inline-audio-wrap,
|
||||
@ -101,11 +106,6 @@
|
||||
|
||||
/*# sourceMappingURL=XmlText.vue.map */
|
||||
|
||||
.xml-image-lun-bo .el-carousel__item {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*# sourceMappingURL=XmlTextDialog.vue.map */
|
||||
|
||||
@ -705,15 +705,15 @@
|
||||
|
||||
|
||||
|
||||
.el-image__inner[data-v-fb4f6862] {
|
||||
.el-image__inner[data-v-45a069ea] {
|
||||
width: 100% !important;
|
||||
}
|
||||
.xml-image-ping-pu-h5[data-v-fb4f6862] {
|
||||
.xml-image-ping-pu-h5[data-v-45a069ea] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
.xml-image-hua-lang[data-v-fb4f6862] {
|
||||
.xml-image-hua-lang[data-v-45a069ea] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
.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}.xml-image-lun-bo .el-carousel__item{text-align:center}.el-image__inner[data-v-fb4f6862]{width:100%!important}.xml-image-ping-pu-h5[data-v-fb4f6862]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-fb4f6862]{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-45a069ea]{width:100%!important}.xml-image-ping-pu-h5[data-v-45a069ea]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-45a069ea]{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 ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
import Vue from 'vue';
|
||||
|
||||
40
src/plugin/xml-digital-teaching/lib/music.css
Normal file
40
src/plugin/xml-digital-teaching/lib/music.css
Normal file
@ -0,0 +1,40 @@
|
||||
|
||||
.styleModeE_row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.styleModee_title {
|
||||
text-align: center;
|
||||
margin-top: 30px;
|
||||
}
|
||||
.styleModeE_progress {
|
||||
width: 500px;
|
||||
margin: 0px 20px;
|
||||
}
|
||||
.styleModeF_row {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
.styleModeF_IMG {
|
||||
width: 250px;
|
||||
height: 150px;
|
||||
background-color: aquamarine;
|
||||
}
|
||||
.styleModeF_I {
|
||||
font-size: 50px;
|
||||
margin-left: 15px;
|
||||
position: absolute;
|
||||
top: 50px;
|
||||
left: 80px;
|
||||
}
|
||||
.styleModeF_title {
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
}
|
||||
.styleModeF_progress {
|
||||
width: 200px;
|
||||
margin: 0px 20px;
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
1
src/plugin/xml-digital-teaching/lib/music.min.css
vendored
Normal file
1
src/plugin/xml-digital-teaching/lib/music.min.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.styleModeE_row{display:flex;flex-direction:row;align-items:center;margin-top:10px}.styleModee_title{text-align:center;margin-top:30px}.styleModeE_progress{width:500px;margin:0 20px}.styleModeF_row{display:flex;flex-direction:row;align-items:center}.styleModeF_IMG{width:250px;height:150px;background-color:#7fffd4}.styleModeF_I{font-size:50px;margin-left:15px;position:absolute;top:50px;left:80px}.styleModeF_title{text-align:center;margin-top:20px}.styleModeF_progress{width:200px;margin:0 20px}
|
||||
@ -1,27 +1,12 @@
|
||||
|
||||
|
||||
/*# sourceMappingURL=thirteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=isosceles.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=tenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifteen.vue.map */
|
||||
/*# sourceMappingURL=eighth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=ninth.vue.map */
|
||||
@ -30,103 +15,118 @@
|
||||
/*# sourceMappingURL=quadrangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=wave.vue.map */
|
||||
/*# sourceMappingURL=seventh.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=isosceles.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=tenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eleven.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventh.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=twelve.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
/*# sourceMappingURL=thirteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=wave.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme1.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme2.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyseven.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme5.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyfive.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyseven2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Forty.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtysix.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyseven3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyeight.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-1fc9f10a] {
|
||||
|
||||
/*# sourceMappingURL=Thirtysix.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyseven.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-pc[data-v-1fc9f10a] {
|
||||
.xml-text-pc[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-h5[data-v-1fc9f10a] {
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
|
||||
.xml-text-h5 .inline-audio-wrap,
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1,62 +1,18 @@
|
||||
|
||||
.xml-question-container-h5[data-v-0f531fa4] {
|
||||
.xml-question-container-h5[data-v-ba265e2e] {
|
||||
}
|
||||
.xml-question-container-pc[data-v-0f531fa4] {
|
||||
.xml-question-container-pc[data-v-ba265e2e] {
|
||||
}
|
||||
.xml-question-container-pad[data-v-0f531fa4] {
|
||||
.xml-question-container-pad[data-v-ba265e2e] {
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*# sourceMappingURL=QuestionItem.vue.map */
|
||||
.option-item + .option-item[data-v-7fac7a23] {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.option-item[data-v-7fac7a23] {
|
||||
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-7fac7a23] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item.isActive[data-v-7fac7a23] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item.isTrue[data-v-7fac7a23] {
|
||||
border: 1px solid #70b603;
|
||||
}
|
||||
.option-item.isTrue[data-v-7fac7a23] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #70b603;
|
||||
background: #70b603;
|
||||
}
|
||||
.option-item.isFalse[data-v-7fac7a23] {
|
||||
border: 1px solid #d9001b;
|
||||
}
|
||||
.option-item.isFalse[data-v-7fac7a23] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #d9001b;
|
||||
background: #d9001b;
|
||||
}
|
||||
.option-item[data-v-7fac7a23]:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
.option-item[data-v-7fac7a23] .content {
|
||||
cursor: pointer;
|
||||
}
|
||||
.option-item[data-v-7fac7a23] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=radio.vue.map */
|
||||
.content[data-v-3d2dcb5b] {
|
||||
.content[data-v-bfc32194] {
|
||||
width: 100%;
|
||||
}
|
||||
.content .stem-content[data-v-3d2dcb5b] {
|
||||
.content .stem-content[data-v-bfc32194] {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 5px 14px;
|
||||
@ -65,12 +21,12 @@
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.content .stem-content.no-border[data-v-3d2dcb5b] {
|
||||
.content .stem-content.no-border[data-v-bfc32194] {
|
||||
padding: 0;
|
||||
border: none;
|
||||
cursor: default;
|
||||
}
|
||||
.content .stem-content .placeholder[data-v-3d2dcb5b] {
|
||||
.content .stem-content .placeholder[data-v-bfc32194] {
|
||||
color: #c0c4cc;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
@ -78,10 +34,10 @@
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=common.vue.map */
|
||||
.option-item + .option-item[data-v-fa728c70] {
|
||||
.option-item + .option-item[data-v-f42e3dba] {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.option-item[data-v-fa728c70] {
|
||||
.option-item[data-v-f42e3dba] {
|
||||
display: flex;
|
||||
background: #fbfbfb;
|
||||
border-radius: 6px;
|
||||
@ -90,87 +46,131 @@
|
||||
transition: all ease 0.3s;
|
||||
border: 1px solid #fbfbfb;
|
||||
}
|
||||
.option-item.isActive[data-v-fa728c70] {
|
||||
.option-item.isActive[data-v-f42e3dba] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item .questionSeq[data-v-fa728c70] {
|
||||
.option-item .questionSeq[data-v-f42e3dba] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item.isTrue[data-v-fa728c70] {
|
||||
.option-item.isTrue[data-v-f42e3dba] {
|
||||
border: 1px solid #70b603;
|
||||
}
|
||||
.option-item.isTrue[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
.option-item.isTrue[data-v-f42e3dba] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
border-color: #70b603;
|
||||
background: #70b603;
|
||||
}
|
||||
.option-item.isFalse[data-v-fa728c70] {
|
||||
.option-item.isFalse[data-v-f42e3dba] {
|
||||
border: 1px solid #d9001b;
|
||||
}
|
||||
.option-item.isFalse[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
.option-item.isFalse[data-v-f42e3dba] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
border-color: #d9001b;
|
||||
background: #d9001b;
|
||||
}
|
||||
.option-item[data-v-fa728c70]:hover {
|
||||
.option-item[data-v-f42e3dba]:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
.option-item[data-v-fa728c70] .content {
|
||||
.option-item[data-v-f42e3dba] .content {
|
||||
cursor: pointer;
|
||||
}
|
||||
.option-item[data-v-fa728c70] .stem-content.no-border {
|
||||
.option-item[data-v-f42e3dba] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=checkbox.vue.map */
|
||||
.image-file[data-v-506f1aca] {
|
||||
.option-item + .option-item[data-v-12a7caa8] {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.option-item[data-v-12a7caa8] {
|
||||
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-12a7caa8] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item.isActive[data-v-12a7caa8] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item.isTrue[data-v-12a7caa8] {
|
||||
border: 1px solid #70b603;
|
||||
}
|
||||
.option-item.isTrue[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #70b603;
|
||||
background: #70b603;
|
||||
}
|
||||
.option-item.isFalse[data-v-12a7caa8] {
|
||||
border: 1px solid #d9001b;
|
||||
}
|
||||
.option-item.isFalse[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #d9001b;
|
||||
background: #d9001b;
|
||||
}
|
||||
.option-item[data-v-12a7caa8]:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
.option-item[data-v-12a7caa8] .content {
|
||||
cursor: pointer;
|
||||
}
|
||||
.option-item[data-v-12a7caa8] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=radio.vue.map */
|
||||
.image-file[data-v-9dadad14] {
|
||||
width: 218px;
|
||||
object-fit: scale-down;
|
||||
}
|
||||
.video-file[data-v-506f1aca] {
|
||||
.video-file[data-v-9dadad14] {
|
||||
width: 408px;
|
||||
}
|
||||
.file-render[data-v-506f1aca] {
|
||||
.file-render[data-v-9dadad14] {
|
||||
width: 100%;
|
||||
}
|
||||
.file-info[data-v-506f1aca] {
|
||||
.file-info[data-v-9dadad14] {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
.file-info.videoHandler[data-v-506f1aca] {
|
||||
.file-info.videoHandler[data-v-9dadad14] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
.file-info.videoHandler .fileName[data-v-506f1aca] {
|
||||
.file-info.videoHandler .fileName[data-v-9dadad14] {
|
||||
font-size: 18px;
|
||||
color: #333333;
|
||||
margin-bottom: 19px;
|
||||
}
|
||||
.file-info.videoHandler .fileInfo[data-v-506f1aca] {
|
||||
.file-info.videoHandler .fileInfo[data-v-9dadad14] {
|
||||
font-size: 14px;
|
||||
color: #666666;
|
||||
margin-bottom: 19px;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=index.vue.map */
|
||||
[data-v-7628e470] .el-dialog__header {
|
||||
[data-v-13303366] .el-dialog__header {
|
||||
padding: 10px;
|
||||
}
|
||||
.video-content[data-v-7628e470] {
|
||||
.video-content[data-v-13303366] {
|
||||
width: 180px;
|
||||
height: 135px;
|
||||
border-radius: 6px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
.video-content .play[data-v-7628e470] {
|
||||
.video-content .play[data-v-13303366] {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
cursor: pointer;
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
}
|
||||
.video-mask[data-v-7628e470] {
|
||||
.video-mask[data-v-13303366] {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
@ -178,73 +178,73 @@
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.video-mask img[data-v-7628e470] {
|
||||
.video-mask img[data-v-13303366] {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50% -50%);
|
||||
display: block;
|
||||
}
|
||||
.video-player[data-v-7628e470] {
|
||||
.video-player[data-v-13303366] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=video-play.vue.map */
|
||||
.audio .audio-icon[data-v-25355b9e] {
|
||||
.audio .audio-icon[data-v-525a170e] {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.audio .audio-icon img[data-v-25355b9e] {
|
||||
.audio .audio-icon img[data-v-525a170e] {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
}
|
||||
.audio .audio-controls[data-v-25355b9e] {
|
||||
.audio .audio-controls[data-v-525a170e] {
|
||||
width: 100%;
|
||||
max-width: 200px;
|
||||
flex: 1;
|
||||
height: 36px;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--progress[data-v-25355b9e], .audio .audio-controls .audio-controls--handler[data-v-25355b9e] {
|
||||
.audio .audio-controls .audio-controls--progress[data-v-525a170e], .audio .audio-controls .audio-controls--handler[data-v-525a170e] {
|
||||
width: 100%;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler[data-v-25355b9e] {
|
||||
.audio .audio-controls .audio-controls--handler[data-v-525a170e] {
|
||||
line-height: 1;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .play[data-v-25355b9e] {
|
||||
.audio .audio-controls .audio-controls--handler .play[data-v-525a170e] {
|
||||
font-size: 24px;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-25355b9e] {
|
||||
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-525a170e] {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .current-time[data-v-25355b9e], .audio .audio-controls .audio-controls--handler .total-time[data-v-25355b9e] {
|
||||
.audio .audio-controls .audio-controls--handler .current-time[data-v-525a170e], .audio .audio-controls .audio-controls--handler .total-time[data-v-525a170e] {
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
}
|
||||
.play-handler.mobile[data-v-25355b9e] {
|
||||
.play-handler.mobile[data-v-525a170e] {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
.audio-component[data-v-25355b9e] {
|
||||
.audio-component[data-v-525a170e] {
|
||||
display: none;
|
||||
}
|
||||
[data-v-25355b9e] .el-slider__runway {
|
||||
[data-v-525a170e] .el-slider__runway {
|
||||
margin: 0 0 4px 0;
|
||||
background: #e3e3e3;
|
||||
height: 4px;
|
||||
}
|
||||
[data-v-25355b9e] .el-slider__bar {
|
||||
[data-v-525a170e] .el-slider__bar {
|
||||
height: 4px;
|
||||
}
|
||||
[data-v-25355b9e] .el-slider__button {
|
||||
[data-v-525a170e] .el-slider__button {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
[data-v-25355b9e] .el-slider__button-wrapper {
|
||||
[data-v-525a170e] .el-slider__button-wrapper {
|
||||
top: -15px;
|
||||
}
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
const radioType = ['SingleSelect'];
|
||||
@ -383,7 +383,7 @@ __vue_render__$7._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$7 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$7 = "data-v-25355b9e";
|
||||
const __vue_scope_id__$7 = "data-v-525a170e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$7 = undefined;
|
||||
/* functional template */
|
||||
@ -13573,7 +13573,7 @@ __vue_render__$6._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$6 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$6 = "data-v-7628e470";
|
||||
const __vue_scope_id__$6 = "data-v-13303366";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$6 = undefined;
|
||||
/* functional template */
|
||||
@ -13786,7 +13786,7 @@ __vue_render__$5._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$5 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$5 = "data-v-506f1aca";
|
||||
const __vue_scope_id__$5 = "data-v-9dadad14";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$5 = undefined;
|
||||
/* functional template */
|
||||
@ -13978,7 +13978,7 @@ __vue_render__$4._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$4 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$4 = "data-v-3d2dcb5b";
|
||||
const __vue_scope_id__$4 = "data-v-bfc32194";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$4 = undefined;
|
||||
/* functional template */
|
||||
@ -14289,7 +14289,7 @@ __vue_render__$3._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$3 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$3 = "data-v-7fac7a23";
|
||||
const __vue_scope_id__$3 = "data-v-12a7caa8";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$3 = undefined;
|
||||
/* functional template */
|
||||
@ -14594,7 +14594,7 @@ __vue_render__$2._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$2 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$2 = "data-v-fa728c70";
|
||||
const __vue_scope_id__$2 = "data-v-f42e3dba";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$2 = undefined;
|
||||
/* functional template */
|
||||
@ -14870,7 +14870,7 @@ function mixin() {
|
||||
function setup(options) {
|
||||
return assign_1(setupDefaults_1, options);
|
||||
}
|
||||
XEUtils.VERSION = '3.5.28';
|
||||
XEUtils.VERSION = '3.5.25';
|
||||
XEUtils.mixin = mixin;
|
||||
XEUtils.setup = setup;
|
||||
var ctor = XEUtils;
|
||||
@ -19946,7 +19946,7 @@ __vue_render__$1._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-6bf2ab28";
|
||||
const __vue_scope_id__$1 = "data-v-01a0a672";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -20156,7 +20156,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-0f531fa4";
|
||||
const __vue_scope_id__ = "data-v-ba265e2e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1 +1 @@
|
||||
.option-item+.option-item[data-v-7fac7a23]{margin-top:16px}.option-item[data-v-7fac7a23]{display:flex;background:#fbfbfb;border-radius:6px;padding-left:16px;cursor:pointer;transition:all ease .3s;border:1px solid #fbfbfb}.option-item .questionSeq[data-v-7fac7a23]{padding:8px 0}.option-item.isActive[data-v-7fac7a23]{border-color:#2e9adb}.option-item.isTrue[data-v-7fac7a23]{border:1px solid #70b603}.option-item.isTrue[data-v-7fac7a23] .el-radio__input.is-checked .el-radio__inner{border-color:#70b603;background:#70b603}.option-item.isFalse[data-v-7fac7a23]{border:1px solid #d9001b}.option-item.isFalse[data-v-7fac7a23] .el-radio__input.is-checked .el-radio__inner{border-color:#d9001b;background:#d9001b}.option-item[data-v-7fac7a23]:hover{background:#ddd}.option-item[data-v-7fac7a23] .content{cursor:pointer}.option-item[data-v-7fac7a23] .stem-content.no-border{padding:8px 14px!important;cursor:pointer}.content[data-v-3d2dcb5b]{width:100%}.content .stem-content[data-v-3d2dcb5b]{width:100%;box-sizing:border-box;padding:5px 14px;height:auto;border:1px solid #e7e7e7;border-radius:6px;cursor:pointer}.content .stem-content.no-border[data-v-3d2dcb5b]{padding:0;border:none;cursor:default}.content .stem-content .placeholder[data-v-3d2dcb5b]{color:#c0c4cc;font-size:14px;cursor:pointer;user-select:none}.option-item+.option-item[data-v-fa728c70]{margin-top:16px}.option-item[data-v-fa728c70]{display:flex;background:#fbfbfb;border-radius:6px;padding-left:16px;cursor:pointer;transition:all ease .3s;border:1px solid #fbfbfb}.option-item.isActive[data-v-fa728c70]{border-color:#2e9adb}.option-item .questionSeq[data-v-fa728c70]{padding:8px 0}.option-item.isTrue[data-v-fa728c70]{border:1px solid #70b603}.option-item.isTrue[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner{border-color:#70b603;background:#70b603}.option-item.isFalse[data-v-fa728c70]{border:1px solid #d9001b}.option-item.isFalse[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner{border-color:#d9001b;background:#d9001b}.option-item[data-v-fa728c70]:hover{background:#ddd}.option-item[data-v-fa728c70] .content{cursor:pointer}.option-item[data-v-fa728c70] .stem-content.no-border{padding:8px 14px!important;cursor:pointer}.image-file[data-v-506f1aca]{width:218px;object-fit:scale-down}.video-file[data-v-506f1aca]{width:408px}.file-render[data-v-506f1aca]{width:100%}.file-info[data-v-506f1aca]{flex:1;min-width:0}.file-info.videoHandler[data-v-506f1aca]{display:flex;flex-direction:column;justify-content:center}.file-info.videoHandler .fileName[data-v-506f1aca]{font-size:18px;color:#333;margin-bottom:19px}.file-info.videoHandler .fileInfo[data-v-506f1aca]{font-size:14px;color:#666;margin-bottom:19px}[data-v-7628e470] .el-dialog__header{padding:10px}.video-content[data-v-7628e470]{width:180px;height:135px;border-radius:6px;overflow:hidden;position:relative}.video-content .play[data-v-7628e470]{position:absolute;left:50%;top:50%;cursor:pointer;transform:translateX(-50%) translateY(-50%)}.video-mask[data-v-7628e470]{position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.video-mask img[data-v-7628e470]{position:absolute;left:50%;top:50%;transform:translate(-50% -50%);display:block}.video-player[data-v-7628e470]{width:100%}.audio .audio-icon[data-v-25355b9e]{width:36px;height:36px;margin-right:20px}.audio .audio-icon img[data-v-25355b9e]{width:100%;height:100%;display:block}.audio .audio-controls[data-v-25355b9e]{width:100%;max-width:200px;flex:1;height:36px}.audio .audio-controls .audio-controls--handler[data-v-25355b9e],.audio .audio-controls .audio-controls--progress[data-v-25355b9e]{width:100%}.audio .audio-controls .audio-controls--handler[data-v-25355b9e]{line-height:1}.audio .audio-controls .audio-controls--handler .play[data-v-25355b9e]{font-size:24px}.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-25355b9e]{width:22px;height:22px;display:block;cursor:pointer}.audio .audio-controls .audio-controls--handler .current-time[data-v-25355b9e],.audio .audio-controls .audio-controls--handler .total-time[data-v-25355b9e]{font-size:12px;color:#333}.play-handler.mobile[data-v-25355b9e]{width:20px;height:20px}.audio-component[data-v-25355b9e]{display:none}[data-v-25355b9e] .el-slider__runway{margin:0 0 4px 0;background:#e3e3e3;height:4px}[data-v-25355b9e] .el-slider__bar{height:4px}[data-v-25355b9e] .el-slider__button{width:10px;height:10px}[data-v-25355b9e] .el-slider__button-wrapper{top:-15px}
|
||||
.content[data-v-bfc32194]{width:100%}.content .stem-content[data-v-bfc32194]{width:100%;box-sizing:border-box;padding:5px 14px;height:auto;border:1px solid #e7e7e7;border-radius:6px;cursor:pointer}.content .stem-content.no-border[data-v-bfc32194]{padding:0;border:none;cursor:default}.content .stem-content .placeholder[data-v-bfc32194]{color:#c0c4cc;font-size:14px;cursor:pointer;user-select:none}.option-item+.option-item[data-v-f42e3dba]{margin-top:16px}.option-item[data-v-f42e3dba]{display:flex;background:#fbfbfb;border-radius:6px;padding-left:16px;cursor:pointer;transition:all ease .3s;border:1px solid #fbfbfb}.option-item.isActive[data-v-f42e3dba]{border-color:#2e9adb}.option-item .questionSeq[data-v-f42e3dba]{padding:8px 0}.option-item.isTrue[data-v-f42e3dba]{border:1px solid #70b603}.option-item.isTrue[data-v-f42e3dba] .el-checkbox__input.is-checked .el-checkbox__inner{border-color:#70b603;background:#70b603}.option-item.isFalse[data-v-f42e3dba]{border:1px solid #d9001b}.option-item.isFalse[data-v-f42e3dba] .el-checkbox__input.is-checked .el-checkbox__inner{border-color:#d9001b;background:#d9001b}.option-item[data-v-f42e3dba]:hover{background:#ddd}.option-item[data-v-f42e3dba] .content{cursor:pointer}.option-item[data-v-f42e3dba] .stem-content.no-border{padding:8px 14px!important;cursor:pointer}.option-item+.option-item[data-v-12a7caa8]{margin-top:16px}.option-item[data-v-12a7caa8]{display:flex;background:#fbfbfb;border-radius:6px;padding-left:16px;cursor:pointer;transition:all ease .3s;border:1px solid #fbfbfb}.option-item .questionSeq[data-v-12a7caa8]{padding:8px 0}.option-item.isActive[data-v-12a7caa8]{border-color:#2e9adb}.option-item.isTrue[data-v-12a7caa8]{border:1px solid #70b603}.option-item.isTrue[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner{border-color:#70b603;background:#70b603}.option-item.isFalse[data-v-12a7caa8]{border:1px solid #d9001b}.option-item.isFalse[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner{border-color:#d9001b;background:#d9001b}.option-item[data-v-12a7caa8]:hover{background:#ddd}.option-item[data-v-12a7caa8] .content{cursor:pointer}.option-item[data-v-12a7caa8] .stem-content.no-border{padding:8px 14px!important;cursor:pointer}.image-file[data-v-9dadad14]{width:218px;object-fit:scale-down}.video-file[data-v-9dadad14]{width:408px}.file-render[data-v-9dadad14]{width:100%}.file-info[data-v-9dadad14]{flex:1;min-width:0}.file-info.videoHandler[data-v-9dadad14]{display:flex;flex-direction:column;justify-content:center}.file-info.videoHandler .fileName[data-v-9dadad14]{font-size:18px;color:#333;margin-bottom:19px}.file-info.videoHandler .fileInfo[data-v-9dadad14]{font-size:14px;color:#666;margin-bottom:19px}[data-v-13303366] .el-dialog__header{padding:10px}.video-content[data-v-13303366]{width:180px;height:135px;border-radius:6px;overflow:hidden;position:relative}.video-content .play[data-v-13303366]{position:absolute;left:50%;top:50%;cursor:pointer;transform:translateX(-50%) translateY(-50%)}.video-mask[data-v-13303366]{position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.video-mask img[data-v-13303366]{position:absolute;left:50%;top:50%;transform:translate(-50% -50%);display:block}.video-player[data-v-13303366]{width:100%}.audio .audio-icon[data-v-525a170e]{width:36px;height:36px;margin-right:20px}.audio .audio-icon img[data-v-525a170e]{width:100%;height:100%;display:block}.audio .audio-controls[data-v-525a170e]{width:100%;max-width:200px;flex:1;height:36px}.audio .audio-controls .audio-controls--handler[data-v-525a170e],.audio .audio-controls .audio-controls--progress[data-v-525a170e]{width:100%}.audio .audio-controls .audio-controls--handler[data-v-525a170e]{line-height:1}.audio .audio-controls .audio-controls--handler .play[data-v-525a170e]{font-size:24px}.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-525a170e]{width:22px;height:22px;display:block;cursor:pointer}.audio .audio-controls .audio-controls--handler .current-time[data-v-525a170e],.audio .audio-controls .audio-controls--handler .total-time[data-v-525a170e]{font-size:12px;color:#333}.play-handler.mobile[data-v-525a170e]{width:20px;height:20px}.audio-component[data-v-525a170e]{display:none}[data-v-525a170e] .el-slider__runway{margin:0 0 4px 0;background:#e3e3e3;height:4px}[data-v-525a170e] .el-slider__bar{height:4px}[data-v-525a170e] .el-slider__button{width:10px;height:10px}[data-v-525a170e] .el-slider__button-wrapper{top:-15px}
|
||||
@ -88,23 +88,23 @@
|
||||
|
||||
|
||||
|
||||
.preview-container-h5[data-v-25742cb8] {
|
||||
.preview-container-h5[data-v-52e2a929] {
|
||||
padding-top: 15px;
|
||||
}
|
||||
.preview-container-pc[data-v-25742cb8] {
|
||||
.preview-container-pc[data-v-52e2a929] {
|
||||
padding-top: 15px;
|
||||
}
|
||||
.preview-container-pad[data-v-25742cb8] {
|
||||
.preview-container-pad[data-v-52e2a929] {
|
||||
padding-top: 15px;
|
||||
}
|
||||
.preview-container[data-v-25742cb8] .el-dialog__wrapper.preview-box-dialog {
|
||||
.preview-container[data-v-52e2a929] .el-dialog__wrapper.preview-box-dialog {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.preview-container[data-v-25742cb8] .el-dialog__wrapper.preview-box-dialog .el-dialog:not(.is-fullscreen) {
|
||||
.preview-container[data-v-52e2a929] .el-dialog__wrapper.preview-box-dialog .el-dialog:not(.is-fullscreen) {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
.preview-container[data-v-25742cb8] .el-dialog__wrapper.preview-box-dialog .el-dialog__header {
|
||||
.preview-container[data-v-52e2a929] .el-dialog__wrapper.preview-box-dialog .el-dialog__header {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
@ -209,7 +209,7 @@ __vue_render__$2._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$2 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$2 = "data-v-7da5c6fc";
|
||||
const __vue_scope_id__$2 = "data-v-c7e745c6";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$2 = undefined;
|
||||
/* functional template */
|
||||
@ -9443,7 +9443,7 @@ __vue_render__$1._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-25742cb8";
|
||||
const __vue_scope_id__$1 = "data-v-52e2a929";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1 +1 @@
|
||||
.preview-container-h5[data-v-25742cb8]{padding-top:15px}.preview-container-pc[data-v-25742cb8]{padding-top:15px}.preview-container-pad[data-v-25742cb8]{padding-top:15px}.preview-container[data-v-25742cb8] .el-dialog__wrapper.preview-box-dialog{display:flex;align-items:center}.preview-container[data-v-25742cb8] .el-dialog__wrapper.preview-box-dialog .el-dialog:not(.is-fullscreen){margin-top:0!important}.preview-container[data-v-25742cb8] .el-dialog__wrapper.preview-box-dialog .el-dialog__header{padding:0}
|
||||
.preview-container-h5[data-v-52e2a929]{padding-top:15px}.preview-container-pc[data-v-52e2a929]{padding-top:15px}.preview-container-pad[data-v-52e2a929]{padding-top:15px}.preview-container[data-v-52e2a929] .el-dialog__wrapper.preview-box-dialog{display:flex;align-items:center}.preview-container[data-v-52e2a929] .el-dialog__wrapper.preview-box-dialog .el-dialog:not(.is-fullscreen){margin-top:0!important}.preview-container[data-v-52e2a929] .el-dialog__wrapper.preview-box-dialog .el-dialog__header{padding:0}
|
||||
@ -1,5 +1,5 @@
|
||||
.preview-item-file[data-v-9f3a54f2]:hover,
|
||||
.slip-over-cover[data-v-9f3a54f2]:hover {
|
||||
.preview-item-file[data-v-95fbfab6]:hover,
|
||||
.slip-over-cover[data-v-95fbfab6]:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 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==";
|
||||
@ -58,6 +58,11 @@ var script = {
|
||||
default: function () {
|
||||
return {};
|
||||
}
|
||||
},
|
||||
isReader: {
|
||||
// 是否阅读器
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
@ -178,23 +183,19 @@ var script = {
|
||||
if (item.uploadFileUrl.indexOf('./') !== -1) {
|
||||
url = this.resourceBasisPath + item.uploadFileUrl.split('./')[1];
|
||||
}
|
||||
if (this.isReader) {
|
||||
this.$emit('showFileReader', {
|
||||
fileFormat: item.fileFormat,
|
||||
fileUrl: url,
|
||||
title: item.title
|
||||
});
|
||||
// if (item.uploadFileUrl.indexOf('http') === -1) {
|
||||
// window.open(
|
||||
// (this.officePreviewPath ? this.officePreviewPath : 'https://view.officeapps.live.com/op/view.aspx?src=') +
|
||||
// this.resourceBasisPath +
|
||||
// item.uploadFileUrl.split('./')[1]
|
||||
// )
|
||||
// } else {
|
||||
// window.open(
|
||||
// (this.officePreviewPath ? this.officePreviewPath : 'https://view.officeapps.live.com/op/view.aspx?src=') +
|
||||
// item.uploadFileUrl
|
||||
// )
|
||||
// }
|
||||
} else {
|
||||
if (item.uploadFileUrl.indexOf('http') === -1) {
|
||||
window.open((this.officePreviewPath ? this.officePreviewPath : 'https://view.officeapps.live.com/op/view.aspx?src=') + this.resourceBasisPath + item.uploadFileUrl.split('./')[1]);
|
||||
} else {
|
||||
window.open((this.officePreviewPath ? this.officePreviewPath : 'https://view.officeapps.live.com/op/view.aspx?src=') + item.uploadFileUrl);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1370,7 +1371,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-9f3a54f2";
|
||||
const __vue_scope_id__ = "data-v-95fbfab6";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1 +1 @@
|
||||
.preview-item-file[data-v-9f3a54f2]:hover,.slip-over-cover[data-v-9f3a54f2]:hover{cursor:pointer}
|
||||
.preview-item-file[data-v-95fbfab6]:hover,.slip-over-cover[data-v-95fbfab6]:hover{cursor:pointer}
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-ebook-group-h5[data-v-55908341] {
|
||||
.xml-single-ebook-group-h5[data-v-18c06d1c] {
|
||||
}
|
||||
.xml-single-ebook-group-pc[data-v-55908341] {
|
||||
.xml-single-ebook-group-pc[data-v-18c06d1c] {
|
||||
}
|
||||
.xml-single-ebook-group-pad[data-v-55908341] {
|
||||
.xml-single-ebook-group-pad[data-v-18c06d1c] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -295,7 +295,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-18c06d1c";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-ebook-group-h5[data-v-b39a2926] {
|
||||
.xml-single-ebook-group-h5[data-v-2c319df0] {
|
||||
}
|
||||
.xml-single-ebook-group-pc[data-v-b39a2926] {
|
||||
.xml-single-ebook-group-pc[data-v-2c319df0] {
|
||||
}
|
||||
.xml-single-ebook-group-pad[data-v-b39a2926] {
|
||||
.xml-single-ebook-group-pad[data-v-2c319df0] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -309,7 +309,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-b39a2926";
|
||||
const __vue_scope_id__ = "data-v-2c319df0";
|
||||
/* 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-42eedd84] {
|
||||
}
|
||||
.xml-single-ebook-group-pc[data-v-0b9200e9] {
|
||||
.xml-single-ebook-group-pc[data-v-42eedd84] {
|
||||
}
|
||||
.xml-single-ebook-group-pad[data-v-0b9200e9] {
|
||||
.xml-single-ebook-group-pad[data-v-42eedd84] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -318,7 +318,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-42eedd84";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-music-group-h5[data-v-272f2034] {
|
||||
.xml-single-music-group-h5[data-v-8d6cf2e2] {
|
||||
}
|
||||
.xml-single-music-group-pc[data-v-272f2034] {
|
||||
.xml-single-music-group-pc[data-v-8d6cf2e2] {
|
||||
}
|
||||
.xml-single-music-group-pad[data-v-272f2034] {
|
||||
.xml-single-music-group-pad[data-v-8d6cf2e2] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -297,7 +297,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-272f2034";
|
||||
const __vue_scope_id__ = "data-v-8d6cf2e2";
|
||||
/* 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-cf5b6886] {
|
||||
}
|
||||
.xml-single-question-group-pc[data-v-77922a38] {
|
||||
.xml-single-question-group-pc[data-v-cf5b6886] {
|
||||
}
|
||||
.xml-single-question-group-pad[data-v-77922a38] {
|
||||
.xml-single-question-group-pad[data-v-cf5b6886] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -334,7 +334,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-cf5b6886";
|
||||
/* 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-0c133c8a] {
|
||||
}
|
||||
.xml-single-question-group-pc[data-v-34ba0440] {
|
||||
.xml-single-question-group-pc[data-v-0c133c8a] {
|
||||
}
|
||||
.xml-single-question-group-pad[data-v-34ba0440] {
|
||||
.xml-single-question-group-pad[data-v-0c133c8a] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -326,7 +326,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-0c133c8a";
|
||||
/* 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-0c133c8a] {
|
||||
}
|
||||
.xml-single-question-group-pc[data-v-34ba0440] {
|
||||
.xml-single-question-group-pc[data-v-0c133c8a] {
|
||||
}
|
||||
.xml-single-question-group-pad[data-v-34ba0440] {
|
||||
.xml-single-question-group-pad[data-v-0c133c8a] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -326,7 +326,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-0c133c8a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
|
||||
.xml-single-text-group-h5[data-v-647015fa] {
|
||||
.xml-single-text-group-h5[data-v-a8e0b970] {
|
||||
}
|
||||
.xml-single-text-group-pc[data-v-647015fa] {
|
||||
.xml-single-text-group-pc[data-v-a8e0b970] {
|
||||
}
|
||||
.xml-single-text-group-pad[data-v-647015fa] {
|
||||
.xml-single-text-group-pad[data-v-a8e0b970] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -349,7 +349,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-647015fa";
|
||||
const __vue_scope_id__ = "data-v-a8e0b970";
|
||||
/* 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-6b3c0a0a] {
|
||||
}
|
||||
.xml-single-video-group-pc[data-v-3ae74720] {
|
||||
.xml-single-video-group-pc[data-v-6b3c0a0a] {
|
||||
}
|
||||
.xml-single-video-group-pad[data-v-3ae74720] {
|
||||
.xml-single-video-group-pad[data-v-6b3c0a0a] {
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
var singleGroupMixin = {
|
||||
@ -314,7 +314,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-6b3c0a0a";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1,68 +1,68 @@
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eleventh.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventh.vue.map */
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=tenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Bluetheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=ninth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
/*# sourceMappingURL=fourth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=ninth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventh.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=tenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eleventh.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
|
||||
|
||||
@ -72,39 +72,31 @@
|
||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Bluetheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Bluetheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Bluetheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
/*# sourceMappingURL=Bluetheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greytheme1.vue.map */
|
||||
/*# sourceMappingURL=Bluetheme2.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-1fc9f10a] {
|
||||
}
|
||||
.xml-text-pc[data-v-1fc9f10a] {
|
||||
}
|
||||
.xml-text-h5[data-v-1fc9f10a] {
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Bluetheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Bluetheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||
.xml-text-h5 .inline-audio-wrap,
|
||||
.xml-text-h5 .inline-link-wrap {
|
||||
align-items: center;
|
||||
@ -176,6 +168,14 @@
|
||||
|
||||
/*# sourceMappingURL=XmlText.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-pc[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*# sourceMappingURL=XmlTextDialog.vue.map */
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -4,10 +4,98 @@
|
||||
|
||||
|
||||
/*# sourceMappingURL=QuestionItem.vue.map */
|
||||
.content[data-v-3d2dcb5b] {
|
||||
.option-item + .option-item[data-v-12a7caa8] {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.option-item[data-v-12a7caa8] {
|
||||
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-12a7caa8] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item.isActive[data-v-12a7caa8] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item.isTrue[data-v-12a7caa8] {
|
||||
border: 1px solid #70b603;
|
||||
}
|
||||
.option-item.isTrue[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #70b603;
|
||||
background: #70b603;
|
||||
}
|
||||
.option-item.isFalse[data-v-12a7caa8] {
|
||||
border: 1px solid #d9001b;
|
||||
}
|
||||
.option-item.isFalse[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #d9001b;
|
||||
background: #d9001b;
|
||||
}
|
||||
.option-item[data-v-12a7caa8]:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
.option-item[data-v-12a7caa8] .content {
|
||||
cursor: pointer;
|
||||
}
|
||||
.option-item[data-v-12a7caa8] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=radio.vue.map */
|
||||
.option-item + .option-item[data-v-f42e3dba] {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.option-item[data-v-f42e3dba] {
|
||||
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-f42e3dba] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item .questionSeq[data-v-f42e3dba] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item.isTrue[data-v-f42e3dba] {
|
||||
border: 1px solid #70b603;
|
||||
}
|
||||
.option-item.isTrue[data-v-f42e3dba] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
border-color: #70b603;
|
||||
background: #70b603;
|
||||
}
|
||||
.option-item.isFalse[data-v-f42e3dba] {
|
||||
border: 1px solid #d9001b;
|
||||
}
|
||||
.option-item.isFalse[data-v-f42e3dba] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
border-color: #d9001b;
|
||||
background: #d9001b;
|
||||
}
|
||||
.option-item[data-v-f42e3dba]:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
.option-item[data-v-f42e3dba] .content {
|
||||
cursor: pointer;
|
||||
}
|
||||
.option-item[data-v-f42e3dba] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=checkbox.vue.map */
|
||||
.content[data-v-bfc32194] {
|
||||
width: 100%;
|
||||
}
|
||||
.content .stem-content[data-v-3d2dcb5b] {
|
||||
.content .stem-content[data-v-bfc32194] {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 5px 14px;
|
||||
@ -16,12 +104,12 @@
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
}
|
||||
.content .stem-content.no-border[data-v-3d2dcb5b] {
|
||||
.content .stem-content.no-border[data-v-bfc32194] {
|
||||
padding: 0;
|
||||
border: none;
|
||||
cursor: default;
|
||||
}
|
||||
.content .stem-content .placeholder[data-v-3d2dcb5b] {
|
||||
.content .stem-content .placeholder[data-v-bfc32194] {
|
||||
color: #c0c4cc;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
@ -29,202 +117,114 @@
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=common.vue.map */
|
||||
.option-item + .option-item[data-v-fa728c70] {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.option-item[data-v-fa728c70] {
|
||||
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-fa728c70] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item .questionSeq[data-v-fa728c70] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item.isTrue[data-v-fa728c70] {
|
||||
border: 1px solid #70b603;
|
||||
}
|
||||
.option-item.isTrue[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
border-color: #70b603;
|
||||
background: #70b603;
|
||||
}
|
||||
.option-item.isFalse[data-v-fa728c70] {
|
||||
border: 1px solid #d9001b;
|
||||
}
|
||||
.option-item.isFalse[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||
border-color: #d9001b;
|
||||
background: #d9001b;
|
||||
}
|
||||
.option-item[data-v-fa728c70]:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
.option-item[data-v-fa728c70] .content {
|
||||
cursor: pointer;
|
||||
}
|
||||
.option-item[data-v-fa728c70] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=checkbox.vue.map */
|
||||
.option-item + .option-item[data-v-7fac7a23] {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.option-item[data-v-7fac7a23] {
|
||||
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-7fac7a23] {
|
||||
padding: 8px 0;
|
||||
}
|
||||
.option-item.isActive[data-v-7fac7a23] {
|
||||
border-color: #2e9adb;
|
||||
}
|
||||
.option-item.isTrue[data-v-7fac7a23] {
|
||||
border: 1px solid #70b603;
|
||||
}
|
||||
.option-item.isTrue[data-v-7fac7a23] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #70b603;
|
||||
background: #70b603;
|
||||
}
|
||||
.option-item.isFalse[data-v-7fac7a23] {
|
||||
border: 1px solid #d9001b;
|
||||
}
|
||||
.option-item.isFalse[data-v-7fac7a23] .el-radio__input.is-checked .el-radio__inner {
|
||||
border-color: #d9001b;
|
||||
background: #d9001b;
|
||||
}
|
||||
.option-item[data-v-7fac7a23]:hover {
|
||||
background: #ddd;
|
||||
}
|
||||
.option-item[data-v-7fac7a23] .content {
|
||||
cursor: pointer;
|
||||
}
|
||||
.option-item[data-v-7fac7a23] .stem-content.no-border {
|
||||
padding: 8px 14px !important;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=radio.vue.map */
|
||||
.image-file[data-v-506f1aca] {
|
||||
.image-file[data-v-9dadad14] {
|
||||
width: 218px;
|
||||
object-fit: scale-down;
|
||||
}
|
||||
.video-file[data-v-506f1aca] {
|
||||
.video-file[data-v-9dadad14] {
|
||||
width: 408px;
|
||||
}
|
||||
.file-render[data-v-506f1aca] {
|
||||
.file-render[data-v-9dadad14] {
|
||||
width: 100%;
|
||||
}
|
||||
.file-info[data-v-506f1aca] {
|
||||
.file-info[data-v-9dadad14] {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
}
|
||||
.file-info.videoHandler[data-v-506f1aca] {
|
||||
.file-info.videoHandler[data-v-9dadad14] {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
.file-info.videoHandler .fileName[data-v-506f1aca] {
|
||||
.file-info.videoHandler .fileName[data-v-9dadad14] {
|
||||
font-size: 18px;
|
||||
color: #333333;
|
||||
margin-bottom: 19px;
|
||||
}
|
||||
.file-info.videoHandler .fileInfo[data-v-506f1aca] {
|
||||
.file-info.videoHandler .fileInfo[data-v-9dadad14] {
|
||||
font-size: 14px;
|
||||
color: #666666;
|
||||
margin-bottom: 19px;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=index.vue.map */
|
||||
.audio .audio-icon[data-v-25355b9e] {
|
||||
.audio .audio-icon[data-v-525a170e] {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.audio .audio-icon img[data-v-25355b9e] {
|
||||
.audio .audio-icon img[data-v-525a170e] {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
}
|
||||
.audio .audio-controls[data-v-25355b9e] {
|
||||
.audio .audio-controls[data-v-525a170e] {
|
||||
width: 100%;
|
||||
max-width: 200px;
|
||||
flex: 1;
|
||||
height: 36px;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--progress[data-v-25355b9e], .audio .audio-controls .audio-controls--handler[data-v-25355b9e] {
|
||||
.audio .audio-controls .audio-controls--progress[data-v-525a170e], .audio .audio-controls .audio-controls--handler[data-v-525a170e] {
|
||||
width: 100%;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler[data-v-25355b9e] {
|
||||
.audio .audio-controls .audio-controls--handler[data-v-525a170e] {
|
||||
line-height: 1;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .play[data-v-25355b9e] {
|
||||
.audio .audio-controls .audio-controls--handler .play[data-v-525a170e] {
|
||||
font-size: 24px;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-25355b9e] {
|
||||
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-525a170e] {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
}
|
||||
.audio .audio-controls .audio-controls--handler .current-time[data-v-25355b9e], .audio .audio-controls .audio-controls--handler .total-time[data-v-25355b9e] {
|
||||
.audio .audio-controls .audio-controls--handler .current-time[data-v-525a170e], .audio .audio-controls .audio-controls--handler .total-time[data-v-525a170e] {
|
||||
font-size: 12px;
|
||||
color: #333;
|
||||
}
|
||||
.play-handler.mobile[data-v-25355b9e] {
|
||||
.play-handler.mobile[data-v-525a170e] {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
.audio-component[data-v-25355b9e] {
|
||||
.audio-component[data-v-525a170e] {
|
||||
display: none;
|
||||
}
|
||||
[data-v-25355b9e] .el-slider__runway {
|
||||
[data-v-525a170e] .el-slider__runway {
|
||||
margin: 0 0 4px 0;
|
||||
background: #e3e3e3;
|
||||
height: 4px;
|
||||
}
|
||||
[data-v-25355b9e] .el-slider__bar {
|
||||
[data-v-525a170e] .el-slider__bar {
|
||||
height: 4px;
|
||||
}
|
||||
[data-v-25355b9e] .el-slider__button {
|
||||
[data-v-525a170e] .el-slider__button {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
[data-v-25355b9e] .el-slider__button-wrapper {
|
||||
[data-v-525a170e] .el-slider__button-wrapper {
|
||||
top: -15px;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=audio-play-new.vue.map */
|
||||
[data-v-7628e470] .el-dialog__header {
|
||||
[data-v-13303366] .el-dialog__header {
|
||||
padding: 10px;
|
||||
}
|
||||
.video-content[data-v-7628e470] {
|
||||
.video-content[data-v-13303366] {
|
||||
width: 180px;
|
||||
height: 135px;
|
||||
border-radius: 6px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
.video-content .play[data-v-7628e470] {
|
||||
.video-content .play[data-v-13303366] {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
cursor: pointer;
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
}
|
||||
.video-mask[data-v-7628e470] {
|
||||
.video-mask[data-v-13303366] {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
@ -232,14 +232,14 @@
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.video-mask img[data-v-7628e470] {
|
||||
.video-mask img[data-v-13303366] {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50% -50%);
|
||||
display: block;
|
||||
}
|
||||
.video-player[data-v-7628e470] {
|
||||
.video-player[data-v-13303366] {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
const radioType = ['SingleSelect'];
|
||||
@ -383,7 +383,7 @@ __vue_render__$7._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$7 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$7 = "data-v-25355b9e";
|
||||
const __vue_scope_id__$7 = "data-v-525a170e";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$7 = undefined;
|
||||
/* functional template */
|
||||
@ -13573,7 +13573,7 @@ __vue_render__$6._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$6 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$6 = "data-v-7628e470";
|
||||
const __vue_scope_id__$6 = "data-v-13303366";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$6 = undefined;
|
||||
/* functional template */
|
||||
@ -13786,7 +13786,7 @@ __vue_render__$5._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$5 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$5 = "data-v-506f1aca";
|
||||
const __vue_scope_id__$5 = "data-v-9dadad14";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$5 = undefined;
|
||||
/* functional template */
|
||||
@ -13978,7 +13978,7 @@ __vue_render__$4._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$4 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$4 = "data-v-3d2dcb5b";
|
||||
const __vue_scope_id__$4 = "data-v-bfc32194";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$4 = undefined;
|
||||
/* functional template */
|
||||
@ -14289,7 +14289,7 @@ __vue_render__$3._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$3 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$3 = "data-v-7fac7a23";
|
||||
const __vue_scope_id__$3 = "data-v-12a7caa8";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$3 = undefined;
|
||||
/* functional template */
|
||||
@ -14594,7 +14594,7 @@ __vue_render__$2._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$2 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$2 = "data-v-fa728c70";
|
||||
const __vue_scope_id__$2 = "data-v-f42e3dba";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$2 = undefined;
|
||||
/* functional template */
|
||||
@ -14870,7 +14870,7 @@ function mixin() {
|
||||
function setup(options) {
|
||||
return assign_1(setupDefaults_1, options);
|
||||
}
|
||||
XEUtils.VERSION = '3.5.28';
|
||||
XEUtils.VERSION = '3.5.25';
|
||||
XEUtils.mixin = mixin;
|
||||
XEUtils.setup = setup;
|
||||
var ctor = XEUtils;
|
||||
@ -19946,7 +19946,7 @@ __vue_render__$1._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-6bf2ab28";
|
||||
const __vue_scope_id__$1 = "data-v-01a0a672";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -20228,7 +20228,7 @@ __vue_render__._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__ = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__ = "data-v-5c4b43e7";
|
||||
const __vue_scope_id__ = "data-v-1d04dda8";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__ = undefined;
|
||||
/* functional template */
|
||||
|
||||
@ -1 +1 @@
|
||||
.content[data-v-3d2dcb5b]{width:100%}.content .stem-content[data-v-3d2dcb5b]{width:100%;box-sizing:border-box;padding:5px 14px;height:auto;border:1px solid #e7e7e7;border-radius:6px;cursor:pointer}.content .stem-content.no-border[data-v-3d2dcb5b]{padding:0;border:none;cursor:default}.content .stem-content .placeholder[data-v-3d2dcb5b]{color:#c0c4cc;font-size:14px;cursor:pointer;user-select:none}.option-item+.option-item[data-v-fa728c70]{margin-top:16px}.option-item[data-v-fa728c70]{display:flex;background:#fbfbfb;border-radius:6px;padding-left:16px;cursor:pointer;transition:all ease .3s;border:1px solid #fbfbfb}.option-item.isActive[data-v-fa728c70]{border-color:#2e9adb}.option-item .questionSeq[data-v-fa728c70]{padding:8px 0}.option-item.isTrue[data-v-fa728c70]{border:1px solid #70b603}.option-item.isTrue[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner{border-color:#70b603;background:#70b603}.option-item.isFalse[data-v-fa728c70]{border:1px solid #d9001b}.option-item.isFalse[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner{border-color:#d9001b;background:#d9001b}.option-item[data-v-fa728c70]:hover{background:#ddd}.option-item[data-v-fa728c70] .content{cursor:pointer}.option-item[data-v-fa728c70] .stem-content.no-border{padding:8px 14px!important;cursor:pointer}.option-item+.option-item[data-v-7fac7a23]{margin-top:16px}.option-item[data-v-7fac7a23]{display:flex;background:#fbfbfb;border-radius:6px;padding-left:16px;cursor:pointer;transition:all ease .3s;border:1px solid #fbfbfb}.option-item .questionSeq[data-v-7fac7a23]{padding:8px 0}.option-item.isActive[data-v-7fac7a23]{border-color:#2e9adb}.option-item.isTrue[data-v-7fac7a23]{border:1px solid #70b603}.option-item.isTrue[data-v-7fac7a23] .el-radio__input.is-checked .el-radio__inner{border-color:#70b603;background:#70b603}.option-item.isFalse[data-v-7fac7a23]{border:1px solid #d9001b}.option-item.isFalse[data-v-7fac7a23] .el-radio__input.is-checked .el-radio__inner{border-color:#d9001b;background:#d9001b}.option-item[data-v-7fac7a23]:hover{background:#ddd}.option-item[data-v-7fac7a23] .content{cursor:pointer}.option-item[data-v-7fac7a23] .stem-content.no-border{padding:8px 14px!important;cursor:pointer}.image-file[data-v-506f1aca]{width:218px;object-fit:scale-down}.video-file[data-v-506f1aca]{width:408px}.file-render[data-v-506f1aca]{width:100%}.file-info[data-v-506f1aca]{flex:1;min-width:0}.file-info.videoHandler[data-v-506f1aca]{display:flex;flex-direction:column;justify-content:center}.file-info.videoHandler .fileName[data-v-506f1aca]{font-size:18px;color:#333;margin-bottom:19px}.file-info.videoHandler .fileInfo[data-v-506f1aca]{font-size:14px;color:#666;margin-bottom:19px}.audio .audio-icon[data-v-25355b9e]{width:36px;height:36px;margin-right:20px}.audio .audio-icon img[data-v-25355b9e]{width:100%;height:100%;display:block}.audio .audio-controls[data-v-25355b9e]{width:100%;max-width:200px;flex:1;height:36px}.audio .audio-controls .audio-controls--handler[data-v-25355b9e],.audio .audio-controls .audio-controls--progress[data-v-25355b9e]{width:100%}.audio .audio-controls .audio-controls--handler[data-v-25355b9e]{line-height:1}.audio .audio-controls .audio-controls--handler .play[data-v-25355b9e]{font-size:24px}.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-25355b9e]{width:22px;height:22px;display:block;cursor:pointer}.audio .audio-controls .audio-controls--handler .current-time[data-v-25355b9e],.audio .audio-controls .audio-controls--handler .total-time[data-v-25355b9e]{font-size:12px;color:#333}.play-handler.mobile[data-v-25355b9e]{width:20px;height:20px}.audio-component[data-v-25355b9e]{display:none}[data-v-25355b9e] .el-slider__runway{margin:0 0 4px 0;background:#e3e3e3;height:4px}[data-v-25355b9e] .el-slider__bar{height:4px}[data-v-25355b9e] .el-slider__button{width:10px;height:10px}[data-v-25355b9e] .el-slider__button-wrapper{top:-15px}[data-v-7628e470] .el-dialog__header{padding:10px}.video-content[data-v-7628e470]{width:180px;height:135px;border-radius:6px;overflow:hidden;position:relative}.video-content .play[data-v-7628e470]{position:absolute;left:50%;top:50%;cursor:pointer;transform:translateX(-50%) translateY(-50%)}.video-mask[data-v-7628e470]{position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.video-mask img[data-v-7628e470]{position:absolute;left:50%;top:50%;transform:translate(-50% -50%);display:block}.video-player[data-v-7628e470]{width:100%}
|
||||
.option-item+.option-item[data-v-12a7caa8]{margin-top:16px}.option-item[data-v-12a7caa8]{display:flex;background:#fbfbfb;border-radius:6px;padding-left:16px;cursor:pointer;transition:all ease .3s;border:1px solid #fbfbfb}.option-item .questionSeq[data-v-12a7caa8]{padding:8px 0}.option-item.isActive[data-v-12a7caa8]{border-color:#2e9adb}.option-item.isTrue[data-v-12a7caa8]{border:1px solid #70b603}.option-item.isTrue[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner{border-color:#70b603;background:#70b603}.option-item.isFalse[data-v-12a7caa8]{border:1px solid #d9001b}.option-item.isFalse[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner{border-color:#d9001b;background:#d9001b}.option-item[data-v-12a7caa8]:hover{background:#ddd}.option-item[data-v-12a7caa8] .content{cursor:pointer}.option-item[data-v-12a7caa8] .stem-content.no-border{padding:8px 14px!important;cursor:pointer}.option-item+.option-item[data-v-f42e3dba]{margin-top:16px}.option-item[data-v-f42e3dba]{display:flex;background:#fbfbfb;border-radius:6px;padding-left:16px;cursor:pointer;transition:all ease .3s;border:1px solid #fbfbfb}.option-item.isActive[data-v-f42e3dba]{border-color:#2e9adb}.option-item .questionSeq[data-v-f42e3dba]{padding:8px 0}.option-item.isTrue[data-v-f42e3dba]{border:1px solid #70b603}.option-item.isTrue[data-v-f42e3dba] .el-checkbox__input.is-checked .el-checkbox__inner{border-color:#70b603;background:#70b603}.option-item.isFalse[data-v-f42e3dba]{border:1px solid #d9001b}.option-item.isFalse[data-v-f42e3dba] .el-checkbox__input.is-checked .el-checkbox__inner{border-color:#d9001b;background:#d9001b}.option-item[data-v-f42e3dba]:hover{background:#ddd}.option-item[data-v-f42e3dba] .content{cursor:pointer}.option-item[data-v-f42e3dba] .stem-content.no-border{padding:8px 14px!important;cursor:pointer}.content[data-v-bfc32194]{width:100%}.content .stem-content[data-v-bfc32194]{width:100%;box-sizing:border-box;padding:5px 14px;height:auto;border:1px solid #e7e7e7;border-radius:6px;cursor:pointer}.content .stem-content.no-border[data-v-bfc32194]{padding:0;border:none;cursor:default}.content .stem-content .placeholder[data-v-bfc32194]{color:#c0c4cc;font-size:14px;cursor:pointer;user-select:none}.image-file[data-v-9dadad14]{width:218px;object-fit:scale-down}.video-file[data-v-9dadad14]{width:408px}.file-render[data-v-9dadad14]{width:100%}.file-info[data-v-9dadad14]{flex:1;min-width:0}.file-info.videoHandler[data-v-9dadad14]{display:flex;flex-direction:column;justify-content:center}.file-info.videoHandler .fileName[data-v-9dadad14]{font-size:18px;color:#333;margin-bottom:19px}.file-info.videoHandler .fileInfo[data-v-9dadad14]{font-size:14px;color:#666;margin-bottom:19px}.audio .audio-icon[data-v-525a170e]{width:36px;height:36px;margin-right:20px}.audio .audio-icon img[data-v-525a170e]{width:100%;height:100%;display:block}.audio .audio-controls[data-v-525a170e]{width:100%;max-width:200px;flex:1;height:36px}.audio .audio-controls .audio-controls--handler[data-v-525a170e],.audio .audio-controls .audio-controls--progress[data-v-525a170e]{width:100%}.audio .audio-controls .audio-controls--handler[data-v-525a170e]{line-height:1}.audio .audio-controls .audio-controls--handler .play[data-v-525a170e]{font-size:24px}.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-525a170e]{width:22px;height:22px;display:block;cursor:pointer}.audio .audio-controls .audio-controls--handler .current-time[data-v-525a170e],.audio .audio-controls .audio-controls--handler .total-time[data-v-525a170e]{font-size:12px;color:#333}.play-handler.mobile[data-v-525a170e]{width:20px;height:20px}.audio-component[data-v-525a170e]{display:none}[data-v-525a170e] .el-slider__runway{margin:0 0 4px 0;background:#e3e3e3;height:4px}[data-v-525a170e] .el-slider__bar{height:4px}[data-v-525a170e] .el-slider__button{width:10px;height:10px}[data-v-525a170e] .el-slider__button-wrapper{top:-15px}[data-v-13303366] .el-dialog__header{padding:10px}.video-content[data-v-13303366]{width:180px;height:135px;border-radius:6px;overflow:hidden;position:relative}.video-content .play[data-v-13303366]{position:absolute;left:50%;top:50%;cursor:pointer;transform:translateX(-50%) translateY(-50%)}.video-mask[data-v-13303366]{position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.video-mask img[data-v-13303366]{position:absolute;left:50%;top:50%;transform:translate(-50% -50%);display:block}.video-player[data-v-13303366]{width:100%}
|
||||
@ -1,12 +1,4 @@
|
||||
|
||||
.xml-text-h5[data-v-1fc9f10a] {
|
||||
}
|
||||
.xml-text-pc[data-v-1fc9f10a] {
|
||||
}
|
||||
.xml-text-h5[data-v-1fc9f10a] {
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*# sourceMappingURL=XmlTextDialog.vue.map */
|
||||
.xml-text-h5 .inline-audio-wrap,
|
||||
@ -80,6 +72,14 @@
|
||||
|
||||
/*# sourceMappingURL=XmlText.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-pc[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
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,114 +1,111 @@
|
||||
|
||||
|
||||
/*# sourceMappingURL=rotundity.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=rectangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=semicircle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=triangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=twelfth.vue.map */
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=hexagon.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourteen.vue.map */
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
/*# sourceMappingURL=semicircle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=square.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=thirteenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=second.vue.map */
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventeen.vue.map */
|
||||
/*# sourceMappingURL=rotundity.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
/*# sourceMappingURL=twelfth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighteen.vue.map */
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighteen2.vue.map */
|
||||
/*# sourceMappingURL=fifteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=nineteen.vue.map */
|
||||
/*# sourceMappingURL=triangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=nineteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=eighteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventeen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme3.vue.map */
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme6.vue.map */
|
||||
/*# sourceMappingURL=SanQintheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Knowledge.vue.map */
|
||||
/*# sourceMappingURL=Greentheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme2.vue.map */
|
||||
/*# sourceMappingURL=eighteen2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Twentyone.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme1.vue.map */
|
||||
/*# sourceMappingURL=SanQintheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Knowledge.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Twentyone.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Twentythree.vue.map */
|
||||
@ -117,13 +114,16 @@
|
||||
/*# sourceMappingURL=Twentytwo.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=SanQintheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=twenty.vue.map */
|
||||
|
||||
.xml-text-h5[data-v-1fc9f10a] {
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-pc[data-v-1fc9f10a] {
|
||||
.xml-text-pc[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-h5[data-v-1fc9f10a] {
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
|
||||
.xml-text-h5 .inline-audio-wrap,
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1,22 +1,16 @@
|
||||
|
||||
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=sixth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme6.vue.map */
|
||||
/*# sourceMappingURL=first.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
.title-text[data-v-616d10ee] {
|
||||
/*# sourceMappingURL=rectangle.vue.map */
|
||||
.title-text[data-v-c72aed64] {
|
||||
background-color: var(--background-color) !important;
|
||||
}
|
||||
.title-left[data-v-616d10ee] {
|
||||
.title-left[data-v-c72aed64] {
|
||||
border-color: var(--background-color) !important;
|
||||
color: var(--background-color) !important;
|
||||
}
|
||||
@ -24,43 +18,40 @@
|
||||
/*# sourceMappingURL=third.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=hexagon.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=twelfth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=rectangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
/*# sourceMappingURL=semicircle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=thirteenth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=semicircle.vue.map */
|
||||
/*# sourceMappingURL=Yellowtheme6.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtythree.vue.map */
|
||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=twelfth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Greentheme6.vue.map */
|
||||
@ -69,37 +60,34 @@
|
||||
/*# sourceMappingURL=sixteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventeen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=triangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtysix.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Knowledge.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyfour.vue.map */
|
||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=nineteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=BuleRectangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=fourteen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||
/*# sourceMappingURL=fifth.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=hexagon.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=triangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyone.vue.map */
|
||||
@ -108,66 +96,78 @@
|
||||
/*# sourceMappingURL=Thirtyfive.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme3.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleCrane.vue.map */
|
||||
/*# sourceMappingURL=Thirtythree.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtytwo.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=BuleRectangleTwo.vue.map */
|
||||
/*# sourceMappingURL=Thirtysix.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyfour.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=seventeen.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyeight.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtynine.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtyseven.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleTearcher.vue.map */
|
||||
/*# sourceMappingURL=BuleRectangle.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleQuestion.vue.map */
|
||||
/*# sourceMappingURL=titleLight.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleLogging.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagefive.vue.map */
|
||||
/*# sourceMappingURL=titleCrane.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleText.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||
/*# sourceMappingURL=titleQuestion.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagefour.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Thirtynine.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagetwo.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Forty.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Fortyone.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleLight.vue.map */
|
||||
.title-bgimg[data-v-025e9706] {
|
||||
/*# sourceMappingURL=BuleRectangleTwo.vue.map */
|
||||
.title-bgimg[data-v-0d1db218] {
|
||||
background-image: url(../style/title-text-bgimg.png);
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=Sevenpageone.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=titleTearcher.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagethree.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Fortyone.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagefour.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagefive.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Sevenpagetwo.vue.map */
|
||||
|
||||
|
||||
/*# sourceMappingURL=Forty.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-1fc9f10a] {
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-pc[data-v-1fc9f10a] {
|
||||
.xml-text-pc[data-v-4ae2eebc] {
|
||||
}
|
||||
.xml-text-h5[data-v-1fc9f10a] {
|
||||
.xml-text-h5[data-v-4ae2eebc] {
|
||||
}
|
||||
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -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-c72aed64]{background-color:var(--background-color)!important}.title-left[data-v-c72aed64]{border-color:var(--background-color)!important;color:var(--background-color)!important}.title-bgimg[data-v-0d1db218]{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,12 +1,12 @@
|
||||
|
||||
.xml-video-container-h5[data-v-099f61c2] {
|
||||
.xml-video-container-h5[data-v-0976e3e4] {
|
||||
}
|
||||
.xml-video-container-pc[data-v-099f61c2] {
|
||||
.xml-video-container-pc[data-v-0976e3e4] {
|
||||
}
|
||||
.xml-video-container-pad[data-v-099f61c2] {
|
||||
.xml-video-container-pad[data-v-0976e3e4] {
|
||||
}
|
||||
|
||||
.xml-video-container-pdf[data-v-3c5e97c1] {
|
||||
.xml-video-container-pdf[data-v-8036e7f4] {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
@ -16,13 +16,13 @@
|
||||
padding-bottom: 56.25%;
|
||||
background: #000;
|
||||
}
|
||||
.xml-video-container-pdf .cover[data-v-3c5e97c1] {
|
||||
.xml-video-container-pdf .cover[data-v-8036e7f4] {
|
||||
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-8036e7f4] {
|
||||
position: absolute;
|
||||
top: 45%;
|
||||
left: 45%;
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/*
|
||||
* XmlDigitalTeaching v0.0.1
|
||||
* Copyright ©Tue Jul 16 2024 17:22:43 GMT+0800 (中国标准时间) smile
|
||||
* Copyright ©Mon Jul 22 2024 15:42:53 GMT+0800 (中国标准时间) smile
|
||||
* Released under the ISC License.
|
||||
*/
|
||||
//
|
||||
@ -14728,7 +14728,7 @@ __vue_render__$1._withStripped = true;
|
||||
/* style */
|
||||
const __vue_inject_styles__$1 = undefined;
|
||||
/* scoped */
|
||||
const __vue_scope_id__$1 = "data-v-099f61c2";
|
||||
const __vue_scope_id__$1 = "data-v-0976e3e4";
|
||||
/* module identifier */
|
||||
const __vue_module_identifier__$1 = undefined;
|
||||
/* functional template */
|
||||
@ -14939,7 +14939,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-8036e7f4";
|
||||
/* 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-8036e7f4]{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-8036e7f4]{position:absolute;top:0;max-width:100%;max-height:100%}.xml-video-container-pdf .play[data-v-8036e7f4]{position:absolute;top:45%;left:45%;width:10%;background:#bebebe;border-radius:50%}
|
||||
@ -13,7 +13,10 @@ const routes = [
|
||||
{
|
||||
path: '/book',
|
||||
name: 'Book',
|
||||
component: () => import(/* webpackChunkName: "about" */ '../views/Book.vue')
|
||||
component: () => import(/* webpackChunkName: "about" */ '../views/Book.vue'),
|
||||
meta:{
|
||||
title:"新思课堂电子书阅读"
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/about',
|
||||
|
||||
@ -228,6 +228,28 @@ var userAction = {
|
||||
}
|
||||
|
||||
|
||||
var user = {
|
||||
|
||||
info: (params) =>{
|
||||
return request({
|
||||
url: `${prefix}/get_user_nickname`,
|
||||
method: 'GET',
|
||||
data: {},
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
classList :(params) =>{
|
||||
return request({
|
||||
url: `${prefix}/book/get/classListOfBook`,
|
||||
method: 'GET',
|
||||
data: params,
|
||||
})
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
export var bookApi ={
|
||||
bookinfo,
|
||||
@ -235,7 +257,8 @@ export var bookApi ={
|
||||
bookmark,
|
||||
highlight,
|
||||
resource,
|
||||
userAction
|
||||
userAction,
|
||||
user
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -26,6 +26,8 @@
|
||||
:joinClass ="joinClass"
|
||||
:READER_MODE ="READER_MODE"
|
||||
:gradesName = "gradesName"
|
||||
:userInfoparms = "userInfo"
|
||||
:teacherDateclass = "classList"
|
||||
@updateReadLocation="updateReadLocation"
|
||||
@addNote="addNote"
|
||||
@editNote="editNote"
|
||||
@ -82,6 +84,7 @@ export default {
|
||||
catalogList: [],
|
||||
looseLeafData: {},
|
||||
bookId: '',
|
||||
chapterId:"",
|
||||
show:false,
|
||||
showError:false,
|
||||
fullscreenLoading:true,
|
||||
@ -111,11 +114,14 @@ export default {
|
||||
list: []
|
||||
}
|
||||
},
|
||||
setting: {}
|
||||
setting: {},
|
||||
userInfo:{},
|
||||
classList:[],
|
||||
}
|
||||
},
|
||||
|
||||
created() {
|
||||
document.title = "新思课堂电子书阅读"
|
||||
this.bookId = this.$route.query.bookId
|
||||
|
||||
if (this.$route.query.chapterId){
|
||||
@ -228,6 +234,10 @@ export default {
|
||||
this.fullscreenLoading = false
|
||||
this.digitalTeaching = true
|
||||
|
||||
//
|
||||
this.userInfo = await bookApi.user.info()
|
||||
|
||||
this.classList = await bookApi.user.classList({bookId:this.bookId})
|
||||
},
|
||||
methods: {
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user