1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144 |
- <!-- -->
- <template>
- <div
- class="NPC-Big-Book-preview adult-book-preview-sty"
- :class="['NPC-Big-Book-preview-' + themeColor]"
- v-if="cur"
- >
- <div class="NNPE-title">
- <!-- 页眉 -->
- <div class="NNPE-title-left">
- <div
- v-for="(item, index) in cur.detailList"
- :key="index"
- class="NNPE-title-item"
- >
- <template
- v-if="
- item.detail &&
- item.detail.wordsList &&
- item.detail.wordsList.length == 0
- "
- >
- <p
- v-if="item.detail.sentence"
- :class="[
- 'content-con',
- /^[\u4e00-\u9fa5]/.test(item.detail.sentence) ? 'hasCn' : '',
- ]"
- v-html="item.detail.sentence"
- ></p>
- </template>
- <template v-else>
- <div class="con-box" v-if="item.detail && item.detail.resArr">
- <div
- v-for="(itemCon, indexCon) in item.detail.resArr"
- v-show="itemCon.isShow"
- :key="indexCon"
- :class="['con-item', indexCon === 0 ? 'con-item-0' : '']"
- >
- <template
- v-if="
- item.detail &&
- item.detail.wordsList &&
- item.detail.wordsList[indexCon + 1] &&
- item.detail.wordsList[indexCon + 1].chs &&
- chsFhList.indexOf(item.detail.wordsList[indexCon + 1].chs) >
- -1
- "
- >
- <div class="synthesis-box">
- <div>
- <span
- class="pinyin"
- :class="[
- noFont.indexOf(itemCon.pinyin) > -1 ? 'noFont' : '',
- ]"
- >{{ itemCon.pinyin }}</span
- >
- <span class="hanzi content-con">{{ itemCon.chs }}</span>
- </div>
- <div
- style="text-align: left"
- v-if="item.detail.wordsList[indexCon + 1]"
- >
- <span
- class="pinyin"
- :class="[
- noFont.indexOf(
- item.detail.wordsList[indexCon + 1].pinyin
- ) > -1
- ? 'noFont'
- : '',
- ]"
- >{{ item.detail.wordsList[indexCon + 1].pinyin }}</span
- >
- <span class="hanzi content-con">{{
- item.detail.wordsList[indexCon + 1].chs
- }}</span>
- </div>
- </div>
- </template>
- <template v-else>
- <span
- class="pinyin"
- :class="[
- noFont.indexOf(itemCon.pinyin) > -1 ? 'noFont' : '',
- ]"
- >{{ itemCon.pinyin }}</span
- >
- <span class="hanzi content-con">{{ itemCon.chs }}</span>
- </template>
- </div>
- </div>
- </template>
- <p class="NNPE-title-item-en" v-html="item.en"></p>
- </div>
- </div>
- <div class="NNPE-operate" v-if="isShowTitle">
- <a class="btn-prev" @click="handleNNPEprev" />
- <a class="btn-next" @click="handleNNPEnext" />
- </div>
- </div>
- <div
- v-if="
- cur.classTopic && cur.classTopic.length > 0 && cur.classTopic[0].con
- "
- class="classTopic-box"
- >
- <span
- v-for="(item, index) in cur.classTopic"
- :key="index"
- :class="item.font"
- >
- {{ item.con }}
- </span>
- </div>
- <div v-if="cur" class="NNPE-Book-content-inner">
- <div
- v-for="(item, index) in cur.cur_fn_data"
- :key="index"
- class="title-box-preview"
- >
- <div
- class="title-big"
- v-if="item.number || item.z_title || item.f_title"
- >
- <b v-if="item.number">{{ item.number }}</b>
- <div
- class="title-box-right"
- :class="[item.is_textIndex ? 'title-box-right-index' : '']"
- >
- <h2 v-if="item.z_title" v-html="item.z_title"></h2>
- <h3
- v-if="item.f_title"
- v-html="item.f_title"
- :style="{ marginTop: item.z_title ? '8px' : '0' }"
- ></h3>
- </div>
- </div>
- <div
- class="title-little"
- :class="[
- item.little_title_number || item.little_title ? 'marginTop' : '',
- ]"
- >
- <b v-html="item.little_title_number"></b>
- <p v-html="item.little_title"></p>
- </div>
- <div
- :class="['NNPE-tableList', item.is_bg ? 'NNPE-tableList-hasBg' : '']"
- >
- <div
- v-for="(items, indexs) in item.table_list"
- :key="indexs"
- class="NNPE-tableList-tr"
- :class="[
- indexs === item.table_list.length - 1
- ? 'NNPE-tableList-tr-last'
- : '',
- ]"
- >
- <div
- v-for="(itemss, indexss) in items"
- :key="indexss"
- :class="[
- 'NNPE-tableList-item',
- items.length == 1
- ? 'NNPE-tableList-item-noMargin'
- : 'NNPE-tableList-item' + items.length,
- ]"
- >
- <template v-if="itemss.data">
- <template v-if="itemss.type == 'ligature_chs'">
- <Ligature
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- />
- </template>
- <template v-if="itemss.data.type == 'image'">
- <Picture
- :cur-que="itemss.data"
- :child-type="itemss.type"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'phrase_chs'">
- <WordPhrase
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'NewWord_chs'">
- <WordPhrase
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :currentTreeID="currentTreeID"
- :indexs="indexs"
- :indexss="indexss"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'annotation_chs'">
- <WordPhrase
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'notes_chs'">
- <Notes
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'article_chs'">
- <ArticleTemChs
- :cur-que="itemss.data"
- :n-n-p-e-new-word-list="NNPENewWordList"
- :n-n-p-e-new-phrase-list="NNPENewPhraseList"
- :n-n-p-e-annotation-list="NNPEAnnotationList"
- :theme-color="themeColor"
- :currentTreeID="currentTreeID"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <!-- <template v-if="itemss.type == 'sentence_segword_chs'">
- <SentenceSegWordViewChs
- :cur-que="itemss.data"
- :theme-color="themeColor"
- v-if="refresh"
- />
- </template> -->
- <template v-if="itemss.type == 'dialogue_article_chs'">
- <DialogueArticleViewChs
- :cur-que="itemss.data"
- :n-n-p-e-new-word-list="NNPENewWordList"
- :n-n-p-e-new-phrase-list="NNPENewPhraseList"
- :n-n-p-e-annotation-list="NNPEAnnotationList"
- :color-box="colorBox"
- :theme-color="themeColor"
- :currentTreeID="currentTreeID"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'dialogue_answer_chs'">
- <DialogueAnswerViewChs
- :cur-que="itemss.data"
- :color-box="colorBox"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'input_record_chs'">
- <InputHasRecord
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'recordHZ_inputPY_chs'">
- <TextInputRecord
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template
- v-if="
- itemss.type == 'inputItem_chs' ||
- itemss.type == 'sentence_input_chs' ||
- itemss.type == 'sentence_judge_chs' ||
- itemss.type == 'sentence_record_chs' ||
- itemss.type == 'sentence_input_record_chs'
- "
- >
- <SentenceInput
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'NumberCombination_chs'">
- <NumberSelectHasRecord
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type === 'voice_matrix'">
- <voice-matrix
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'toneSelect_chs'">
- <SelectTone
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'sudoku_chs'">
- <Soduko
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'single_chs'">
- <Single
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'text_problem_chs'">
- <TextProblem
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'newWord_preview_chs'">
- <NewWordShow
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :indexStr="index + '_' + indexs + '_' + indexss"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template
- v-if="itemss.type == 'listen_record_single_syllable_chs'"
- >
- <SelectYinjie
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'sentence_listen_read_chs'">
- <SentenceListenRead
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'sort_chs'">
- <SentenceSortQP
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'checkbox_self_assessment_chs'">
- <Checkbox
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template
- v-if="
- itemss.type == 'record_control_mini' ||
- itemss.type == 'record_control_normal' ||
- itemss.type == 'record_control_pro' ||
- itemss.type == 'record_control_promax'
- "
- >
- <RecordModule
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template
- v-if="
- itemss.type == 'upload_control_chs' ||
- itemss.type == 'upload_control_preview_chs'
- "
- >
- <UploadControlView
- :cur-que="itemss.data"
- :type="itemss.type"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'CourseStart_chs'">
- <CourseStart
- :cur-que="itemss.data"
- :handle-n-n-p-enext="handleNNPEnext"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'tinydemo_chs'">
- <Tinydemo
- :cur-que="itemss.data"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'video_chs'">
- <VideoControl
- :cur-que="itemss.data"
- :type="itemss.type"
- :theme-color="themeColor"
- :indexStr="
- index + '_' + indexs + '_' + indexss + '_' + currentTreeID
- "
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'table_chs'">
- <TableView
- :cur-que="itemss.data"
- :type="itemss.type"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'play_record_chs'">
- <PlayRecordView
- :cur-que="itemss.data"
- :type="itemss.type"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- <template v-if="itemss.type == 'upload_pdf_chs'">
- <PdfView
- :cur-que="itemss.data"
- :type="itemss.type"
- :theme-color="themeColor"
- :TaskModel="TaskModel"
- v-if="refresh"
- />
- </template>
- </template>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import Picture from "./preview/Picture.vue"; // 图片模板
- import Record from "./preview/Record.vue"; // 音频播放
- import Soundrecord from "./preview/Soundrecord.vue"; // 录音模板
- import ArticleTemChs from "./preview/ArticleViewChs/index.vue"; // 文章模板
- import DialogueArticleViewChs from "./preview/DialogueArticleViewChs/index.vue"; // 文章模板
- import SentenceSegWordViewChs from "./preview/SentenceSegWordViewChs.vue"; // 句子分词
- import WordPhrase from "./preview/WordPhrase.vue"; // 生词短语
- import Notes from "./preview/Notes.vue"; // 注释
- import Ligature from "./preview/Ligature.vue";
- import InputHasRecord from "./preview/InputHasRecord.vue"; // 输入加录音
- import TextInputRecord from "./preview/TextInputRecord.vue"; // 文本+输入+录音
- import SentenceInput from "./preview/SentenceInput.vue"; // 输入选项
- import NumberSelectHasRecord from "./preview/NumberSelectHasRecord.vue"; // 数字组合
- import SelectTone from "./preview/SelectTone.vue"; // 选择声调
- import Soduko from "./preview/Soduko.vue"; // 数独
- import Single from "./preview/Single.vue"; // 单选
- import TextProblem from "./preview/TextProblem.vue"; // 课文上方的问题
- import NewWordShow from "./preview/NewWordShow.vue"; // 生字展示
- import SelectYinjie from "./preview/SelectYinjie.vue"; // 选择音节
- import SentenceListenRead from "./preview/SentenceListenRead.vue"; // 听并朗读
- import SentenceSortQP from "./preview/SentenceSortQP.vue"; // 句子拖拽排序
- import Checkbox from "./preview/CheckBoxModule.vue"; // 问卷调查-多选题
- import VoiceMatrix from "./preview/VoiceMatrix.vue"; // 语音矩阵
- import RecordModule from "./preview/RecordModule.vue"; // 录音组件
- import UploadControlView from "./preview/UploadControlView.vue"; // 预览控件
- import DialogueAnswerViewChs from "./preview/DialogueArticleViewChs/DialogueAnswerViewChs.vue"; // 文章模板
- import CourseStart from "./preview/CourseStart.vue"; // 封面
- import Tinydemo from "./preview/TinyModule.vue"; // 富文本
- import VideoControl from "./preview/VideoControl.vue"; // 视频控件
- import TableView from "./preview/TableView.vue"; // 视频控件
- import PdfView from "./preview/PdfView.vue"; // 视频控件
- import PlayRecordView from "@/components/Adult/preview/PlayRecordView.vue";
- export default {
- name: "Preview",
- components: {
- Picture,
- Record,
- Soundrecord,
- ArticleTemChs,
- DialogueArticleViewChs,
- SentenceSegWordViewChs,
- WordPhrase,
- Notes,
- Ligature,
- InputHasRecord,
- TextInputRecord,
- SentenceInput,
- NumberSelectHasRecord,
- SelectTone,
- Soduko,
- Single,
- TextProblem,
- NewWordShow,
- SelectYinjie,
- SentenceListenRead,
- SentenceSortQP,
- Checkbox,
- VoiceMatrix,
- RecordModule,
- UploadControlView,
- DialogueAnswerViewChs,
- CourseStart,
- Tinydemo,
- VideoControl,
- TableView,
- PdfView,
- PlayRecordView,
- },
- props: [
- "context",
- "fatherName",
- "currentTreeID",
- "FatherTreeData",
- "changeId",
- "themeColor",
- "isShowTitle",
- "bookAnswerContent",
- "TaskModel",
- ],
- data() {
- return {
- contextData: null,
- answerData: [], //获取的答案数据
- queIndex: -1, // 题目的索引
- cur: null, // 当前的题目
- watchIndex: -1, // 监听的值
- queList: [],
- queTotal: 0, // 题目总数
- NNPENewWordList: [], // 存放文章的生词
- NNPENewPhraseList: [], // 存放文章的短语
- NNPEAnnotationList: [], // 存放文章注释
- height: "", // 总体的高度
- colorBox: [
- {
- touxiang: "#72B51D",
- bg: "#E9F0DF",
- },
- {
- touxiang: "#DE4444",
- bg: "rgba(222, 68, 68, 0.1)",
- },
- {
- touxiang: "#A7A7A7",
- bg: "#ffffff",
- },
- {
- touxiang: "#4D91F6",
- bg: "#F1F7FF",
- },
- {
- touxiang: "#FF8A00",
- bg: "rgba(255, 138, 0, 0.1)",
- },
- ],
- chsFhList: [",", "。", "“", ":", "》", "《", "?", "!", ";"],
- noFont: ["~", "!", "@", "#", "$", "%", "^", "&", "*", "(", ")"], // 对应不要拼音字体
- idArr: [], //当前的pid
- oldCurrentTreeID: "",
- refresh: true,
- };
- },
- computed: {},
- watch: {
- context: {
- handler(val, oldVal) {
- const _this = this;
- _this.refresh = false;
- if (val) {
- _this.initContextData();
- if (_this.FatherTreeData) {
- _this.idArr = [];
- _this.FatherTreeData.forEach((item, itemIndex) => {
- this.seekCurrentTree(item);
- });
- }
- _this.handleTitleData();
- _this.$nextTick(() => {
- // 重新渲染组件
- _this.refresh = true;
- });
- }
- },
- // 深度观察监听
- deep: true,
- },
- },
- // 生命周期 - 创建完成(可以访问当前this实例)
- created() {},
- // 生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {
- const _this = this;
- if (_this.context) {
- _this.initContextData();
- _this.handleTitleData();
- }
- if (_this.FatherTreeData) {
- _this.idArr = [];
- _this.FatherTreeData.forEach((item, itemIndex) => {
- this.seekCurrentTree(item);
- });
- }
- },
- beforeCreate() {}, // 生命周期 - 创建之前
- beforeMount() {}, // 生命周期 - 挂载之前
- beforeUpdate() {}, // 生命周期 - 更新之前
- updated() {}, // 生命周期 - 更新之后
- beforeDestroy() {}, // 生命周期 - 销毁之前
- destroyed() {}, // 生命周期 - 销毁完成
- activated() {},
- // 方法集合
- methods: {
- // 处理数据
- handleTitleData() {
- let _this = this;
- let curQue = JSON.parse(JSON.stringify(this.cur));
- curQue.detailList.forEach((dItem, dIndex) => {
- let paraArr = [];
- if (dItem.detail) {
- dItem.detail.wordsList.forEach((sItem, sIndex) => {
- let obj = {
- pinyin: sItem.pinyin,
- chs: sItem.chs,
- isShow: true,
- };
- paraArr.push(obj);
- });
- this.$set(_this.cur.detailList[dIndex].detail, "resArr", paraArr);
- }
- });
- },
- initContextData() {
- const _this = this;
- //_this.$root.isRecording = false;
- _this.contextData = JSON.parse(JSON.stringify(_this.context));
- _this.queIndex = 0;
- _this.NNPENewWordList = [];
- _this.NNPENewPhraseList = [];
- _this.NNPEAnnotationList = [];
- _this.watchIndex = _this.queIndex + new Date().getTime();
- if (_this.contextData) {
- // const list = _this.contextData;
- // if (list && list.length > 0) {
- // _this.queList = list;
- // _this.cur = list[_this.queIndex];
- _this.queTotal = 1;
- // _this.cur.cur_fn_data.forEach((item) => {
- // item.table_list.forEach((items) => {
- // items.forEach((itemss) => {
- // if (itemss.data && itemss.data.type == "NewWord_chs") {
- // _this.NNPENewWordList = _this.NNPENewWordList.concat(
- // itemss.data.option
- // );
- // } else if (itemss.data && itemss.data.type == "notes_chs") {
- // _this.NNPEAnnotationList = _this.NNPEAnnotationList.concat(
- // itemss.data.option
- // );
- // }
- // });
- // });
- // });
- // }
- _this.cur = _this.contextData;
- _this.cur.cur_fn_data.forEach((item, index) => {
- item.table_list.forEach((items, indexs) => {
- items.forEach((itemss, indexss) => {
- if (itemss.data && itemss.data.type == "NewWord_chs") {
- _this.NNPENewWordList = _this.NNPENewWordList.concat(
- itemss.data.option
- );
- } else if (itemss.data && itemss.data.type == "notes_chs") {
- _this.NNPEAnnotationList = _this.NNPEAnnotationList.concat(
- itemss.data.option
- );
- }
- let Bookanswer = localStorage.getItem("Bookanswer");
- //if (_this.TaskModel == "lookAnswer" && _this.bookAnswerContent) {
- if (Bookanswer) {
- // let answerData = JSON.parse(_this.bookAnswerContent);
- let answerData = JSON.parse(Bookanswer);
- if (answerData && itemss.data) {
- itemss.data.Bookanswer =
- answerData.length > 0 &&
- answerData[index].table_list &&
- answerData[index].table_list.length > 0 &&
- answerData[index].table_list[indexs].length > 0 &&
- answerData[index].table_list[indexs][indexss].data
- ? answerData[index].table_list[indexs][indexss].data
- .Bookanswer
- : [];
- }
- }
- });
- });
- });
- }
- this.$forceUpdate();
- },
- // 上一页
- handleNNPEprev() {
- let _this = this;
- _this.puaseAudio();
- if (_this.queIndex == 0) {
- this.idArr.forEach((item, i) => {
- if (item == _this.currentTreeID) {
- if (i == 0) {
- this.$message({
- message: "已经是第一题",
- type: "success",
- });
- } else {
- _this.changeId(this.idArr[i - 1]);
- }
- }
- });
- } else {
- _this.queIndex -= 1;
- _this.watchIndex = _this.queIndex + new Date().getTime();
- _this.cur = _this.queList[_this.queIndex];
- }
- },
- // 递归寻找相同的目录并保存目录的pid
- seekCurrentTree(item) {
- if (item.is_courseware == "true") {
- this.idArr.push(item.id);
- }
- if (item.children) {
- item.children.forEach((it, index) => {
- if (it.is_courseware == "true") {
- this.idArr.push(it.id);
- }
- if (it.children) {
- this.seekCurrentTree(it);
- }
- });
- }
- },
- puaseAudio() {
- let audio = document.getElementsByTagName("audio");
- audio.forEach((item) => {
- item.pause();
- });
- let video = document.getElementsByTagName("video");
- video.forEach((item) => {
- item.pause();
- });
- },
- // 下一页
- handleNNPEnext() {
- const _this = this;
- _this.puaseAudio();
- if (_this.queIndex == _this.queTotal - 1) {
- this.idArr.forEach((item, i) => {
- if (item == _this.currentTreeID) {
- if (i == this.idArr.length - 1) {
- this.$message({
- message: "已经是最后一题",
- type: "success",
- });
- } else {
- _this.changeId(this.idArr[i + 1]);
- }
- }
- });
- } else {
- _this.queIndex += 1;
- _this.watchIndex = _this.queIndex + new Date().getTime();
- _this.cur = _this.queList[_this.queIndex];
- }
- },
- saveAnswer() {
- let contextData = JSON.parse(JSON.stringify(this.contextData));
- let result = [];
- contextData.cur_fn_data.forEach((item, index) => {
- result[index] = {
- table_list: [],
- };
- item.table_list.forEach((items, indexs) => {
- result[index].table_list[indexs] = [];
- items.forEach((itemss, indexss) => {
- if (itemss.data) {
- let Bookanswer = itemss.data.Bookanswer;
- let obj = {
- data: {
- Bookanswer: Bookanswer,
- },
- };
- result[index].table_list[indexs][indexss] = obj;
- } else {
- result[index].table_list[indexs][indexss] = {
- data: null,
- };
- }
- });
- });
- });
- return result;
- },
- }, // 如果页面有keep-alive缓存功能,这个函数会触发
- };
- </script>
- <style lang='scss' scoped>
- //@import url(); 引入公共css类
- .NPC-Big-Book-preview {
- width: 860px;
- margin: 0 auto;
- position: relative;
- padding-bottom: 120px;
- .NNPE-title {
- background: #e35454;
- border-radius: 0px 0px 16px 16px;
- padding: 7px 24px;
- position: relative;
- height: 64px;
- display: flex;
- align-items: center;
- h1 {
- color: #ffffff;
- font-weight: bold;
- font-size: 16px;
- line-height: 150%;
- margin: 0;
- }
- .NNPE-title-left {
- display: flex;
- color: #ffffff;
- font-size: 18px;
- line-height: 18px;
- align-items: center;
- .NNPE-title-item {
- margin-right: 12px;
- }
- .content-con {
- margin: 4px 0;
- font-family: "robot";
- &.hasCn,
- &.hanzi {
- font-family: "FZJCGFKTK";
- }
- }
- .content-en {
- font-weight: normal;
- line-height: 18px;
- font-family: "robot";
- }
- .NNPE-title-item-en {
- font-weight: normal;
- line-height: 12px;
- font-family: "robot";
- font-size: 12px;
- margin: 0;
- }
- .con-box {
- display: flex;
- flex-flow: wrap;
- justify-content: center;
- .con-item {
- text-align: center;
- padding: 0 1px;
- }
- span {
- display: block;
- }
- .pinyin {
- font-family: "GB-PINYINOK-B";
- font-size: 12px;
- line-height: 12px;
- height: 12px;
- &.noFont {
- font-family: initial;
- }
- }
- .synthesis-box {
- display: flex;
- }
- }
- }
- .NNPE-operate {
- position: absolute;
- top: 10px;
- right: 20px;
- a {
- background: #e35454 url("../../assets/newImage/common/btn-pre.png")
- center no-repeat;
- background-size: 24px;
- border-radius: 4px;
- width: 44px;
- height: 44px;
- display: inline-block;
- margin: 0 4px;
- &.btn-next {
- background: #e35454 url("../../assets/newImage/common/btn-next.png")
- center no-repeat;
- background-size: 24px;
- }
- &:hover {
- background-color: #f76565;
- }
- &:active {
- background-color: #d24444;
- }
- }
- }
- }
- .classTopic-box {
- background: #e35454;
- border-radius: 8px;
- width: 780px;
- margin: 24px auto 0 auto;
- text-align: center;
- padding: 8px 24px;
- span {
- font-size: 16px;
- line-height: 150%;
- color: #ffffff;
- padding: 0 1px;
- &.cn {
- font-family: "FZJCGFKTK";
- }
- &.en {
- font-family: "robot";
- }
- &.pinyin {
- font-family: "GB-PINYINOK-B";
- }
- }
- }
- .NNPE-Book-content-inner {
- padding: 0 40px;
- > div.title-box-preview {
- padding-top: 32px;
- .title-big {
- display: flex;
- b {
- min-width: 39px;
- height: 24px;
- background: #e35454;
- border-radius: 8px;
- color: #ffffff;
- font-family: "robot";
- display: inline-block;
- text-align: center;
- font-size: 16px;
- line-height: 150%;
- margin-right: 12px;
- padding: 0 4px;
- }
- h2 {
- color: #e35454;
- font-size: 16px;
- line-height: 150%;
- font-weight: bold;
- margin: 0;
- }
- h3 {
- color: #000000;
- font-size: 16px;
- line-height: 150%;
- font-weight: normal;
- margin: 0;
- white-space: pre-wrap;
- word-break: break-word;
- }
- .title-box-right-index {
- padding-left: 51px;
- }
- }
- .title-little {
- display: flex;
- margin-bottom: 24px;
- &.marginTop {
- margin-top: 24px;
- }
- b,
- p {
- color: #000000;
- font-size: 16px;
- line-height: 150%;
- font-weight: normal;
- margin: 0;
- white-space: pre-wrap;
- word-break: break-word;
- padding-right: 3px;
- }
- }
- }
- .NNPE-tableList {
- background: #fff;
- border-radius: 8px;
- // padding: 12px 8px;
- &.NNPE-tableList-hasBg {
- background: #f7f7f7;
- border: 1px solid rgba(0, 0, 0, 0.1);
- box-sizing: border-box;
- border-radius: 8px;
- }
- .NNPE-tableList-tr {
- display: flex;
- justify-content: space-between;
- // flex-flow: wrap;
- .NNPE-tableList-item {
- width: 100%;
- // margin: 12px 16px;
- // padding: 16px;
- // background: #FFFFFF;
- // border-radius: 4px;
- display: flex;
- flex-flow: wrap;
- justify-content: center;
- &.NNPE-tableList-item-noMargin {
- margin: 0;
- }
- &.NNPE-tableList-item2 {
- width: 378px;
- }
- &.NNPE-tableList-item3 {
- width: 244px;
- }
- }
- }
- }
- }
- }
- .NPC-Big-Book-preview-green {
- .NNPE-title {
- background: #24b99e;
- .NNPE-operate {
- a {
- background: #24b99e url("../../assets/newImage/common/btn-pre.png")
- center no-repeat;
- background-size: 24px;
- &.btn-next {
- background: #24b99e url("../../assets/newImage/common/btn-next.png")
- center no-repeat;
- background-size: 24px;
- }
- &:hover {
- background-color: #3dd4b8;
- }
- &:active {
- background-color: #1fa189;
- }
- }
- }
- }
- .classTopic-box {
- background: #24b99e;
- }
- .NNPE-Book-content-inner {
- > div.title-box-preview {
- .title-big {
- b {
- background: #24b99e;
- }
- h2 {
- color: #24b99e;
- }
- }
- }
- }
- }
- .NPC-Big-Book-preview-brown {
- .NNPE-title {
- background: #bd8865;
- .NNPE-operate {
- a {
- background: #bd8865 url("../../assets/newImage/common/btn-pre.png")
- center no-repeat;
- background-size: 24px;
- &.btn-next {
- background: #bd8865 url("../../assets/newImage/common/btn-next.png")
- center no-repeat;
- background-size: 24px;
- }
- &:hover {
- background-color: #d6a687;
- }
- &:active {
- background-color: #a37557;
- }
- }
- }
- }
- .classTopic-box {
- background: #bd8865;
- }
- .NNPE-Book-content-inner {
- > div.title-box-preview {
- .title-big {
- b {
- background: #bd8865;
- }
- h2 {
- color: #bd8865;
- }
- }
- }
- }
- }
- </style>
|