cyc
29
src/App.vue
@ -1,15 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<div id="nav">
|
|
||||||
<div>
|
<router-view/>
|
||||||
<a :href=this.$store.state.redirecturl>返回首页</a>
|
|
||||||
</div>
|
|
||||||
<!-- <router-link to="/book">书籍</router-link> | -->
|
|
||||||
<h3>{{this.$store.state.textBookData.textBooksName}}</h3>
|
|
||||||
<div></div>
|
|
||||||
<!-- <router-link to="/about">About</router-link> -->
|
|
||||||
</div>
|
|
||||||
<router-view/>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -17,9 +9,10 @@
|
|||||||
<script>
|
<script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
export default{
|
export default{
|
||||||
|
|
||||||
|
components:{
|
||||||
|
},
|
||||||
|
|
||||||
data(){
|
data(){
|
||||||
|
|
||||||
@ -47,19 +40,5 @@ export default{
|
|||||||
color: #2c3e50;
|
color: #2c3e50;
|
||||||
}
|
}
|
||||||
|
|
||||||
#nav {
|
|
||||||
padding: 30px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
|
|
||||||
#nav a {
|
|
||||||
font-weight: bold;
|
|
||||||
color: #2c3e50;
|
|
||||||
}
|
|
||||||
|
|
||||||
#nav a.router-link-exact-active {
|
|
||||||
color: #42b983;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
118
src/components/MindElixirDialog.vue
Normal file
@ -0,0 +1,118 @@
|
|||||||
|
<template>
|
||||||
|
<el-dialog
|
||||||
|
title="思维导图"
|
||||||
|
:visible.sync="dialogVisible"
|
||||||
|
width="80%"
|
||||||
|
@close="handleClose"
|
||||||
|
>
|
||||||
|
<div ref="mindElixirContainer" id="mindContainerID" style="width: 100%; height: 500px;"></div>
|
||||||
|
|
||||||
|
<template slot="footer">
|
||||||
|
|
||||||
|
<el-button type="primary" @click="save"> 保存</el-button>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
</el-dialog>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import MindElixir from 'mind-elixir';
|
||||||
|
// import 'mind-elixir/dist/mind-elixir.css';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'MindElixirDialog',
|
||||||
|
props: {
|
||||||
|
visible: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
mindData:{
|
||||||
|
type: Object,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data(){
|
||||||
|
return {
|
||||||
|
dialogVisible : this.visible, // 使用本地数据属性
|
||||||
|
mindElixir: null // 记录 MindElixir 实例
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
visible(val) {
|
||||||
|
this.dialogVisible = val; // 监听 prop 变化
|
||||||
|
this.initMindElixir()
|
||||||
|
},
|
||||||
|
dialogVisible(val) {
|
||||||
|
// 触发父组件的同步更新
|
||||||
|
this.$emit('update:visible', val);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted(){
|
||||||
|
if (this.visible){
|
||||||
|
this.initMindElixir()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
beforeDestroy(){
|
||||||
|
if(this.mindElixir){
|
||||||
|
// this.mindElixir.destroy()
|
||||||
|
// this.$refs.mindElixirContainer.innerHTML = '';
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
initMindElixir() {
|
||||||
|
// 确保 DOM 渲染完成
|
||||||
|
|
||||||
|
if (this.mindElixir) return
|
||||||
|
this.$nextTick(() => {
|
||||||
|
// console.log(this.refs.mindElixirContainer)
|
||||||
|
|
||||||
|
this.mindElixir = new MindElixir({
|
||||||
|
el: this.$refs.mindElixirContainer,
|
||||||
|
// el:"#mindContainerID",
|
||||||
|
direction: MindElixir.LEFT,
|
||||||
|
draggable: true, // default true
|
||||||
|
contextMenu: true, // default true
|
||||||
|
toolBar: true, // default true
|
||||||
|
nodeMenu: true, // default true
|
||||||
|
keypress: true, // default true
|
||||||
|
locale:'zh_CN',
|
||||||
|
newTopicName :"新节点"
|
||||||
|
|
||||||
|
// 其他 MindElixir 配置
|
||||||
|
});
|
||||||
|
// if (this.mindData)
|
||||||
|
if (Object.keys(this.mindData).length !== 0)
|
||||||
|
{
|
||||||
|
this.mindElixir.init(this.mindData);
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.mindElixir.init(MindElixir.new("新节点"));
|
||||||
|
});
|
||||||
|
},
|
||||||
|
handleClose() {
|
||||||
|
if (this.mindElixir) {
|
||||||
|
// debugger
|
||||||
|
// this.$refs.mindElixirContainer.innerHTML = '';
|
||||||
|
}
|
||||||
|
this.dialogVisible = false; // 关闭对话框时更新本地数据
|
||||||
|
|
||||||
|
},
|
||||||
|
save(){
|
||||||
|
|
||||||
|
debugger
|
||||||
|
var data = this.mindElixir.getData()
|
||||||
|
// data = JSON.stringify(data)
|
||||||
|
|
||||||
|
this.$emit("save",data)
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
/* 添加任何必要的样式 */
|
||||||
|
</style>
|
||||||
|
|
||||||
116
src/components/Navigation.vue
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
<template>
|
||||||
|
<div id="nav">
|
||||||
|
<div>
|
||||||
|
<a :href=this.$store.state.redirecturl>返回首页</a>
|
||||||
|
</div>
|
||||||
|
<!-- <router-link to="/book">书籍</router-link> | -->
|
||||||
|
<h3>{{this.$store.state.textBookData.textBooksName}}</h3>
|
||||||
|
<div style="display: flex; justify-content: center;align-items: center;">
|
||||||
|
<!-- <el-button v-if="this.$store.state.showNaotu"
|
||||||
|
type="primary" icon="el-icon-edit"
|
||||||
|
@click="showDialog">脑图</el-button> -->
|
||||||
|
<div v-if="true" style="display: flex; margin-right: 20px; justify-content: center;" @click="showDialog">
|
||||||
|
<el-button icon="el-icon-edit" >脑图</el-button>
|
||||||
|
<!-- <el-button type="primary" icon="el-icon-search">搜索</el-button> -->
|
||||||
|
|
||||||
|
<!-- <i class="el-icon-edit" style="margin-right: 10px"></i>
|
||||||
|
<p>脑图</p> -->
|
||||||
|
</div>
|
||||||
|
<el-switch v-model="mode"
|
||||||
|
active-text="专注模式"
|
||||||
|
@change="changeMode"
|
||||||
|
>
|
||||||
|
</el-switch>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<MindElixirDialog :visible.sync="dialogVisible" :mindData="mindData" @save="save" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import MindElixirDialog from './MindElixirDialog.vue';
|
||||||
|
import {eventBus} from '../eventBus'
|
||||||
|
import {bookApi} from "../service/getData"
|
||||||
|
import {getStore} from '../utils/mUtils'
|
||||||
|
export default {
|
||||||
|
|
||||||
|
components:{
|
||||||
|
MindElixirDialog
|
||||||
|
},
|
||||||
|
data(){
|
||||||
|
return {
|
||||||
|
dialogVisible:false,
|
||||||
|
mode:false,
|
||||||
|
bookId:'',
|
||||||
|
userId:'',
|
||||||
|
mindData:{},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
async mounted() {
|
||||||
|
this.bookId = this.$route.query.bookId
|
||||||
|
|
||||||
|
console.log(this.bookId)
|
||||||
|
this.userId = getStore("userId")
|
||||||
|
var res = await bookApi.naotu.info({
|
||||||
|
"bookId": this.bookId,
|
||||||
|
"userId": this.userId,
|
||||||
|
})
|
||||||
|
|
||||||
|
console.log(res)
|
||||||
|
if (res.length>0){
|
||||||
|
console.log("bbbbbb")
|
||||||
|
this.$nextTick(()=>{
|
||||||
|
this.mindData = res[0].content
|
||||||
|
|
||||||
|
})
|
||||||
|
}
|
||||||
|
console.log("aaaaaa")
|
||||||
|
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
showDialog() {
|
||||||
|
this.dialogVisible = true;
|
||||||
|
},
|
||||||
|
changeMode(e){
|
||||||
|
eventBus.$emit('changeMode',e)
|
||||||
|
|
||||||
|
},
|
||||||
|
save(data){
|
||||||
|
console.log(data)
|
||||||
|
|
||||||
|
data = {
|
||||||
|
bookId:this.bookId,
|
||||||
|
userId:this.userId,
|
||||||
|
content:data
|
||||||
|
}
|
||||||
|
data = JSON.stringify(data)
|
||||||
|
|
||||||
|
bookApi.naotu.update({data})
|
||||||
|
console.log(data)
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
#nav {
|
||||||
|
padding: 30px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav a {
|
||||||
|
font-weight: bold;
|
||||||
|
color: #2c3e50;
|
||||||
|
}
|
||||||
|
|
||||||
|
#nav a.router-link-exact-active {
|
||||||
|
color: #42b983;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
3
src/eventBus.js
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import Vue from "vue";
|
||||||
|
|
||||||
|
export const eventBus = new Vue()
|
||||||
|
Before Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 20 KiB |
@ -1,14 +1,14 @@
|
|||||||
.catalog-node-label[data-v-a4248782] {
|
.catalog-node-label[data-v-61c986fa] {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
.catalog-node-label img[data-v-a4248782] {
|
.catalog-node-label img[data-v-61c986fa] {
|
||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
}
|
}
|
||||||
.xml-show-catalog[data-v-a4248782] .el-tree-node__content {
|
.xml-show-catalog[data-v-61c986fa] .el-tree-node__content {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
.xml-show-catalog[data-v-a4248782] .el-tree-node__content .catalog-node-label {
|
.xml-show-catalog[data-v-61c986fa] .el-tree-node__content .catalog-node-label {
|
||||||
max-width: calc(100% - 24px);
|
max-width: calc(100% - 24px);
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
//
|
//
|
||||||
@ -307,7 +307,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-a4248782";
|
const __vue_scope_id__ = "data-v-61c986fa";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
.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}
|
.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}
|
||||||
@ -1,9 +1,9 @@
|
|||||||
|
|
||||||
.xml-ebook-container-h5[data-v-4640bc87] {
|
.xml-ebook-container-h5[data-v-402ad275] {
|
||||||
}
|
}
|
||||||
.xml-ebook-container-pc[data-v-4640bc87] {
|
.xml-ebook-container-pc[data-v-402ad275] {
|
||||||
}
|
}
|
||||||
.xml-ebook-container-pad[data-v-4640bc87] {
|
.xml-ebook-container-pad[data-v-402ad275] {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
//
|
//
|
||||||
@ -435,6 +435,11 @@ var script = {
|
|||||||
goRead(info) {
|
goRead(info) {
|
||||||
console.log('🚀 ~ goRead ~ info:', info);
|
console.log('🚀 ~ goRead ~ info:', info);
|
||||||
if (this.mode === 'preview') {
|
if (this.mode === 'preview') {
|
||||||
|
this.$EventBus.$emit('learningStatistics', {
|
||||||
|
type: 'ebook',
|
||||||
|
info: null,
|
||||||
|
data: info
|
||||||
|
});
|
||||||
if (info.source != 'netlink') {
|
if (info.source != 'netlink') {
|
||||||
const baseUrl = info.uploadFileUrl.indexOf('./') !== -1 ? this.resourceBasisPath + info.uploadFileUrl.split('./')[1] : info.uploadFileUrl;
|
const baseUrl = info.uploadFileUrl.indexOf('./') !== -1 ? this.resourceBasisPath + info.uploadFileUrl.split('./')[1] : info.uploadFileUrl;
|
||||||
if (this.isReader) {
|
if (this.isReader) {
|
||||||
@ -771,7 +776,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-4640bc87";
|
const __vue_scope_id__ = "data-v-402ad275";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
//
|
//
|
||||||
@ -207,7 +207,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-619d09d0";
|
const __vue_scope_id__ = "data-v-35e9204b";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
//
|
//
|
||||||
@ -293,6 +293,8 @@ var script = {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var __$_require_static_images_leaflet_resource_enter_html_cover_png__ = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAADAFBMVEVHcExRjv9amv9Vkv9Xl/9Wlf9XmP9Uk/9Xlv9Wlf9PjP9am/9Wkv9SkP/y9//X5/9Tkf9Uk/9Xl/9UkP9Zmv9XmP9YmP82cP9PjP9TkP9Tjf9Xl/9Vk/9Rj/9Zmf9Rjf9VlP9SkP9Piv9cnf9Xlv9Rjv9Vlf9Xl/9Uk/9anP9bnf9Tj/9cnf9YlP9Pi//M3/9Qi/9XmP9Wlv9Wlf9cnf9Pi/9alf9PjP9hkv/o8P9Piv9Oiv9cnf9bnP9Oiv9Vk/9YmP9Wlv9Oiv9Qjf9Vk//t9P9cnf9am/9Zmf9cnf9Xmf9cnv9cnf9Rjv9dj/9QjP/d6f9cnP98pP+avP+dv/9Ukv9cnv9Ymv9Xl/9Sj/9Zmv9amv9Ukv/i7P9Pi/9llP+40f9WlP+qyf9cnv9cnv9bnf9YjP9Zmf9xnP9rmP/W5P/J2/9Zmf+hwf9UkP9bnf9Vk/9Ukv+VuP9Ri/9cnv93o/+kxv+0zv9Zkf9Sj//G2P/c6P9lmP9bnf9cnf+HrP9zn/+70v/F2/9Wlf+DsP9ql/+Zu/9Oh/9bnP+Drf9jlv9Ukf+syv9srf+/0/9Ukv/Y5v93o/92pf/D2P/U5P9qmf/P4P95qP9Qh/+Osf9dn/9ZmP+mxP+jwf+/1v9Sj/9zov9rm/+40P94pf9xnf9gmv92pf+ryf9jmv+Os/9cnv+Zuv9rmv+Yuv+evv+ryv+WuP+Psv/m7/+nxP9Vk/93pv+zyv+Bp/9amv+gvf+fwv9jnv9Ie//U5P9Zmf9xov+AsP9Tj/9ckf98pv+Rsf9Siv+91v+cv//c6v/h7f/Q4f9nmf+uzP9zr/82av81aP9Oh/+fwP9Cef93ov+Drf98rf9pmv9Eff89dP9JhP87cf85b/9Hgv9bnf9eof9hpP9ipv9Zmv9kqP9lqv9nrf9Uk/9GgP9MiP9AeP9Skf9YmP8/dv9Pjf9Cev9Niv9Rj/9Xlv9dnv////9pr/9rsv83bP9VlP9mq/9gov9am/82av9Lhv9Oi/9qsP9en//4+v87FKQ1AAAA13RSTlMA+/iUfP78/YD79/WXof78/fmHj/r4dwHzqZn1pfhwxIX755eDrffyifLundCgzv28eYuR3NSatqv97+yc5+Kbeo7bsa38yepzoXTi1qWlyfSxwur3vZFugrlqbbH8wLHnwvmmxLWh77q1+vni+rXAytjwiqy9yuIx4fL7n6m90q7t5dHfu/WQucSm69n++93qydv69T33+ZbWuaba9fHRP6b50sKD6+mWxIvIqtna4uPq9Pfm9PvLre/khwXt2OPr8Z2k31Le0ufr7TjyfoC/boy8csv6RK9k6+IAAAAJcEhZcwAACxIAAAsSAdLdfvwAAAjlSURBVGhD7Zh7VFTlGsbRARIaNw4X5TYoZJoSjMpFES+AjoQaTQyoiCPDeIMZEZgCAjQFRlBggQISergYKJAnvHARo0JBz6mjdqrVzTxaalbH0kySLtaR877f3pvZqDNsz7I/zlrzuPjDJTy/73ne99t70MzMJFMDpgZMDZga+P9rYMTPX3997dq1mzevX7/+xw8/fPvt779/Drpw4cI333wGunHj36Dvvz937tz58+f/Berr67vz/j/5Jo2zAMADCATAJQCAS7jzPj/CiB9/ZAg3McMf+gxGCBCh784dfhmSvvvfCbwiXP6OIZAxGMhwg8yBjIFpiWTgBxhMoAfNTnqgpQcTeAKQYIFz4KwSPwIvwG+XL1/GkowR6GW9vyVegItAIGN4AOGe6zBAgOuA96GPH2CA8PP9LRkh4IXjC2Az3EMY+krzAty6ePG3AcJDXmlegLuDCKpevfr7Kak0QKHIslGrJRJNWXFxcd3Ro0dVra3V1W+8IZfLDx8+derU7t2bN598zwjq7i0k4CrBpG16e21YoSm61tUxtomJkZF5eXlarfYI6JROB9Yfd2yPiEhN7ThpmHCXQ1D1qiaCXCYwEolpOYKs4WvmzMBAjzlzQkL8vJ8bu3L6vCef9XQW2D01fsTJjo8MEr4AwkUmg43NOrB3IQCRSDxBLII/RNbWCECChwcLiAbASBpgHhFhGMAh9Npw/EUod7H7YII+wsop0xnAuBHmWwwDfgUAmwEALi4OICsrK9FjolHuqGH4NQxDDI7AG8Ah9No8zvoD4jHQqFFAGUYELQGiuloKq5VZCkOYMn2e00hPqAgTpBqs6Mtf9QQEDKcDELEEGoGAREqKO1rTUlOPU+YF4BB6bVwed3Cwt7e0srSysLDACJiBCQElSahqGDPsUWmLrH5l9DynZz2FQyW49KWeAAkggL29laUl+HMJdAIJ1e44M7ChAfdIJls5BfeUAcQbrOgSh4CA4RCA9ocQ+gwIkFCvODpGwt1WyEP8SmUHcY08nUmC140BWMKtWwyAJXAy4BTA3xr8IxsaarLkft4Hd9B76jM04BKUhJNGABuB7ojOQE8B/a3BH6+aXIaAnfRFGAJw5RIIxwAEGkCXxBCYktzdwV9snRgQSe7ycVmpd/2Od3CNhIJpWFGCwRlc4RB61QyAECwtmWXF60bOj/4cwM7p8zDBEICvCIGs0hf96kmcCIy/lcjdauD85Gk0Z052tp93/WkAODGAAsMJvuIQ+iUAoEsCsQArkegTKlEshvM7dhNAdnmpn3d6OrnKdEVGAL9wCJRkEkMYbo+PJHKl8ZknoUTiVwL6y+iGtOWH/fyaT++ELcIEOOSCWIMz+IVDoDSTJ7EIAnBwwAf3hE8kGrG4rBhuQHF7IPjDNTh8Op087ZiLZgRwFQBsS1LNZCRgCiyKAUxQqaSJEKA9ILK9OKvBo+JsSAj4j4VHBS8AhyDVhE4G0Qh48dBSUaqAxO52RaQCdjSrzuOIBv2Zp+lc8sIJCp9hsKKrV/WEgLLZLAGD4Otz4kQVRbWWlXV3K/IUivZArVp+RNOY2ej9HDaEI7CzNQ74iSXAsirKFs2eHYqMdSjGX0K1Riq6u/OyNNRZDw+1/Hgm+rMN+Uwbt8x8qpfhBD9xCIrMRUAABMlBICpKsk7aWpiVV1hYp87MgqdE+fHMxtp73jdTewwD/sMhKGoWgQBBU0BnqYrCwlZpYZ5NXp1a2yBrQEAj+VARveFJJ6+5gmBoyNwoYIBw5UpWja+vLzJoSGjoCaoitO2EVFNYqFWrtRk16oyM7HI/9GdemEKfabbLzING94QbHPJtADAtAWDxYkAQxnpUf0Ub+re1tWVotRlymTwkRKmEfmCFyIcW3CG4ZlONApCAg4b7oM5+ejEIGb5IOEudWL9eKj3RloFC/5TSt+F9T08YXsgYABsa7W8kwW09AQAgZCzu8u3y9S2vWF9SIdWVEMllnSl+tUol6QcH4Eo+1sEOBY1e6LzWcEW39YQK5YIFC1hGV1cX1dilkzaWlKSUpKR0yjpra2uVb9eDf1T0hhVOrjBhNsBCoWHAewBgM1QoV69ezTAgiY7SdekCdCmoTlk28W8Gezj/fCfXkXOxIJgABHjGCMAsVU+oUL6clEQzSBLpodzcAPjKze2U5SQnJ6N/HNivgH7QP9jWdhlOYOEzAk/DH6/H6DNo0vfs2cNhIOBQiy43uYr4/33HO1FR0bS/F/qTCWMAN2MADjoz/fk1a5BBQ1YfkoJtTktOjixn7Ng49Ed7Uo+/gPEnAdzsnHn9tpOZ/uKLzyNj28vISEoKKIpLjtucU1UVFxcF/tEbNqxYMd8Vjz/YnzegaNWmTcgAyLZtQClqKYpDRUWBfxqxh+N7+QsFwcFPYT/0+d2W2lXySlBTFBa2ahWNoBlFLTkfg3tU2rvvpoE72Lt6ecJ6Qv3jOP4xL/ADZBfNmoUIZBwjjDXbc/4B4tjPZeuB/Qlizh/DH/DEE7NYBkKQsj0NhIfH07PtQz16/6Uxy3kmUFYtWcIg6CCbNh07Nv/YfBC432M/cP6lMQDI5zUDZdqBJYjAGNBVWNhfaIE5ujPl2I6HdtCeni+cfzlvQPqBAwTBQmaFeYV50fKH1fEJxrult0f/GDg/AD7gleDD9NfepBEkB8qfkVDog6vDsWeOj/bLzfP/xgtglnbor6jXiLaDIlD7QPEbg6e9WhA7Y0ZBQUG4V09Pj79QKLADvQDKz+cXAA7xYVXVQVBzc/Nu0GZQR0fHTtC+fQVNW0EJsbFAmREeHr527VpPZ+fKysr8fL7nvz/lGNBbRJ/u27hx6y74K78q+H8XIgAyZi8D4P+TvL+TRuza2tSUcIb3Dz30N/5pgL2gXaiYhKam2OVnzrx05iXUQ5/QwA+cxP9tSo2Pj09ISNi/n7M+PNd+qHPsjdjyJmg/ys3NDR8QQfiIGD3e+dFk2Ju6Zcvrr6I2gnrgUgsFAoGPnZ1z5aMBmH3E1APXC26X/no5P6KKhqrQ9O+mBkwNmBowNfBnNvBf+jUQ7IV8/ywAAAAASUVORK5CYII=";
|
||||||
|
|
||||||
function normalizeComponent(template, style, script, scopeId, isFunctionalTemplate, moduleIdentifier /* server only */, shadowMode, createInjector, createInjectorSSR, createInjectorShadow) {
|
function normalizeComponent(template, style, script, scopeId, isFunctionalTemplate, moduleIdentifier /* server only */, shadowMode, createInjector, createInjectorSSR, createInjectorShadow) {
|
||||||
if (typeof shadowMode !== 'boolean') {
|
if (typeof shadowMode !== 'boolean') {
|
||||||
createInjectorSSR = createInjector;
|
createInjectorSSR = createInjector;
|
||||||
@ -367,8 +369,6 @@ function normalizeComponent(template, style, script, scopeId, isFunctionalTempla
|
|||||||
|
|
||||||
/* script */
|
/* script */
|
||||||
const __vue_script__ = script;
|
const __vue_script__ = script;
|
||||||
|
|
||||||
/* template */
|
|
||||||
var __vue_render__ = function () {
|
var __vue_render__ = function () {
|
||||||
var _vm = this;
|
var _vm = this;
|
||||||
var _h = _vm.$createElement;
|
var _h = _vm.$createElement;
|
||||||
@ -413,7 +413,7 @@ var __vue_render__ = function () {
|
|||||||
? _vm.resourceBasisPath +
|
? _vm.resourceBasisPath +
|
||||||
_vm.blockData.fileCover.split("./")[1]
|
_vm.blockData.fileCover.split("./")[1]
|
||||||
: _vm.blockData.file
|
: _vm.blockData.file
|
||||||
: _vm.src,
|
: __$_require_static_images_leaflet_resource_enter_html_cover_png__,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
@ -453,7 +453,7 @@ var __vue_render__ = function () {
|
|||||||
? _vm.resourceBasisPath +
|
? _vm.resourceBasisPath +
|
||||||
_vm.blockData.fileCover.split("./")[1]
|
_vm.blockData.fileCover.split("./")[1]
|
||||||
: _vm.blockData.file
|
: _vm.blockData.file
|
||||||
: _vm.src,
|
: __$_require_static_images_leaflet_resource_enter_html_cover_png__,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
@ -535,7 +535,7 @@ var __vue_render__ = function () {
|
|||||||
? _vm.resourceBasisPath +
|
? _vm.resourceBasisPath +
|
||||||
_vm.blockData.fileCover.split("./")[1]
|
_vm.blockData.fileCover.split("./")[1]
|
||||||
: _vm.blockData.file
|
: _vm.blockData.file
|
||||||
: _vm.src,
|
: __$_require_static_images_leaflet_resource_enter_html_cover_png__,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
]),
|
]),
|
||||||
|
|||||||
@ -4,15 +4,15 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.el-image__inner[data-v-45a069ea] {
|
.el-image__inner[data-v-13b29683] {
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
.xml-image-ping-pu-h5[data-v-45a069ea] {
|
.xml-image-ping-pu-h5[data-v-13b29683] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
.xml-image-hua-lang[data-v-45a069ea] {
|
.xml-image-hua-lang[data-v-13b29683] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
@ -900,6 +900,10 @@ var script$1 = {
|
|||||||
title: this.title[index]
|
title: this.title[index]
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
this.$EventBus.$emit('learningStatistics', {
|
||||||
|
type: 'image',
|
||||||
|
info: null
|
||||||
|
});
|
||||||
this.$xmlImgPreview({
|
this.$xmlImgPreview({
|
||||||
multiple: true,
|
multiple: true,
|
||||||
nowImgIndex: this.current,
|
nowImgIndex: this.current,
|
||||||
@ -1119,7 +1123,7 @@ __vue_render__$2._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$1 = undefined;
|
const __vue_inject_styles__$1 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$1 = "data-v-45a069ea";
|
const __vue_scope_id__$1 = "data-v-13b29683";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$1 = undefined;
|
const __vue_module_identifier__$1 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
.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}
|
.xml-image-lun-bo .el-carousel__item{text-align:center}.el-image__inner[data-v-13b29683]{width:100%!important}.xml-image-ping-pu-h5[data-v-13b29683]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-13b29683]{display:flex;flex-direction:column;align-items:center}
|
||||||
@ -1,27 +1,35 @@
|
|||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=sixth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=first.vue.map */
|
/*# sourceMappingURL=first.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=eighth.vue.map */
|
/*# sourceMappingURL=eighth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fifth.vue.map */
|
/*# sourceMappingURL=second.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fourth.vue.map */
|
/*# sourceMappingURL=fourth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=third.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=second.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=seventh.vue.map */
|
/*# sourceMappingURL=seventh.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=sixth.vue.map */
|
/*# sourceMappingURL=third.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=fifth.vue.map */
|
||||||
|
|
||||||
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
|
}
|
||||||
|
.xml-text-pc[data-v-a0b70a4a] {
|
||||||
|
}
|
||||||
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.xml-image-lun-bo .el-carousel__item {
|
.xml-image-lun-bo .el-carousel__item {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -98,14 +106,6 @@
|
|||||||
|
|
||||||
/*# sourceMappingURL=XmlText.vue.map */
|
/*# 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 */
|
/*# sourceMappingURL=XmlTextDialog.vue.map */
|
||||||
|
|
||||||
@ -705,15 +705,15 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
.el-image__inner[data-v-45a069ea] {
|
.el-image__inner[data-v-13b29683] {
|
||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
}
|
}
|
||||||
.xml-image-ping-pu-h5[data-v-45a069ea] {
|
.xml-image-ping-pu-h5[data-v-13b29683] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
.xml-image-hua-lang[data-v-45a069ea] {
|
.xml-image-hua-lang[data-v-13b29683] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
.xml-image-lun-bo .el-carousel__item{text-align:center}.xml-text-h5 .inline-audio-wrap,.xml-text-h5 .inline-link-wrap{align-items:center}.xml-text-h5 .inline-audio-wrap span,.xml-text-h5 .inline-link-wrap span{display:inline-block}.xml-text-h5 .inline-audio-box{width:20px;height:20px;box-sizing:border-box;position:relative;margin-left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol{width:20px;height:20px;box-sizing:border-box;overflow:hidden;transform:rotate(135deg);position:relative}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle{border:3px solid #418eed;border-radius:50%;position:absolute}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.first{width:3px;height:3px;background:#0076bc;top:14px;left:14px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.second{width:15px;height:15px;top:10px;left:10px}.xml-text-h5 .inline-audio-box .wifi-symbol .wifi-circle.third{width:24px;height:24px;top:6px;left:6px}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .second{animation:fadeInOut 1s infinite .2s}.xml-text-h5 .inline-audio-box .wifi-symbol.playing .third{animation:fadeInOut 1s infinite .4s}@keyframes fadeInOut{0%{opacity:0}100%{opacity:1}}.virtual-input .el-textarea__inner{min-height:0!important;height:0!important;padding:0!important;margin:0!important;border:none!important}.el-image__inner[data-v-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}
|
.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-13b29683]{width:100%!important}.xml-image-ping-pu-h5[data-v-13b29683]{display:flex;flex-direction:column;align-items:center}.xml-image-hua-lang[data-v-13b29683]{display:flex;flex-direction:column;align-items:center}
|
||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
|
|||||||
@ -1,40 +0,0 @@
|
|||||||
|
|
||||||
.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;
|
|
||||||
}
|
|
||||||
@ -1 +0,0 @@
|
|||||||
.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,108 +1,117 @@
|
|||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=eighth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=first.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=tenth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=seventh.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=isosceles.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=second.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=quadrangle.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=wave.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fifteen.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=twelve.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=eleven.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=third.vue.map */
|
/*# sourceMappingURL=third.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
/*# sourceMappingURL=quadrangle.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=eleven.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=fifteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=tenth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=second.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=eighth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=isosceles.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=ninth.vue.map */
|
/*# sourceMappingURL=ninth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=first.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fourteen.vue.map */
|
/*# sourceMappingURL=fourteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme5.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=thirteen.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme3.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme6.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
/*# sourceMappingURL=twelve.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=sixteen.vue.map */
|
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=seventh.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=thirteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=SanQintheme2.vue.map */
|
/*# sourceMappingURL=SanQintheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Redtheme5.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Redtheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme5.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=wave.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Redtheme6.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Thirtyeight.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Thirtyseven2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Forty.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Thirtyfive.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=SanQintheme1.vue.map */
|
/*# sourceMappingURL=SanQintheme1.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme5.vue.map */
|
/*# sourceMappingURL=sixteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtyseven.vue.map */
|
/*# sourceMappingURL=Thirtyseven.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtyfive.vue.map */
|
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtysix.vue.map */
|
/*# sourceMappingURL=Thirtysix.vue.map */
|
||||||
@ -111,16 +120,7 @@
|
|||||||
/*# sourceMappingURL=SanQintheme3.vue.map */
|
/*# sourceMappingURL=SanQintheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtyseven2.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtyseven3.vue.map */
|
/*# sourceMappingURL=Thirtyseven3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtyeight.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Forty.vue.map */
|
|
||||||
.xml-text-h5 .inline-audio-wrap,
|
.xml-text-h5 .inline-audio-wrap,
|
||||||
.xml-text-h5 .inline-link-wrap {
|
.xml-text-h5 .inline-link-wrap {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -192,11 +192,11 @@
|
|||||||
|
|
||||||
/*# sourceMappingURL=XmlText.vue.map */
|
/*# sourceMappingURL=XmlText.vue.map */
|
||||||
|
|
||||||
.xml-text-h5[data-v-4ae2eebc] {
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
}
|
}
|
||||||
.xml-text-pc[data-v-4ae2eebc] {
|
.xml-text-pc[data-v-a0b70a4a] {
|
||||||
}
|
}
|
||||||
.xml-text-h5[data-v-4ae2eebc] {
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,18 +1,62 @@
|
|||||||
|
|
||||||
.xml-question-container-h5[data-v-ba265e2e] {
|
.xml-question-container-h5[data-v-0f531fa4] {
|
||||||
}
|
}
|
||||||
.xml-question-container-pc[data-v-ba265e2e] {
|
.xml-question-container-pc[data-v-0f531fa4] {
|
||||||
}
|
}
|
||||||
.xml-question-container-pad[data-v-ba265e2e] {
|
.xml-question-container-pad[data-v-0f531fa4] {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=QuestionItem.vue.map */
|
/*# sourceMappingURL=QuestionItem.vue.map */
|
||||||
.content[data-v-bfc32194] {
|
.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] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.content .stem-content[data-v-bfc32194] {
|
.content .stem-content[data-v-3d2dcb5b] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 5px 14px;
|
padding: 5px 14px;
|
||||||
@ -21,12 +65,12 @@
|
|||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.content .stem-content.no-border[data-v-bfc32194] {
|
.content .stem-content.no-border[data-v-3d2dcb5b] {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: none;
|
border: none;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
.content .stem-content .placeholder[data-v-bfc32194] {
|
.content .stem-content .placeholder[data-v-3d2dcb5b] {
|
||||||
color: #c0c4cc;
|
color: #c0c4cc;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@ -34,10 +78,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=common.vue.map */
|
/*# sourceMappingURL=common.vue.map */
|
||||||
.option-item + .option-item[data-v-12a7caa8] {
|
.option-item + .option-item[data-v-fa728c70] {
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
}
|
}
|
||||||
.option-item[data-v-12a7caa8] {
|
.option-item[data-v-fa728c70] {
|
||||||
display: flex;
|
display: flex;
|
||||||
background: #fbfbfb;
|
background: #fbfbfb;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
@ -46,190 +90,87 @@
|
|||||||
transition: all ease 0.3s;
|
transition: all ease 0.3s;
|
||||||
border: 1px solid #fbfbfb;
|
border: 1px solid #fbfbfb;
|
||||||
}
|
}
|
||||||
.option-item .questionSeq[data-v-12a7caa8] {
|
.option-item.isActive[data-v-fa728c70] {
|
||||||
padding: 8px 0;
|
|
||||||
}
|
|
||||||
.option-item.isActive[data-v-12a7caa8] {
|
|
||||||
border-color: #2e9adb;
|
border-color: #2e9adb;
|
||||||
}
|
}
|
||||||
.option-item.isTrue[data-v-12a7caa8] {
|
.option-item .questionSeq[data-v-fa728c70] {
|
||||||
|
padding: 8px 0;
|
||||||
|
}
|
||||||
|
.option-item.isTrue[data-v-fa728c70] {
|
||||||
border: 1px solid #70b603;
|
border: 1px solid #70b603;
|
||||||
}
|
}
|
||||||
.option-item.isTrue[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner {
|
.option-item.isTrue[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||||
border-color: #70b603;
|
border-color: #70b603;
|
||||||
background: #70b603;
|
background: #70b603;
|
||||||
}
|
}
|
||||||
.option-item.isFalse[data-v-12a7caa8] {
|
.option-item.isFalse[data-v-fa728c70] {
|
||||||
border: 1px solid #d9001b;
|
border: 1px solid #d9001b;
|
||||||
}
|
}
|
||||||
.option-item.isFalse[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner {
|
.option-item.isFalse[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||||
border-color: #d9001b;
|
border-color: #d9001b;
|
||||||
background: #d9001b;
|
background: #d9001b;
|
||||||
}
|
}
|
||||||
.option-item[data-v-12a7caa8]:hover {
|
.option-item[data-v-fa728c70]:hover {
|
||||||
background: #ddd;
|
background: #ddd;
|
||||||
}
|
}
|
||||||
.option-item[data-v-12a7caa8] .content {
|
.option-item[data-v-fa728c70] .content {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.option-item[data-v-12a7caa8] .stem-content.no-border {
|
.option-item[data-v-fa728c70] .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;
|
padding: 8px 14px !important;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=checkbox.vue.map */
|
/*# sourceMappingURL=checkbox.vue.map */
|
||||||
.image-file[data-v-9dadad14] {
|
.image-file[data-v-506f1aca] {
|
||||||
width: 218px;
|
width: 218px;
|
||||||
object-fit: scale-down;
|
object-fit: scale-down;
|
||||||
}
|
}
|
||||||
.video-file[data-v-9dadad14] {
|
.video-file[data-v-506f1aca] {
|
||||||
width: 408px;
|
width: 408px;
|
||||||
}
|
}
|
||||||
.file-render[data-v-9dadad14] {
|
.file-render[data-v-506f1aca] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.file-info[data-v-9dadad14] {
|
.file-info[data-v-506f1aca] {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
.file-info.videoHandler[data-v-9dadad14] {
|
.file-info.videoHandler[data-v-506f1aca] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
.file-info.videoHandler .fileName[data-v-9dadad14] {
|
.file-info.videoHandler .fileName[data-v-506f1aca] {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
margin-bottom: 19px;
|
margin-bottom: 19px;
|
||||||
}
|
}
|
||||||
.file-info.videoHandler .fileInfo[data-v-9dadad14] {
|
.file-info.videoHandler .fileInfo[data-v-506f1aca] {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #666666;
|
color: #666666;
|
||||||
margin-bottom: 19px;
|
margin-bottom: 19px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=index.vue.map */
|
/*# sourceMappingURL=index.vue.map */
|
||||||
.audio .audio-icon[data-v-525a170e] {
|
[data-v-7628e470] .el-dialog__header {
|
||||||
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--progress[data-v-525a170e], .audio .audio-controls .audio-controls--handler[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;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*# sourceMappingURL=audio-play-new.vue.map */
|
|
||||||
[data-v-13303366] .el-dialog__header {
|
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
.video-content[data-v-13303366] {
|
.video-content[data-v-7628e470] {
|
||||||
width: 180px;
|
width: 180px;
|
||||||
height: 135px;
|
height: 135px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.video-content .play[data-v-13303366] {
|
.video-content .play[data-v-7628e470] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transform: translateX(-50%) translateY(-50%);
|
transform: translateX(-50%) translateY(-50%);
|
||||||
}
|
}
|
||||||
.video-mask[data-v-13303366] {
|
.video-mask[data-v-7628e470] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
@ -237,15 +178,74 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
background: rgba(0, 0, 0, 0.5);
|
background: rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
.video-mask img[data-v-13303366] {
|
.video-mask img[data-v-7628e470] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
transform: translate(-50% -50%);
|
transform: translate(-50% -50%);
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
.video-player[data-v-13303366] {
|
.video-player[data-v-7628e470] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=video-play.vue.map */
|
/*# sourceMappingURL=video-play.vue.map */
|
||||||
|
.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--progress[data-v-25355b9e], .audio .audio-controls .audio-controls--handler[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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=audio-play-new.vue.map */
|
||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
const radioType = ['SingleSelect'];
|
const radioType = ['SingleSelect'];
|
||||||
@ -9,7 +9,7 @@ const showOptionsType = ['1', '2', '4', '5'];
|
|||||||
const showJudgeAnswerType = ['Judgement'];
|
const showJudgeAnswerType = ['Judgement'];
|
||||||
const showSortType = ['7'];
|
const showSortType = ['7'];
|
||||||
const showRichTextAnswerType = ['Filling', 'AskAnswer'];
|
const showRichTextAnswerType = ['Filling', 'AskAnswer'];
|
||||||
const isclozeType = ['Filling'];
|
const isclozeType = [''];
|
||||||
const isRadio = type => {
|
const isRadio = type => {
|
||||||
return radioType.includes(type);
|
return radioType.includes(type);
|
||||||
};
|
};
|
||||||
@ -383,7 +383,7 @@ __vue_render__$7._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$7 = undefined;
|
const __vue_inject_styles__$7 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$7 = "data-v-525a170e";
|
const __vue_scope_id__$7 = "data-v-25355b9e";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$7 = undefined;
|
const __vue_module_identifier__$7 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -13573,7 +13573,7 @@ __vue_render__$6._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$6 = undefined;
|
const __vue_inject_styles__$6 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$6 = "data-v-13303366";
|
const __vue_scope_id__$6 = "data-v-7628e470";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$6 = undefined;
|
const __vue_module_identifier__$6 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -13786,7 +13786,7 @@ __vue_render__$5._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$5 = undefined;
|
const __vue_inject_styles__$5 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$5 = "data-v-9dadad14";
|
const __vue_scope_id__$5 = "data-v-506f1aca";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$5 = undefined;
|
const __vue_module_identifier__$5 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -13978,7 +13978,7 @@ __vue_render__$4._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$4 = undefined;
|
const __vue_inject_styles__$4 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$4 = "data-v-bfc32194";
|
const __vue_scope_id__$4 = "data-v-3d2dcb5b";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$4 = undefined;
|
const __vue_module_identifier__$4 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -14289,7 +14289,7 @@ __vue_render__$3._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$3 = undefined;
|
const __vue_inject_styles__$3 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$3 = "data-v-12a7caa8";
|
const __vue_scope_id__$3 = "data-v-7fac7a23";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$3 = undefined;
|
const __vue_module_identifier__$3 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -14594,7 +14594,7 @@ __vue_render__$2._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$2 = undefined;
|
const __vue_inject_styles__$2 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$2 = "data-v-f42e3dba";
|
const __vue_scope_id__$2 = "data-v-fa728c70";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$2 = undefined;
|
const __vue_module_identifier__$2 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -14870,7 +14870,7 @@ function mixin() {
|
|||||||
function setup(options) {
|
function setup(options) {
|
||||||
return assign_1(setupDefaults_1, options);
|
return assign_1(setupDefaults_1, options);
|
||||||
}
|
}
|
||||||
XEUtils.VERSION = '3.5.25';
|
XEUtils.VERSION = '3.5.29';
|
||||||
XEUtils.mixin = mixin;
|
XEUtils.mixin = mixin;
|
||||||
XEUtils.setup = setup;
|
XEUtils.setup = setup;
|
||||||
var ctor = XEUtils;
|
var ctor = XEUtils;
|
||||||
@ -19828,12 +19828,38 @@ var __vue_render__$1 = function () {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c("div", { staticClass: "question-label" }, [
|
_c(
|
||||||
_vm._v(
|
"div",
|
||||||
"正确答案:" +
|
{ staticClass: "question-label" },
|
||||||
_vm._s(_vm.serialNumber[_vm.question.answer - 1])
|
[
|
||||||
),
|
_vm._v("正确答案:\n "),
|
||||||
]),
|
_vm.question.type == "SingleSelect"
|
||||||
|
? [
|
||||||
|
_c("span", [
|
||||||
|
_vm._v(
|
||||||
|
_vm._s(
|
||||||
|
_vm.serialNumber[
|
||||||
|
_vm.question.answer - 1
|
||||||
|
]
|
||||||
|
)
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]
|
||||||
|
: _vm._l(
|
||||||
|
_vm.question.answer.split(","),
|
||||||
|
function (item, index) {
|
||||||
|
return _c("span", [
|
||||||
|
_vm._v(
|
||||||
|
"\n " +
|
||||||
|
_vm._s(_vm.serialNumber[item - 1]) +
|
||||||
|
"\n "
|
||||||
|
),
|
||||||
|
])
|
||||||
|
}
|
||||||
|
),
|
||||||
|
],
|
||||||
|
2
|
||||||
|
),
|
||||||
_vm._v(" "),
|
_vm._v(" "),
|
||||||
_c("div", {
|
_c("div", {
|
||||||
staticStyle: {
|
staticStyle: {
|
||||||
@ -19868,7 +19894,7 @@ var __vue_render__$1 = function () {
|
|||||||
_c("bc-view-common", {
|
_c("bc-view-common", {
|
||||||
staticStyle: { flex: "1", "min-width": "0" },
|
staticStyle: { flex: "1", "min-width": "0" },
|
||||||
attrs: {
|
attrs: {
|
||||||
content: _vm.question.standardAnswer.content,
|
content: _vm.question.answer,
|
||||||
standardAnswer:
|
standardAnswer:
|
||||||
_vm.question.questionType == 10
|
_vm.question.questionType == 10
|
||||||
? _vm.question.standardAnswer
|
? _vm.question.standardAnswer
|
||||||
@ -19889,11 +19915,7 @@ var __vue_render__$1 = function () {
|
|||||||
])
|
])
|
||||||
: _vm._e(),
|
: _vm._e(),
|
||||||
_vm._v(" "),
|
_vm._v(" "),
|
||||||
_vm.isShowAnalysis &&
|
_vm.isShowAnalysis && _vm.question.feedback
|
||||||
_vm.question.analysis &&
|
|
||||||
(_vm.question.analysis.content ||
|
|
||||||
(_vm.question.analysis.fileInfo &&
|
|
||||||
_vm.question.analysis.fileInfo.fileUrl))
|
|
||||||
? _c(
|
? _c(
|
||||||
"div",
|
"div",
|
||||||
{
|
{
|
||||||
@ -19915,7 +19937,7 @@ var __vue_render__$1 = function () {
|
|||||||
{
|
{
|
||||||
staticClass: "stem",
|
staticClass: "stem",
|
||||||
class: {
|
class: {
|
||||||
"analysis-content": _vm.question.analysis.content,
|
"analysis-content": _vm.question.feedback,
|
||||||
},
|
},
|
||||||
staticStyle: { "min-width": "0", flex: "1" },
|
staticStyle: { "min-width": "0", flex: "1" },
|
||||||
},
|
},
|
||||||
@ -19923,7 +19945,7 @@ var __vue_render__$1 = function () {
|
|||||||
_c("bc-view-common", {
|
_c("bc-view-common", {
|
||||||
attrs: {
|
attrs: {
|
||||||
border: false,
|
border: false,
|
||||||
content: _vm.question.analysis.content,
|
content: _vm.question.feedback,
|
||||||
fileInfo: _vm.question.analysis.fileInfo,
|
fileInfo: _vm.question.analysis.fileInfo,
|
||||||
resourceBasisPath: _vm.resourceBasisPath,
|
resourceBasisPath: _vm.resourceBasisPath,
|
||||||
isSubmit: _vm.isSubmit,
|
isSubmit: _vm.isSubmit,
|
||||||
@ -19946,7 +19968,7 @@ __vue_render__$1._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$1 = undefined;
|
const __vue_inject_styles__$1 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$1 = "data-v-01a0a672";
|
const __vue_scope_id__$1 = "data-v-4a7a19c4";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$1 = undefined;
|
const __vue_module_identifier__$1 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -20156,7 +20178,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-ba265e2e";
|
const __vue_scope_id__ = "data-v-0f531fa4";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
.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-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}.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%}
|
.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}
|
||||||
@ -1,110 +1,111 @@
|
|||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=render.vue.map */
|
/*# sourceMappingURL=render.vue.map */
|
||||||
.preview-container-h5[data-v-52e2a929] {
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.preview-container-h5[data-v-25742cb8] {
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
}
|
}
|
||||||
.preview-container-pc[data-v-52e2a929] {
|
.preview-container-pc[data-v-25742cb8] {
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
}
|
}
|
||||||
.preview-container-pad[data-v-52e2a929] {
|
.preview-container-pad[data-v-25742cb8] {
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
}
|
}
|
||||||
.preview-container[data-v-52e2a929] .el-dialog__wrapper.preview-box-dialog {
|
.preview-container[data-v-25742cb8] .el-dialog__wrapper.preview-box-dialog {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
.preview-container[data-v-52e2a929] .el-dialog__wrapper.preview-box-dialog .el-dialog:not(.is-fullscreen) {
|
.preview-container[data-v-25742cb8] .el-dialog__wrapper.preview-box-dialog .el-dialog:not(.is-fullscreen) {
|
||||||
margin-top: 0 !important;
|
margin-top: 0 !important;
|
||||||
}
|
}
|
||||||
.preview-container[data-v-52e2a929] .el-dialog__wrapper.preview-box-dialog .el-dialog__header {
|
.preview-container[data-v-25742cb8] .el-dialog__wrapper.preview-box-dialog .el-dialog__header {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=PreviewLooseLeaf.vue.map */
|
/*# sourceMappingURL=PreviewLooseLeaf.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
//
|
//
|
||||||
@ -209,7 +209,7 @@ __vue_render__$2._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$2 = undefined;
|
const __vue_inject_styles__$2 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$2 = "data-v-c7e745c6";
|
const __vue_scope_id__$2 = "data-v-7da5c6fc";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$2 = undefined;
|
const __vue_module_identifier__$2 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -9443,7 +9443,7 @@ __vue_render__$1._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$1 = undefined;
|
const __vue_inject_styles__$1 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$1 = "data-v-52e2a929";
|
const __vue_scope_id__$1 = "data-v-25742cb8";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$1 = undefined;
|
const __vue_module_identifier__$1 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
.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}
|
.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}
|
||||||
@ -1,5 +1,5 @@
|
|||||||
.preview-item-file[data-v-95fbfab6]:hover,
|
.preview-item-file[data-v-21c71aa2]:hover,
|
||||||
.slip-over-cover[data-v-95fbfab6]:hover {
|
.slip-over-cover[data-v-21c71aa2]:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
var epub = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAoCAMAAAChHKjRAAAAAXNSR0IArs4c6QAAAjdQTFRFAAAAiXb/kG/0inD6inX6jW72jXL2eGLpe2fuinL2i3H3iHf6i3L5dmTvjHH3inP4inH2i3L2d2TuhW7vjHH5d2TqjnH5fWnyd2bskHb5jXX1jHH2i3H3i3H4i3H4d2Xsd2Xqi3H4cmLoi3L4inH3i3L3inL3i3L3jHL3hG3zi3L3jHL4jnT5i3L3i3L3jHH2bFPvbl/nb2DncF/ncVP1cWHncWHocWHpclP2cmLpc2Lpc2Lqc2Ppc2PqdGPpdGPqd1r1d1z0d2TreFv2eFz0eFz1eGDxeGbseVv1eVz1el31el32el71el72e133e1/2e2TxfGD1fGXxfWD3fWH2fmjxf2T2f2rwgGX3gGnygWX2gWb2gWb3gWrzgWzzgmb3gmf2gmzyg23zhGj3hGn2hGr2hGr3hG3zhWr3hWv2hWv3hWz3hW7zhW70hmz3h233h273iG34iG/3iW34iW74iW/3iXD3iXH2inD4inH3inP2i3D4i3H3i3H4i3L3i3L4i3P4jHL3jHL4jHP3jHP4jHT2jHT3jHrxjHryjXP4jXT3jXT5jXX3jXvyjnT5jnX4j3T5j3T6j3b3lYH2l4H4mIL4mYP4movynY/xpJL3pJfzpZL5pZjzqJX5q5n5r576saD6uaz3va/7zMT5zcP7z8X70Mb70sj708n708r71c381c761s382ND72db4393549z+4+H55+b66OL96+b+6+r67+v+8/L99PD/9vT+///9///+////0H5GmAAAADB0Uk5TAA0XMjI6OkZNVVpefX+HjJCRkpSeoausra2vs7W2t7i5v8TN1tbd3t/o6+7v8PH8u0jmrQAAAapJREFUOMtjYGBgYBZQ1sMAOpoKHAwIwF+HDfSlG9nzElADVGRuZScEVcNWiVORvY29KESRZDluRfb2VhJgRSp1OBQlgRTZW8uDFKnjUpRrZgtSZamER1Fji5MhSJG9qTgDgxoORXXd5e5mYGDMjltRXV9nTiIIxAkjKeoq8veFg5DK5rqWvgl9QDBRCklRacG8BfOhYMHs/Bq4hBySIu9Fe5DAXH+4hDRCUaXnqj3b12+EgE3rJidjVeS1ZM9ig4AgMAh1S+3HpWiFX2EJGBRXN9fhUrQyBFt0oylaahIWBQZ5bbgVrW2eMhUMyrLacCqCgx2TUnAr2gUFW1szcCpaHd7RCwLtkVlduB1uEREDAvGFXXWUBcFy5+x8MMgrwh2Yyxyy8sCgKDqtB6sijzV7dm7eAgHbNkxLwKaoznvhbqSkMjMYq6La2BlzZkHBnOmZ9VgVtVX4OLpCgUtgUzNWRXV1zS1w0Ig9CHADaZyZEwnIMGgQViTLoEpYkQiDWBUhNTXcDKwEDdJnZGAQJKCmgQtUQvHhVaPNCSkRWQSVdfWwAi1FHiagAgAPu3js6FbZbgAAAABJRU5ErkJggg==";
|
var epub = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAoCAMAAAChHKjRAAAAAXNSR0IArs4c6QAAAjdQTFRFAAAAiXb/kG/0inD6inX6jW72jXL2eGLpe2fuinL2i3H3iHf6i3L5dmTvjHH3inP4inH2i3L2d2TuhW7vjHH5d2TqjnH5fWnyd2bskHb5jXX1jHH2i3H3i3H4i3H4d2Xsd2Xqi3H4cmLoi3L4inH3i3L3inL3i3L3jHL3hG3zi3L3jHL4jnT5i3L3i3L3jHH2bFPvbl/nb2DncF/ncVP1cWHncWHocWHpclP2cmLpc2Lpc2Lqc2Ppc2PqdGPpdGPqd1r1d1z0d2TreFv2eFz0eFz1eGDxeGbseVv1eVz1el31el32el71el72e133e1/2e2TxfGD1fGXxfWD3fWH2fmjxf2T2f2rwgGX3gGnygWX2gWb2gWb3gWrzgWzzgmb3gmf2gmzyg23zhGj3hGn2hGr2hGr3hG3zhWr3hWv2hWv3hWz3hW7zhW70hmz3h233h273iG34iG/3iW34iW74iW/3iXD3iXH2inD4inH3inP2i3D4i3H3i3H4i3L3i3L4i3P4jHL3jHL4jHP3jHP4jHT2jHT3jHrxjHryjXP4jXT3jXT5jXX3jXvyjnT5jnX4j3T5j3T6j3b3lYH2l4H4mIL4mYP4movynY/xpJL3pJfzpZL5pZjzqJX5q5n5r576saD6uaz3va/7zMT5zcP7z8X70Mb70sj708n708r71c381c761s382ND72db4393549z+4+H55+b66OL96+b+6+r67+v+8/L99PD/9vT+///9///+////0H5GmAAAADB0Uk5TAA0XMjI6OkZNVVpefX+HjJCRkpSeoausra2vs7W2t7i5v8TN1tbd3t/o6+7v8PH8u0jmrQAAAapJREFUOMtjYGBgYBZQ1sMAOpoKHAwIwF+HDfSlG9nzElADVGRuZScEVcNWiVORvY29KESRZDluRfb2VhJgRSp1OBQlgRTZW8uDFKnjUpRrZgtSZamER1Fji5MhSJG9qTgDgxoORXXd5e5mYGDMjltRXV9nTiIIxAkjKeoq8veFg5DK5rqWvgl9QDBRCklRacG8BfOhYMHs/Bq4hBySIu9Fe5DAXH+4hDRCUaXnqj3b12+EgE3rJidjVeS1ZM9ig4AgMAh1S+3HpWiFX2EJGBRXN9fhUrQyBFt0oylaahIWBQZ5bbgVrW2eMhUMyrLacCqCgx2TUnAr2gUFW1szcCpaHd7RCwLtkVlduB1uEREDAvGFXXWUBcFy5+x8MMgrwh2Yyxyy8sCgKDqtB6sijzV7dm7eAgHbNkxLwKaoznvhbqSkMjMYq6La2BlzZkHBnOmZ9VgVtVX4OLpCgUtgUzNWRXV1zS1w0Ig9CHADaZyZEwnIMGgQViTLoEpYkQiDWBUhNTXcDKwEDdJnZGAQJKCmgQtUQvHhVaPNCSkRWQSVdfWwAi1FHiagAgAPu3js6FbZbgAAAABJRU5ErkJggg==";
|
||||||
@ -155,6 +155,11 @@ var script = {
|
|||||||
previewToPathClick(item) {
|
previewToPathClick(item) {
|
||||||
console.log(item);
|
console.log(item);
|
||||||
if (this.mode == 'preview') {
|
if (this.mode == 'preview') {
|
||||||
|
this.$EventBus.$emit('learningStatistics', {
|
||||||
|
type: 'doc',
|
||||||
|
info: null,
|
||||||
|
data: item
|
||||||
|
});
|
||||||
// if (item.fileFormat == 'pdf') {
|
// if (item.fileFormat == 'pdf') {
|
||||||
// // const pdfUrl = '/pdfjs/web/viewer.html?file=' + encodeURIComponent(item.uploadFileUrl)
|
// // const pdfUrl = '/pdfjs/web/viewer.html?file=' + encodeURIComponent(item.uploadFileUrl)
|
||||||
// this.$router.push({
|
// this.$router.push({
|
||||||
@ -1371,7 +1376,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-95fbfab6";
|
const __vue_scope_id__ = "data-v-21c71aa2";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
.preview-item-file[data-v-95fbfab6]:hover,.slip-over-cover[data-v-95fbfab6]:hover{cursor:pointer}
|
.preview-item-file[data-v-21c71aa2]:hover,.slip-over-cover[data-v-21c71aa2]:hover{cursor:pointer}
|
||||||
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.xml-single-ebook-group-h5[data-v-18c06d1c] {
|
.xml-single-ebook-group-h5[data-v-55908341] {
|
||||||
}
|
}
|
||||||
.xml-single-ebook-group-pc[data-v-18c06d1c] {
|
.xml-single-ebook-group-pc[data-v-55908341] {
|
||||||
}
|
}
|
||||||
.xml-single-ebook-group-pad[data-v-18c06d1c] {
|
.xml-single-ebook-group-pad[data-v-55908341] {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
var singleGroupMixin = {
|
var singleGroupMixin = {
|
||||||
@ -295,7 +295,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-18c06d1c";
|
const __vue_scope_id__ = "data-v-55908341";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.xml-single-ebook-group-h5[data-v-2c319df0] {
|
.xml-single-ebook-group-h5[data-v-b39a2926] {
|
||||||
}
|
}
|
||||||
.xml-single-ebook-group-pc[data-v-2c319df0] {
|
.xml-single-ebook-group-pc[data-v-b39a2926] {
|
||||||
}
|
}
|
||||||
.xml-single-ebook-group-pad[data-v-2c319df0] {
|
.xml-single-ebook-group-pad[data-v-b39a2926] {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
var singleGroupMixin = {
|
var singleGroupMixin = {
|
||||||
@ -309,7 +309,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-2c319df0";
|
const __vue_scope_id__ = "data-v-b39a2926";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.xml-single-ebook-group-h5[data-v-42eedd84] {
|
.xml-single-ebook-group-h5[data-v-0b9200e9] {
|
||||||
}
|
}
|
||||||
.xml-single-ebook-group-pc[data-v-42eedd84] {
|
.xml-single-ebook-group-pc[data-v-0b9200e9] {
|
||||||
}
|
}
|
||||||
.xml-single-ebook-group-pad[data-v-42eedd84] {
|
.xml-single-ebook-group-pad[data-v-0b9200e9] {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
var singleGroupMixin = {
|
var singleGroupMixin = {
|
||||||
@ -318,7 +318,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-42eedd84";
|
const __vue_scope_id__ = "data-v-0b9200e9";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
var singleGroupMixin = {
|
var singleGroupMixin = {
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.xml-single-music-group-h5[data-v-8d6cf2e2] {
|
.xml-single-music-group-h5[data-v-272f2034] {
|
||||||
}
|
}
|
||||||
.xml-single-music-group-pc[data-v-8d6cf2e2] {
|
.xml-single-music-group-pc[data-v-272f2034] {
|
||||||
}
|
}
|
||||||
.xml-single-music-group-pad[data-v-8d6cf2e2] {
|
.xml-single-music-group-pad[data-v-272f2034] {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
var singleGroupMixin = {
|
var singleGroupMixin = {
|
||||||
@ -297,7 +297,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-8d6cf2e2";
|
const __vue_scope_id__ = "data-v-272f2034";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.xml-single-question-group-h5[data-v-cf5b6886] {
|
.xml-single-question-group-h5[data-v-77922a38] {
|
||||||
}
|
}
|
||||||
.xml-single-question-group-pc[data-v-cf5b6886] {
|
.xml-single-question-group-pc[data-v-77922a38] {
|
||||||
}
|
}
|
||||||
.xml-single-question-group-pad[data-v-cf5b6886] {
|
.xml-single-question-group-pad[data-v-77922a38] {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
var singleGroupMixin = {
|
var singleGroupMixin = {
|
||||||
@ -334,7 +334,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-cf5b6886";
|
const __vue_scope_id__ = "data-v-77922a38";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.xml-single-question-group-h5[data-v-0c133c8a] {
|
.xml-single-question-group-h5[data-v-34ba0440] {
|
||||||
}
|
}
|
||||||
.xml-single-question-group-pc[data-v-0c133c8a] {
|
.xml-single-question-group-pc[data-v-34ba0440] {
|
||||||
}
|
}
|
||||||
.xml-single-question-group-pad[data-v-0c133c8a] {
|
.xml-single-question-group-pad[data-v-34ba0440] {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
var singleGroupMixin = {
|
var singleGroupMixin = {
|
||||||
@ -326,7 +326,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-0c133c8a";
|
const __vue_scope_id__ = "data-v-34ba0440";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.xml-single-question-group-h5[data-v-0c133c8a] {
|
.xml-single-question-group-h5[data-v-34ba0440] {
|
||||||
}
|
}
|
||||||
.xml-single-question-group-pc[data-v-0c133c8a] {
|
.xml-single-question-group-pc[data-v-34ba0440] {
|
||||||
}
|
}
|
||||||
.xml-single-question-group-pad[data-v-0c133c8a] {
|
.xml-single-question-group-pad[data-v-34ba0440] {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
var singleGroupMixin = {
|
var singleGroupMixin = {
|
||||||
@ -326,7 +326,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-0c133c8a";
|
const __vue_scope_id__ = "data-v-34ba0440";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.xml-single-text-group-h5[data-v-a8e0b970] {
|
.xml-single-text-group-h5[data-v-647015fa] {
|
||||||
}
|
}
|
||||||
.xml-single-text-group-pc[data-v-a8e0b970] {
|
.xml-single-text-group-pc[data-v-647015fa] {
|
||||||
}
|
}
|
||||||
.xml-single-text-group-pad[data-v-a8e0b970] {
|
.xml-single-text-group-pad[data-v-647015fa] {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
var singleGroupMixin = {
|
var singleGroupMixin = {
|
||||||
@ -349,7 +349,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-a8e0b970";
|
const __vue_scope_id__ = "data-v-647015fa";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
.xml-single-video-group-h5[data-v-6b3c0a0a] {
|
.xml-single-video-group-h5[data-v-3ae74720] {
|
||||||
}
|
}
|
||||||
.xml-single-video-group-pc[data-v-6b3c0a0a] {
|
.xml-single-video-group-pc[data-v-3ae74720] {
|
||||||
}
|
}
|
||||||
.xml-single-video-group-pad[data-v-6b3c0a0a] {
|
.xml-single-video-group-pad[data-v-3ae74720] {
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
var singleGroupMixin = {
|
var singleGroupMixin = {
|
||||||
@ -314,7 +314,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-6b3c0a0a";
|
const __vue_scope_id__ = "data-v-3ae74720";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1,78 +1,75 @@
|
|||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=first.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fourth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=second.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=seventh.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fifth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=third.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=ninth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=eighth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=sixth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=tenth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=eleventh.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greytheme2.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greytheme4.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greytheme3.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greytheme6.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greytheme5.vue.map */
|
/*# sourceMappingURL=Greytheme5.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greytheme1.vue.map */
|
/*# sourceMappingURL=fourth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
/*# sourceMappingURL=eighth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=first.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greytheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=second.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greytheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=sixth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=seventh.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=ninth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=fifth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=tenth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=third.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Bluetheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme3.vue.map */
|
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=eleventh.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greytheme6.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
/*# sourceMappingURL=Greytheme1.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Bluetheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Bluetheme1.vue.map */
|
/*# sourceMappingURL=Bluetheme1.vue.map */
|
||||||
@ -81,19 +78,22 @@
|
|||||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Bluetheme2.vue.map */
|
/*# sourceMappingURL=Greytheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Bluetheme3.vue.map */
|
/*# sourceMappingURL=Redtheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Bluetheme4.vue.map */
|
/*# sourceMappingURL=Bluetheme4.vue.map */
|
||||||
@ -168,11 +168,11 @@
|
|||||||
|
|
||||||
/*# sourceMappingURL=XmlText.vue.map */
|
/*# sourceMappingURL=XmlText.vue.map */
|
||||||
|
|
||||||
.xml-text-h5[data-v-4ae2eebc] {
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
}
|
}
|
||||||
.xml-text-pc[data-v-4ae2eebc] {
|
.xml-text-pc[data-v-a0b70a4a] {
|
||||||
}
|
}
|
||||||
.xml-text-h5[data-v-4ae2eebc] {
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -4,10 +4,10 @@
|
|||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=QuestionItem.vue.map */
|
/*# sourceMappingURL=QuestionItem.vue.map */
|
||||||
.content[data-v-bfc32194] {
|
.content[data-v-3d2dcb5b] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.content .stem-content[data-v-bfc32194] {
|
.content .stem-content[data-v-3d2dcb5b] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 5px 14px;
|
padding: 5px 14px;
|
||||||
@ -16,12 +16,12 @@
|
|||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.content .stem-content.no-border[data-v-bfc32194] {
|
.content .stem-content.no-border[data-v-3d2dcb5b] {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
border: none;
|
border: none;
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
.content .stem-content .placeholder[data-v-bfc32194] {
|
.content .stem-content .placeholder[data-v-3d2dcb5b] {
|
||||||
color: #c0c4cc;
|
color: #c0c4cc;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
@ -29,10 +29,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=common.vue.map */
|
/*# sourceMappingURL=common.vue.map */
|
||||||
.option-item + .option-item[data-v-12a7caa8] {
|
.option-item + .option-item[data-v-7fac7a23] {
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
}
|
}
|
||||||
.option-item[data-v-12a7caa8] {
|
.option-item[data-v-7fac7a23] {
|
||||||
display: flex;
|
display: flex;
|
||||||
background: #fbfbfb;
|
background: #fbfbfb;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
@ -41,42 +41,42 @@
|
|||||||
transition: all ease 0.3s;
|
transition: all ease 0.3s;
|
||||||
border: 1px solid #fbfbfb;
|
border: 1px solid #fbfbfb;
|
||||||
}
|
}
|
||||||
.option-item .questionSeq[data-v-12a7caa8] {
|
.option-item .questionSeq[data-v-7fac7a23] {
|
||||||
padding: 8px 0;
|
padding: 8px 0;
|
||||||
}
|
}
|
||||||
.option-item.isActive[data-v-12a7caa8] {
|
.option-item.isActive[data-v-7fac7a23] {
|
||||||
border-color: #2e9adb;
|
border-color: #2e9adb;
|
||||||
}
|
}
|
||||||
.option-item.isTrue[data-v-12a7caa8] {
|
.option-item.isTrue[data-v-7fac7a23] {
|
||||||
border: 1px solid #70b603;
|
border: 1px solid #70b603;
|
||||||
}
|
}
|
||||||
.option-item.isTrue[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner {
|
.option-item.isTrue[data-v-7fac7a23] .el-radio__input.is-checked .el-radio__inner {
|
||||||
border-color: #70b603;
|
border-color: #70b603;
|
||||||
background: #70b603;
|
background: #70b603;
|
||||||
}
|
}
|
||||||
.option-item.isFalse[data-v-12a7caa8] {
|
.option-item.isFalse[data-v-7fac7a23] {
|
||||||
border: 1px solid #d9001b;
|
border: 1px solid #d9001b;
|
||||||
}
|
}
|
||||||
.option-item.isFalse[data-v-12a7caa8] .el-radio__input.is-checked .el-radio__inner {
|
.option-item.isFalse[data-v-7fac7a23] .el-radio__input.is-checked .el-radio__inner {
|
||||||
border-color: #d9001b;
|
border-color: #d9001b;
|
||||||
background: #d9001b;
|
background: #d9001b;
|
||||||
}
|
}
|
||||||
.option-item[data-v-12a7caa8]:hover {
|
.option-item[data-v-7fac7a23]:hover {
|
||||||
background: #ddd;
|
background: #ddd;
|
||||||
}
|
}
|
||||||
.option-item[data-v-12a7caa8] .content {
|
.option-item[data-v-7fac7a23] .content {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.option-item[data-v-12a7caa8] .stem-content.no-border {
|
.option-item[data-v-7fac7a23] .stem-content.no-border {
|
||||||
padding: 8px 14px !important;
|
padding: 8px 14px !important;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=radio.vue.map */
|
/*# sourceMappingURL=radio.vue.map */
|
||||||
.option-item + .option-item[data-v-f42e3dba] {
|
.option-item + .option-item[data-v-fa728c70] {
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
}
|
}
|
||||||
.option-item[data-v-f42e3dba] {
|
.option-item[data-v-fa728c70] {
|
||||||
display: flex;
|
display: flex;
|
||||||
background: #fbfbfb;
|
background: #fbfbfb;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
@ -85,87 +85,87 @@
|
|||||||
transition: all ease 0.3s;
|
transition: all ease 0.3s;
|
||||||
border: 1px solid #fbfbfb;
|
border: 1px solid #fbfbfb;
|
||||||
}
|
}
|
||||||
.option-item.isActive[data-v-f42e3dba] {
|
.option-item.isActive[data-v-fa728c70] {
|
||||||
border-color: #2e9adb;
|
border-color: #2e9adb;
|
||||||
}
|
}
|
||||||
.option-item .questionSeq[data-v-f42e3dba] {
|
.option-item .questionSeq[data-v-fa728c70] {
|
||||||
padding: 8px 0;
|
padding: 8px 0;
|
||||||
}
|
}
|
||||||
.option-item.isTrue[data-v-f42e3dba] {
|
.option-item.isTrue[data-v-fa728c70] {
|
||||||
border: 1px solid #70b603;
|
border: 1px solid #70b603;
|
||||||
}
|
}
|
||||||
.option-item.isTrue[data-v-f42e3dba] .el-checkbox__input.is-checked .el-checkbox__inner {
|
.option-item.isTrue[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||||
border-color: #70b603;
|
border-color: #70b603;
|
||||||
background: #70b603;
|
background: #70b603;
|
||||||
}
|
}
|
||||||
.option-item.isFalse[data-v-f42e3dba] {
|
.option-item.isFalse[data-v-fa728c70] {
|
||||||
border: 1px solid #d9001b;
|
border: 1px solid #d9001b;
|
||||||
}
|
}
|
||||||
.option-item.isFalse[data-v-f42e3dba] .el-checkbox__input.is-checked .el-checkbox__inner {
|
.option-item.isFalse[data-v-fa728c70] .el-checkbox__input.is-checked .el-checkbox__inner {
|
||||||
border-color: #d9001b;
|
border-color: #d9001b;
|
||||||
background: #d9001b;
|
background: #d9001b;
|
||||||
}
|
}
|
||||||
.option-item[data-v-f42e3dba]:hover {
|
.option-item[data-v-fa728c70]:hover {
|
||||||
background: #ddd;
|
background: #ddd;
|
||||||
}
|
}
|
||||||
.option-item[data-v-f42e3dba] .content {
|
.option-item[data-v-fa728c70] .content {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.option-item[data-v-f42e3dba] .stem-content.no-border {
|
.option-item[data-v-fa728c70] .stem-content.no-border {
|
||||||
padding: 8px 14px !important;
|
padding: 8px 14px !important;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=checkbox.vue.map */
|
/*# sourceMappingURL=checkbox.vue.map */
|
||||||
.image-file[data-v-9dadad14] {
|
.image-file[data-v-506f1aca] {
|
||||||
width: 218px;
|
width: 218px;
|
||||||
object-fit: scale-down;
|
object-fit: scale-down;
|
||||||
}
|
}
|
||||||
.video-file[data-v-9dadad14] {
|
.video-file[data-v-506f1aca] {
|
||||||
width: 408px;
|
width: 408px;
|
||||||
}
|
}
|
||||||
.file-render[data-v-9dadad14] {
|
.file-render[data-v-506f1aca] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.file-info[data-v-9dadad14] {
|
.file-info[data-v-506f1aca] {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
.file-info.videoHandler[data-v-9dadad14] {
|
.file-info.videoHandler[data-v-506f1aca] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
.file-info.videoHandler .fileName[data-v-9dadad14] {
|
.file-info.videoHandler .fileName[data-v-506f1aca] {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
color: #333333;
|
color: #333333;
|
||||||
margin-bottom: 19px;
|
margin-bottom: 19px;
|
||||||
}
|
}
|
||||||
.file-info.videoHandler .fileInfo[data-v-9dadad14] {
|
.file-info.videoHandler .fileInfo[data-v-506f1aca] {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #666666;
|
color: #666666;
|
||||||
margin-bottom: 19px;
|
margin-bottom: 19px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=index.vue.map */
|
/*# sourceMappingURL=index.vue.map */
|
||||||
[data-v-13303366] .el-dialog__header {
|
[data-v-7628e470] .el-dialog__header {
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
.video-content[data-v-13303366] {
|
.video-content[data-v-7628e470] {
|
||||||
width: 180px;
|
width: 180px;
|
||||||
height: 135px;
|
height: 135px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
.video-content .play[data-v-13303366] {
|
.video-content .play[data-v-7628e470] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transform: translateX(-50%) translateY(-50%);
|
transform: translateX(-50%) translateY(-50%);
|
||||||
}
|
}
|
||||||
.video-mask[data-v-13303366] {
|
.video-mask[data-v-7628e470] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
top: 0;
|
top: 0;
|
||||||
@ -173,73 +173,73 @@
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
background: rgba(0, 0, 0, 0.5);
|
background: rgba(0, 0, 0, 0.5);
|
||||||
}
|
}
|
||||||
.video-mask img[data-v-13303366] {
|
.video-mask img[data-v-7628e470] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
transform: translate(-50% -50%);
|
transform: translate(-50% -50%);
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
.video-player[data-v-13303366] {
|
.video-player[data-v-7628e470] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=video-play.vue.map */
|
/*# sourceMappingURL=video-play.vue.map */
|
||||||
.audio .audio-icon[data-v-525a170e] {
|
.audio .audio-icon[data-v-25355b9e] {
|
||||||
width: 36px;
|
width: 36px;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
}
|
}
|
||||||
.audio .audio-icon img[data-v-525a170e] {
|
.audio .audio-icon img[data-v-25355b9e] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
.audio .audio-controls[data-v-525a170e] {
|
.audio .audio-controls[data-v-25355b9e] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 200px;
|
max-width: 200px;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 36px;
|
height: 36px;
|
||||||
}
|
}
|
||||||
.audio .audio-controls .audio-controls--progress[data-v-525a170e], .audio .audio-controls .audio-controls--handler[data-v-525a170e] {
|
.audio .audio-controls .audio-controls--progress[data-v-25355b9e], .audio .audio-controls .audio-controls--handler[data-v-25355b9e] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.audio .audio-controls .audio-controls--handler[data-v-525a170e] {
|
.audio .audio-controls .audio-controls--handler[data-v-25355b9e] {
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
.audio .audio-controls .audio-controls--handler .play[data-v-525a170e] {
|
.audio .audio-controls .audio-controls--handler .play[data-v-25355b9e] {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
}
|
}
|
||||||
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-525a170e] {
|
.audio .audio-controls .audio-controls--handler .play .play-handler[data-v-25355b9e] {
|
||||||
width: 22px;
|
width: 22px;
|
||||||
height: 22px;
|
height: 22px;
|
||||||
display: block;
|
display: block;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.audio .audio-controls .audio-controls--handler .current-time[data-v-525a170e], .audio .audio-controls .audio-controls--handler .total-time[data-v-525a170e] {
|
.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;
|
font-size: 12px;
|
||||||
color: #333;
|
color: #333;
|
||||||
}
|
}
|
||||||
.play-handler.mobile[data-v-525a170e] {
|
.play-handler.mobile[data-v-25355b9e] {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
}
|
}
|
||||||
.audio-component[data-v-525a170e] {
|
.audio-component[data-v-25355b9e] {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
[data-v-525a170e] .el-slider__runway {
|
[data-v-25355b9e] .el-slider__runway {
|
||||||
margin: 0 0 4px 0;
|
margin: 0 0 4px 0;
|
||||||
background: #e3e3e3;
|
background: #e3e3e3;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
}
|
}
|
||||||
[data-v-525a170e] .el-slider__bar {
|
[data-v-25355b9e] .el-slider__bar {
|
||||||
height: 4px;
|
height: 4px;
|
||||||
}
|
}
|
||||||
[data-v-525a170e] .el-slider__button {
|
[data-v-25355b9e] .el-slider__button {
|
||||||
width: 10px;
|
width: 10px;
|
||||||
height: 10px;
|
height: 10px;
|
||||||
}
|
}
|
||||||
[data-v-525a170e] .el-slider__button-wrapper {
|
[data-v-25355b9e] .el-slider__button-wrapper {
|
||||||
top: -15px;
|
top: -15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
const radioType = ['SingleSelect'];
|
const radioType = ['SingleSelect'];
|
||||||
@ -9,7 +9,7 @@ const showOptionsType = ['1', '2', '4', '5'];
|
|||||||
const showJudgeAnswerType = ['Judgement'];
|
const showJudgeAnswerType = ['Judgement'];
|
||||||
const showSortType = ['7'];
|
const showSortType = ['7'];
|
||||||
const showRichTextAnswerType = ['Filling', 'AskAnswer'];
|
const showRichTextAnswerType = ['Filling', 'AskAnswer'];
|
||||||
const isclozeType = ['Filling'];
|
const isclozeType = [''];
|
||||||
const isRadio = type => {
|
const isRadio = type => {
|
||||||
return radioType.includes(type);
|
return radioType.includes(type);
|
||||||
};
|
};
|
||||||
@ -383,7 +383,7 @@ __vue_render__$7._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$7 = undefined;
|
const __vue_inject_styles__$7 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$7 = "data-v-525a170e";
|
const __vue_scope_id__$7 = "data-v-25355b9e";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$7 = undefined;
|
const __vue_module_identifier__$7 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -13573,7 +13573,7 @@ __vue_render__$6._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$6 = undefined;
|
const __vue_inject_styles__$6 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$6 = "data-v-13303366";
|
const __vue_scope_id__$6 = "data-v-7628e470";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$6 = undefined;
|
const __vue_module_identifier__$6 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -13786,7 +13786,7 @@ __vue_render__$5._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$5 = undefined;
|
const __vue_inject_styles__$5 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$5 = "data-v-9dadad14";
|
const __vue_scope_id__$5 = "data-v-506f1aca";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$5 = undefined;
|
const __vue_module_identifier__$5 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -13978,7 +13978,7 @@ __vue_render__$4._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$4 = undefined;
|
const __vue_inject_styles__$4 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$4 = "data-v-bfc32194";
|
const __vue_scope_id__$4 = "data-v-3d2dcb5b";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$4 = undefined;
|
const __vue_module_identifier__$4 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -14289,7 +14289,7 @@ __vue_render__$3._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$3 = undefined;
|
const __vue_inject_styles__$3 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$3 = "data-v-12a7caa8";
|
const __vue_scope_id__$3 = "data-v-7fac7a23";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$3 = undefined;
|
const __vue_module_identifier__$3 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -14594,7 +14594,7 @@ __vue_render__$2._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$2 = undefined;
|
const __vue_inject_styles__$2 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$2 = "data-v-f42e3dba";
|
const __vue_scope_id__$2 = "data-v-fa728c70";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$2 = undefined;
|
const __vue_module_identifier__$2 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -14870,7 +14870,7 @@ function mixin() {
|
|||||||
function setup(options) {
|
function setup(options) {
|
||||||
return assign_1(setupDefaults_1, options);
|
return assign_1(setupDefaults_1, options);
|
||||||
}
|
}
|
||||||
XEUtils.VERSION = '3.5.25';
|
XEUtils.VERSION = '3.5.29';
|
||||||
XEUtils.mixin = mixin;
|
XEUtils.mixin = mixin;
|
||||||
XEUtils.setup = setup;
|
XEUtils.setup = setup;
|
||||||
var ctor = XEUtils;
|
var ctor = XEUtils;
|
||||||
@ -19828,12 +19828,38 @@ var __vue_render__$1 = function () {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
[
|
[
|
||||||
_c("div", { staticClass: "question-label" }, [
|
_c(
|
||||||
_vm._v(
|
"div",
|
||||||
"正确答案:" +
|
{ staticClass: "question-label" },
|
||||||
_vm._s(_vm.serialNumber[_vm.question.answer - 1])
|
[
|
||||||
),
|
_vm._v("正确答案:\n "),
|
||||||
]),
|
_vm.question.type == "SingleSelect"
|
||||||
|
? [
|
||||||
|
_c("span", [
|
||||||
|
_vm._v(
|
||||||
|
_vm._s(
|
||||||
|
_vm.serialNumber[
|
||||||
|
_vm.question.answer - 1
|
||||||
|
]
|
||||||
|
)
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
]
|
||||||
|
: _vm._l(
|
||||||
|
_vm.question.answer.split(","),
|
||||||
|
function (item, index) {
|
||||||
|
return _c("span", [
|
||||||
|
_vm._v(
|
||||||
|
"\n " +
|
||||||
|
_vm._s(_vm.serialNumber[item - 1]) +
|
||||||
|
"\n "
|
||||||
|
),
|
||||||
|
])
|
||||||
|
}
|
||||||
|
),
|
||||||
|
],
|
||||||
|
2
|
||||||
|
),
|
||||||
_vm._v(" "),
|
_vm._v(" "),
|
||||||
_c("div", {
|
_c("div", {
|
||||||
staticStyle: {
|
staticStyle: {
|
||||||
@ -19868,7 +19894,7 @@ var __vue_render__$1 = function () {
|
|||||||
_c("bc-view-common", {
|
_c("bc-view-common", {
|
||||||
staticStyle: { flex: "1", "min-width": "0" },
|
staticStyle: { flex: "1", "min-width": "0" },
|
||||||
attrs: {
|
attrs: {
|
||||||
content: _vm.question.standardAnswer.content,
|
content: _vm.question.answer,
|
||||||
standardAnswer:
|
standardAnswer:
|
||||||
_vm.question.questionType == 10
|
_vm.question.questionType == 10
|
||||||
? _vm.question.standardAnswer
|
? _vm.question.standardAnswer
|
||||||
@ -19889,11 +19915,7 @@ var __vue_render__$1 = function () {
|
|||||||
])
|
])
|
||||||
: _vm._e(),
|
: _vm._e(),
|
||||||
_vm._v(" "),
|
_vm._v(" "),
|
||||||
_vm.isShowAnalysis &&
|
_vm.isShowAnalysis && _vm.question.feedback
|
||||||
_vm.question.analysis &&
|
|
||||||
(_vm.question.analysis.content ||
|
|
||||||
(_vm.question.analysis.fileInfo &&
|
|
||||||
_vm.question.analysis.fileInfo.fileUrl))
|
|
||||||
? _c(
|
? _c(
|
||||||
"div",
|
"div",
|
||||||
{
|
{
|
||||||
@ -19915,7 +19937,7 @@ var __vue_render__$1 = function () {
|
|||||||
{
|
{
|
||||||
staticClass: "stem",
|
staticClass: "stem",
|
||||||
class: {
|
class: {
|
||||||
"analysis-content": _vm.question.analysis.content,
|
"analysis-content": _vm.question.feedback,
|
||||||
},
|
},
|
||||||
staticStyle: { "min-width": "0", flex: "1" },
|
staticStyle: { "min-width": "0", flex: "1" },
|
||||||
},
|
},
|
||||||
@ -19923,7 +19945,7 @@ var __vue_render__$1 = function () {
|
|||||||
_c("bc-view-common", {
|
_c("bc-view-common", {
|
||||||
attrs: {
|
attrs: {
|
||||||
border: false,
|
border: false,
|
||||||
content: _vm.question.analysis.content,
|
content: _vm.question.feedback,
|
||||||
fileInfo: _vm.question.analysis.fileInfo,
|
fileInfo: _vm.question.analysis.fileInfo,
|
||||||
resourceBasisPath: _vm.resourceBasisPath,
|
resourceBasisPath: _vm.resourceBasisPath,
|
||||||
isSubmit: _vm.isSubmit,
|
isSubmit: _vm.isSubmit,
|
||||||
@ -19946,7 +19968,7 @@ __vue_render__$1._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$1 = undefined;
|
const __vue_inject_styles__$1 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$1 = "data-v-01a0a672";
|
const __vue_scope_id__$1 = "data-v-4a7a19c4";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$1 = undefined;
|
const __vue_module_identifier__$1 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -20228,7 +20250,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-1d04dda8";
|
const __vue_scope_id__ = "data-v-5c4b43e7";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
.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-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}.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}
|
.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-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}.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}
|
||||||
@ -1,9 +1,12 @@
|
|||||||
|
|
||||||
.xml-text-h5[data-v-4ae2eebc] {
|
|
||||||
|
/*# sourceMappingURL=XmlTextDialog.vue.map */
|
||||||
|
|
||||||
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
}
|
}
|
||||||
.xml-text-pc[data-v-4ae2eebc] {
|
.xml-text-pc[data-v-a0b70a4a] {
|
||||||
}
|
}
|
||||||
.xml-text-h5[data-v-4ae2eebc] {
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
}
|
}
|
||||||
|
|
||||||
.xml-text-h5 .inline-audio-wrap,
|
.xml-text-h5 .inline-audio-wrap,
|
||||||
@ -78,9 +81,6 @@
|
|||||||
/*# sourceMappingURL=XmlText.vue.map */
|
/*# sourceMappingURL=XmlText.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=XmlTextDialog.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
.xml-single-html-group-render{position:relative}.xml-single-html-group-render .xml-html-mask{position:absolute;width:calc(100% - 30px)!important;height:calc(100% - 30px)!important;left:0;right:0;bottom:0;top:0;opacity:.1;filter:alpha(opacity=5);z-index:100}.xml-single-html-group-render .xml-copy-url-box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;background-color:#fff;cursor:pointer;font-family:PingFang SC,PingFang SC;font-weight:400;font-size:16px;color:#2d2d2d}.xml-single-html-group-render .xml-copy-url-box .content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;padding:14px;background:#eef3ff;border-radius:12px}.xml-single-html-group-render .xml-copy-url-box .content img{width:120px}.xml-single-html-group-render .xml-copy-url-box .content span{padding:14px 0;font-family:PingFang SC,PingFang SC;font-weight:400;font-size:11px;color:#999;line-height:20px}.xml-single-html-group-render .xml-copy-url-box .content .btn{font-family:PingFang SC,PingFang SC;font-weight:400;font-size:12px;color:#3e8ced}.xml-single-html-group-render .web-file-box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;padding:14px;-webkit-box-sizing:border-box;box-sizing:border-box;background:#fff;border-radius:15px;border:1px solid #418eed}.xml-single-html-group-render .web-file-box .file-cover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:70px;height:70px}.xml-single-html-group-render .web-file-box .file-cover img{width:70px;height:70px}.xml-single-html-group-render .web-file-box .file-title{font-size:18px;font-weight:400;color:#333;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;margin-left:16px;width:calc(100% - 100px)!important}.xml-single-html-group-render .xml-iframe-mask-box::after{content:"";position:absolute;top:0;left:0;z-index:999;display:block;width:100%;height:100%;pointer-events:var(--xml-iframe-pointer-events)}
|
.xml-single-html-group-render{position:relative}.xml-single-html-group-render .xml-html-mask{position:absolute;width:calc(100% - 30px)!important;height:calc(100% - 30px)!important;left:0;right:0;bottom:0;top:0;opacity:.1;filter:alpha(opacity=5);z-index:100}.xml-single-html-group-render .xml-copy-url-box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;background-color:#fff;cursor:pointer;font-family:PingFang SC,PingFang SC;font-weight:400;font-size:16px;color:#2d2d2d}.xml-single-html-group-render .xml-copy-url-box .content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;padding:14px;background:#eef3ff;border-radius:12px}.xml-single-html-group-render .xml-copy-url-box .content img{width:120px}.xml-single-html-group-render .xml-copy-url-box .content span{padding:14px 0;font-family:PingFang SC,PingFang SC;font-weight:400;font-size:11px;color:#999;line-height:20px}.xml-single-html-group-render .xml-copy-url-box .content .btn{font-family:PingFang SC,PingFang SC;font-weight:400;font-size:12px;color:#3e8ced}.xml-single-html-group-render .web-file-box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;padding:14px;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:15px;border:1px solid #418eed;background:-webkit-gradient(linear,left top,right top,from(rgba(161,196,253,0)),to(rgba(194,233,251,.6)));background:linear-gradient(90deg,rgba(161,196,253,0) 0,rgba(194,233,251,.6) 100%);cursor:pointer}.xml-single-html-group-render .web-file-box .file-cover{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:70px;height:70px}.xml-single-html-group-render .web-file-box .file-cover img{width:70px;height:70px}.xml-single-html-group-render .web-file-box .file-title{font-size:18px;font-weight:400;color:#333;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;margin-left:16px;width:calc(100% - 100px)!important;height:70px;line-height:70px;background-image:url(../../static/images/leaflet/resourceCenter/html_bg_01.png);background-size:90px 90px;background-repeat:no-repeat;background-position:100% -28px}.xml-single-html-group-render .xml-iframe-mask-box::after{content:"";position:absolute;top:0;left:0;z-index:999;display:block;width:100%;height:100%;pointer-events:var(--xml-iframe-pointer-events)}
|
||||||
@ -1,105 +1,99 @@
|
|||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=first.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fifth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=rectangle.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=semicircle.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=hexagon.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=thirteenth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=sixth.vue.map */
|
/*# sourceMappingURL=sixth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=second.vue.map */
|
/*# sourceMappingURL=first.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=rotundity.vue.map */
|
/*# sourceMappingURL=hexagon.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=triangle.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=third.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=square.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=twelfth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fifteen.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fourteen.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=seventeen.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=eighteen2.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=eighteen.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=sixteen.vue.map */
|
/*# sourceMappingURL=sixteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=fifth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=rotundity.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=square.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=second.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=nineteen.vue.map */
|
/*# sourceMappingURL=nineteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
/*# sourceMappingURL=third.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
/*# sourceMappingURL=thirteenth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
/*# sourceMappingURL=rectangle.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme6.vue.map */
|
/*# sourceMappingURL=triangle.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=semicircle.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=fifteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme5.vue.map */
|
/*# sourceMappingURL=Greentheme5.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme6.vue.map */
|
/*# sourceMappingURL=twelfth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
/*# sourceMappingURL=Yellowtheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Twentytwo.vue.map */
|
/*# sourceMappingURL=eighteen2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=SanQintheme2.vue.map */
|
/*# sourceMappingURL=Yellowtheme6.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=eighteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=fourteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme6.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Twentyone.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=seventeen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=SanQintheme1.vue.map */
|
/*# sourceMappingURL=SanQintheme1.vue.map */
|
||||||
@ -108,24 +102,28 @@
|
|||||||
/*# sourceMappingURL=twenty.vue.map */
|
/*# sourceMappingURL=twenty.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=SanQintheme3.vue.map */
|
/*# sourceMappingURL=Twentyfour.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Twentythree.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Knowledge.vue.map */
|
/*# sourceMappingURL=Knowledge.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Twentyone.vue.map */
|
/*# sourceMappingURL=SanQintheme3.vue.map */
|
||||||
|
|
||||||
.xml-text-h5[data-v-4ae2eebc] {
|
|
||||||
}
|
|
||||||
.xml-text-pc[data-v-4ae2eebc] {
|
|
||||||
}
|
|
||||||
.xml-text-h5[data-v-4ae2eebc] {
|
|
||||||
}
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Twentyfive.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Twentytwo.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Twentythree.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=SanQintheme2.vue.map */
|
||||||
.xml-text-h5 .inline-audio-wrap,
|
.xml-text-h5 .inline-audio-wrap,
|
||||||
.xml-text-h5 .inline-link-wrap {
|
.xml-text-h5 .inline-link-wrap {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -197,6 +195,14 @@
|
|||||||
|
|
||||||
/*# sourceMappingURL=XmlText.vue.map */
|
/*# sourceMappingURL=XmlText.vue.map */
|
||||||
|
|
||||||
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
|
}
|
||||||
|
.xml-text-pc[data-v-a0b70a4a] {
|
||||||
|
}
|
||||||
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=XmlTextDialog.vue.map */
|
/*# sourceMappingURL=XmlTextDialog.vue.map */
|
||||||
|
|
||||||
|
|||||||
@ -1,45 +1,3 @@
|
|||||||
.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;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*# sourceMappingURL=third.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=sixth.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=first.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=semicircle.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme2.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fifteen.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme4.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=rectangle.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme1.vue.map */
|
/*# sourceMappingURL=Greentheme1.vue.map */
|
||||||
@ -48,126 +6,176 @@
|
|||||||
/*# sourceMappingURL=thirteenth.vue.map */
|
/*# sourceMappingURL=thirteenth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=twelfth.vue.map */
|
/*# sourceMappingURL=first.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Yellowtheme6.vue.map */
|
/*# sourceMappingURL=sixth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=hexagon.vue.map */
|
/*# sourceMappingURL=Yellowtheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme3.vue.map */
|
/*# sourceMappingURL=semicircle.vue.map */
|
||||||
|
.title-text[data-v-616d10ee] {
|
||||||
|
background-color: var(--background-color) !important;
|
||||||
|
}
|
||||||
|
.title-left[data-v-616d10ee] {
|
||||||
|
border-color: var(--background-color) !important;
|
||||||
|
color: var(--background-color) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=third.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Greentheme6.vue.map */
|
/*# sourceMappingURL=Yellowtheme1.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=sixteen.vue.map */
|
/*# sourceMappingURL=sixteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fourteen.vue.map */
|
/*# sourceMappingURL=seventeen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=triangle.vue.map */
|
/*# sourceMappingURL=Yellowtheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=nineteen.vue.map */
|
/*# sourceMappingURL=Greentheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Knowledge.vue.map */
|
/*# sourceMappingURL=Knowledge.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme1.vue.map */
|
/*# sourceMappingURL=hexagon.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=fifth.vue.map */
|
/*# sourceMappingURL=nineteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=rectangle.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=twelfth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Greentheme6.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Yellowtheme5.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Yellowtheme6.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtyone.vue.map */
|
/*# sourceMappingURL=Thirtyone.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme4.vue.map */
|
/*# sourceMappingURL=fifteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=seventeen.vue.map */
|
/*# sourceMappingURL=Greentheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme2.vue.map */
|
/*# sourceMappingURL=triangle.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtyfour.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Redtheme3.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtytwo.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtysix.vue.map */
|
/*# sourceMappingURL=Thirtysix.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtyseven.vue.map */
|
/*# sourceMappingURL=fourteen.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtyfive.vue.map */
|
/*# sourceMappingURL=Redtheme2.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=titleLogging.vue.map */
|
/*# sourceMappingURL=Redtheme4.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtythree.vue.map */
|
/*# sourceMappingURL=fifth.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtynine.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=BuleRectangle.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Thirtyeight.vue.map */
|
/*# sourceMappingURL=Thirtyeight.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=titleCrane.vue.map */
|
/*# sourceMappingURL=Redtheme1.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Thirtythree.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=BuleRectangleTwo.vue.map */
|
/*# sourceMappingURL=BuleRectangleTwo.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Thirtyfour.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=BuleRectangle.vue.map */
|
||||||
|
.title-bgimg[data-v-025e9706] {
|
||||||
|
background-image: url(../style/title-text-bgimg.png);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Sevenpageone.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=titleQuestion.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Thirtytwo.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Sevenpagetwo.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=titleCrane.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=titleText.vue.map */
|
/*# sourceMappingURL=titleText.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Redtheme3.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Thirtyseven.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Thirtynine.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Sevenpagefive.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Sevenpagethree.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=titleLogging.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Thirtyfive.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Forty.vue.map */
|
||||||
|
|
||||||
|
|
||||||
|
/*# sourceMappingURL=Sevenpagefour.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=titleLight.vue.map */
|
/*# sourceMappingURL=titleLight.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=titleTearcher.vue.map */
|
/*# sourceMappingURL=titleTearcher.vue.map */
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Sevenpagetwo.vue.map */
|
/*# sourceMappingURL=Fortyone.vue.map */
|
||||||
|
|
||||||
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
/*# sourceMappingURL=titleQuestion.vue.map */
|
}
|
||||||
|
.xml-text-pc[data-v-a0b70a4a] {
|
||||||
|
}
|
||||||
/*# sourceMappingURL=Sevenpagefour.vue.map */
|
.xml-text-h5[data-v-a0b70a4a] {
|
||||||
.title-bgimg[data-v-0d1db218] {
|
|
||||||
background-image: url(../style/title-text-bgimg.png);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*# sourceMappingURL=Sevenpageone.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Sevenpagethree.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Forty.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Sevenpagefive.vue.map */
|
|
||||||
|
|
||||||
|
|
||||||
/*# sourceMappingURL=Fortyone.vue.map */
|
|
||||||
.xml-text-h5 .inline-audio-wrap,
|
.xml-text-h5 .inline-audio-wrap,
|
||||||
.xml-text-h5 .inline-link-wrap {
|
.xml-text-h5 .inline-link-wrap {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@ -239,14 +247,6 @@
|
|||||||
|
|
||||||
/*# sourceMappingURL=XmlText.vue.map */
|
/*# 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 */
|
/*# sourceMappingURL=XmlTextDialog.vue.map */
|
||||||
|
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
.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}
|
.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}
|
||||||
@ -1,12 +1,12 @@
|
|||||||
|
|
||||||
.xml-video-container-h5[data-v-0976e3e4] {
|
.xml-video-container-h5[data-v-099f61c2] {
|
||||||
}
|
}
|
||||||
.xml-video-container-pc[data-v-0976e3e4] {
|
.xml-video-container-pc[data-v-099f61c2] {
|
||||||
}
|
}
|
||||||
.xml-video-container-pad[data-v-0976e3e4] {
|
.xml-video-container-pad[data-v-099f61c2] {
|
||||||
}
|
}
|
||||||
|
|
||||||
.xml-video-container-pdf[data-v-8036e7f4] {
|
.xml-video-container-pdf[data-v-3c5e97c1] {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@ -16,13 +16,13 @@
|
|||||||
padding-bottom: 56.25%;
|
padding-bottom: 56.25%;
|
||||||
background: #000;
|
background: #000;
|
||||||
}
|
}
|
||||||
.xml-video-container-pdf .cover[data-v-8036e7f4] {
|
.xml-video-container-pdf .cover[data-v-3c5e97c1] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
}
|
}
|
||||||
.xml-video-container-pdf .play[data-v-8036e7f4] {
|
.xml-video-container-pdf .play[data-v-3c5e97c1] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 45%;
|
top: 45%;
|
||||||
left: 45%;
|
left: 45%;
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* XmlDigitalTeaching v0.0.1
|
* XmlDigitalTeaching v0.0.1
|
||||||
* Copyright ©Tue Jul 23 2024 08:52:25 GMT+0800 (中国标准时间) smile
|
* Copyright ©Tue Sep 03 2024 17:07:04 GMT+0800 (中国标准时间) smile
|
||||||
* Released under the ISC License.
|
* Released under the ISC License.
|
||||||
*/
|
*/
|
||||||
//
|
//
|
||||||
@ -14728,7 +14728,7 @@ __vue_render__$1._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__$1 = undefined;
|
const __vue_inject_styles__$1 = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__$1 = "data-v-0976e3e4";
|
const __vue_scope_id__$1 = "data-v-099f61c2";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__$1 = undefined;
|
const __vue_module_identifier__$1 = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
@ -14939,7 +14939,7 @@ __vue_render__._withStripped = true;
|
|||||||
/* style */
|
/* style */
|
||||||
const __vue_inject_styles__ = undefined;
|
const __vue_inject_styles__ = undefined;
|
||||||
/* scoped */
|
/* scoped */
|
||||||
const __vue_scope_id__ = "data-v-8036e7f4";
|
const __vue_scope_id__ = "data-v-3c5e97c1";
|
||||||
/* module identifier */
|
/* module identifier */
|
||||||
const __vue_module_identifier__ = undefined;
|
const __vue_module_identifier__ = undefined;
|
||||||
/* functional template */
|
/* functional template */
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
.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%}
|
.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%}
|
||||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1002 B |
|
After Width: | Height: | Size: 362 B |
|
After Width: | Height: | Size: 622 B |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 17 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 9.1 KiB |
@ -333,36 +333,38 @@ export default {
|
|||||||
|
|
||||||
##### 参数说明
|
##### 参数说明
|
||||||
|
|
||||||
| 参数 | 说明 | 类型 | 默认值 |
|
| 参数 | 说明 | 类型 | 默认值 |
|
||||||
| ------------------------------------ | ------------------------------------------------------------ | ------- | ------------ |
|
| ------------------------------------ | ------------------------------------------------------------ | ------- | --------------------------- |
|
||||||
| systemEnvId | 使用阅读器系统ID,由斯麦尔提供 | String | 无 |
|
| systemEnvId | 使用阅读器系统ID,由斯麦尔提供 | String | 无 |
|
||||||
| navBarHeight | 业务系统导航栏高度 | Number | 0 |
|
| navBarHeight | 业务系统导航栏高度 | Number | 0 |
|
||||||
| classId | 班级唯一标识 | String | 无 |
|
| classId | 班级唯一标识 | String | 无 |
|
||||||
| gradesName | 班级名称 | String | 无 |
|
| gradesName | 班级名称 | String | 无 |
|
||||||
| userType | 用户类型,可选teacher、student | String | student |
|
| userType | 用户类型,可选teacher、student | String | student |
|
||||||
| isShowTeacherResource | 是否显示教师资源 | Boolean | false |
|
| isShowTeacherResource | 是否显示教师资源 | Boolean | false |
|
||||||
| learningDuration | 已学习总时长 | Number | 0 |
|
| learningDuration | 已学习总时长 | Number | 0 |
|
||||||
| [textBookData](#textBookData.json) | 教材详细信息 | Object | 无 |
|
| [textBookData](#textBookData.json) | 教材详细信息 | Object | 无 |
|
||||||
| [catalogList](#catalogList.json) | 教材目录列表 | Array | 无 |
|
| [catalogList](#catalogList.json) | 教材目录列表 | Array | 无 |
|
||||||
| [looseLeafData](#looseLeafData.json) | 所有活页信息 | Object | 无 |
|
| [looseLeafData](#looseLeafData.json) | 所有活页信息 | Object | 无 |
|
||||||
| basisPath | 资源文件在服务器基础路径 | String | 无 |
|
| basisPath | 资源文件在服务器基础路径 | String | 无 |
|
||||||
| location | 阅读开始位置 | String | 无 |
|
| location | 阅读开始位置 | String | 无 |
|
||||||
| [notesList](#notesList) | 笔记列表 | Array | 无 |
|
| [notesList](#notesList) | 笔记列表 | Array | 无 |
|
||||||
| highlightList | 高亮列表 | Array | 无 |
|
| highlightList | 高亮列表 | Array | 无 |
|
||||||
| [bookmarkList](#bookmarkList) | 书签列表 | Array | 无 |
|
| [bookmarkList](#bookmarkList) | 书签列表 | Array | 无 |
|
||||||
| [highlightList](#highlightList) | 高亮列表 | Array | 无 |
|
| [highlightList](#highlightList) | 高亮列表 | Array | 无 |
|
||||||
| [resourcesList](#resourcesList) | 授课资源列表 | Array | 无 |
|
| [resourcesList](#resourcesList) | 授课资源列表 | Array | 无 |
|
||||||
| pageType | 页面类型 h5、pc、pad | String | h5 |
|
| pageType | 页面类型 h5、pc、pad | String | h5 |
|
||||||
| isTrial | 是否为试读模式 | Boolean | false |
|
| isTrial | 是否为试读模式 | Boolean | false |
|
||||||
| isTrialIndex | 试读百分比 | Number | 10 |
|
| isTrialIndex | 试读百分比 | Number | 10 |
|
||||||
| chapterId | 打开教材指定章节,章节ID | String | 无 |
|
| chapterId | 打开教材指定章节,章节ID | String | 无 |
|
||||||
| continueReading | 是否以弹窗形式提示用户继续阅读,chapterId为空时生效 | Boolean | false |
|
| continueReading | 是否以弹窗形式提示用户继续阅读,chapterId为空时生效 | Boolean | false |
|
||||||
| downloadType | 下载资源方式 pop-up:弹窗提示,click:下载回调 | String | pop-up |
|
| downloadType | 下载资源方式 pop-up:弹窗提示,click:下载回调 | String | pop-up |
|
||||||
| officePreviewPath | ffice 在线预览路径 格式:地址加参数名:https:www.xxx.com?src= | String | 微软在线预览 |
|
| officePreviewPath | ffice 在线预览路径 格式:地址加参数名:https:www.xxx.com?src= | String | 微软在线预览 |
|
||||||
| trialText | 试读结束提示语,富文本格式 | String | 试读结束 |
|
| trialText | 试读结束提示语,富文本格式 | String | 试读结束 |
|
||||||
| action | 文件上传地址,上传教师资源时必传 | String | 无 |
|
| action | 文件上传地址,上传教师资源时必传 | String | 无 |
|
||||||
| headers | 设置上传的请求头部 | Object | 无 |
|
| headers | 设置上传的请求头部 | Object | 无 |
|
||||||
| data | 上传时附带的额外参数 | Object | 无 |
|
| data | 上传时附带的额外参数 | Object | 无 |
|
||||||
|
| teacherData | 教师端学情统计 | Object | [teacherData](#teacherData) |
|
||||||
|
| studentData | 学生端学情统计 | Object | [studentData](#studentData) |
|
||||||
|
|
||||||
##### 事件
|
##### 事件
|
||||||
|
|
||||||
@ -386,6 +388,9 @@ export default {
|
|||||||
| deleteTeacherNote | 删除教师笔记 | [notesInfo](#notesInfo):笔记信息 |
|
| deleteTeacherNote | 删除教师笔记 | [notesInfo](#notesInfo):笔记信息 |
|
||||||
| downloadFile | 下载资源 | [fileInfo](#fileInfo):资源信息 |
|
| downloadFile | 下载资源 | [fileInfo](#fileInfo):资源信息 |
|
||||||
| settingChange | 阅读设置 | |
|
| settingChange | 阅读设置 | |
|
||||||
|
| joinClass | 加入班级 | {code:输入的激活码} |
|
||||||
|
| learningStatistics | 更新学习统计 | [statisticsInfo](#statisticsInfo) |
|
||||||
|
| changeClass | 切换班级 | 班级信息 |
|
||||||
|
|
||||||
##### 保存阅读进度
|
##### 保存阅读进度
|
||||||
|
|
||||||
@ -441,9 +446,10 @@ export default {
|
|||||||
|
|
||||||
##### 组件内部方法
|
##### 组件内部方法
|
||||||
|
|
||||||
| 方法名 | 说明 | 参数 |
|
| 方法名 | 说明 | 参数 |
|
||||||
| --------- | ------ | ------------------------------------------------ |
|
| ----------- | ---------- | ------------------------------------------------ |
|
||||||
| showToast | 提示框 | text:提示的文字 , type : warning、success、error |
|
| showToast | 提示框 | text:提示的文字 , type : warning、success、error |
|
||||||
|
| READER_MODE | 沉浸式阅读 | type: initial 初始值、immersive 沉浸式阅读 |
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1194,7 +1200,69 @@ export default {
|
|||||||
}
|
}
|
||||||
~~~
|
~~~
|
||||||
|
|
||||||
|
###### statisticsInfo
|
||||||
|
|
||||||
|
~~~json
|
||||||
|
//图片每放大预览调用一次;音视频每播放10秒调用一次;答题每提交答案调用一次
|
||||||
|
{
|
||||||
|
type:'学习类型',//image:图片,audio:音频,video:视频,question:答题
|
||||||
|
firstLevelId: '章节所在一级标题的Id',
|
||||||
|
firstLevelLabel: '章节所在一级标题的名称',
|
||||||
|
locationChapterId: '当前内容阅读所在目录id',
|
||||||
|
locationLabel: '当前内容阅读所在目录名称',
|
||||||
|
chapterId: '章节Id',
|
||||||
|
label: '章节名字'
|
||||||
|
}
|
||||||
|
~~~
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
###### studentData:
|
||||||
|
|
||||||
|
~~~json
|
||||||
|
{
|
||||||
|
nickname:'',//名字
|
||||||
|
className:'',//默认班级
|
||||||
|
img:'',//头像
|
||||||
|
learningProgress:'',//学习进度
|
||||||
|
learnNum :'',//学习次数
|
||||||
|
learnTime:'',//本次学习时长
|
||||||
|
totalLearnTime:'',//学习总时长
|
||||||
|
imgLearnNum:'',//图片学习次数
|
||||||
|
audioLearnTime:"10",//音频学习时长
|
||||||
|
videoLearnTime:"10",//视频学习时长
|
||||||
|
answersNum:'',//答题次数
|
||||||
|
noteNum:'',//笔记数量
|
||||||
|
bookmarkNum:'',//书签数量
|
||||||
|
lineationNum:''//划线数量
|
||||||
|
}
|
||||||
|
~~~
|
||||||
|
###### teacherData:
|
||||||
|
|
||||||
|
~~~json
|
||||||
|
{
|
||||||
|
nickname:'',//名字
|
||||||
|
className:'',//默认班级
|
||||||
|
img:'',//头像
|
||||||
|
totalLearnTime:'',//授课时长
|
||||||
|
learnNum:'',//授课次数
|
||||||
|
learningProgress:'',//学习进度
|
||||||
|
studentList:[
|
||||||
|
{
|
||||||
|
nickname:'',//名字
|
||||||
|
img:'',//头像
|
||||||
|
totalLearnTime:'',//学习总时长
|
||||||
|
learnNum:'',//学习次数
|
||||||
|
learningProgress:'',//学习进度
|
||||||
|
answersNum:'',//答题次数
|
||||||
|
},{
|
||||||
|
nickname:'',//名字
|
||||||
|
img:'',//头像
|
||||||
|
totalLearnTime:'',//学习总时长
|
||||||
|
learnNum:'',//学习次数
|
||||||
|
learningProgress:'',//学习进度
|
||||||
|
answersNum:'',//答题次数
|
||||||
|
}]//班级学员
|
||||||
|
}
|
||||||
|
~~~
|
||||||
|
|
||||||
|
|||||||
@ -249,7 +249,49 @@ var user = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var study = {
|
||||||
|
|
||||||
|
// 学习情况
|
||||||
|
info: (params) =>{
|
||||||
|
return request({
|
||||||
|
url: `${prefix}/class/situation/list`,
|
||||||
|
method: 'GET',
|
||||||
|
data: params,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
// 更新学习情况
|
||||||
|
update :(params) =>{
|
||||||
|
return request({
|
||||||
|
url: `${prefix}/class/situation/create`,
|
||||||
|
method: 'POST',
|
||||||
|
data: params,
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
var naotu = {
|
||||||
|
//
|
||||||
|
info: (params) =>{
|
||||||
|
return request({
|
||||||
|
url: `${prefix}/brain_map/lists`,
|
||||||
|
method: 'GET',
|
||||||
|
data: params,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
//
|
||||||
|
update :(params) =>{
|
||||||
|
return request({
|
||||||
|
url: `${prefix}/brain_map/created`,
|
||||||
|
method: 'POST',
|
||||||
|
data: params,
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export var bookApi ={
|
export var bookApi ={
|
||||||
bookinfo,
|
bookinfo,
|
||||||
@ -258,7 +300,9 @@ export var bookApi ={
|
|||||||
highlight,
|
highlight,
|
||||||
resource,
|
resource,
|
||||||
userAction,
|
userAction,
|
||||||
user
|
user,
|
||||||
|
study,
|
||||||
|
naotu,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -8,7 +8,10 @@ export default new Vuex.Store({
|
|||||||
state: {
|
state: {
|
||||||
book:{},
|
book:{},
|
||||||
redirecturl:"https://www.xinsiketang.com",
|
redirecturl:"https://www.xinsiketang.com",
|
||||||
textBookData:{}
|
textBookData:{},
|
||||||
|
showNaotu:false,
|
||||||
|
bookId:"",
|
||||||
|
userId:"",
|
||||||
},
|
},
|
||||||
mutations: {
|
mutations: {
|
||||||
},
|
},
|
||||||
|
|||||||