123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 |
- <template>
- <div class="container GCLS-BOOK-Container">
- <template v-if="!type">
- <Header />
- <Nav nav-value="书籍预览" />
- </template>
- <template v-else>
- <div class="bookname">
- <i
- style="cursor: pointer; margin-right: 5px"
- class="el-icon-arrow-left"
- @click="back"
- ></i>
- {{ name }}
- </div>
- </template>
- <div class="content">
- <div id="content-tree" :class="[fullTree ? 'content-tree-full' : 'content-tree']">
- <TreeView
- ref="treeView"
- :book-id="bookId"
- :change-id="changeId"
- :changeTreeData="changeTreeData"
- :currentTreeID="chapterId"
- />
- </div>
- <div id="data-screen" class="inner" v-loading="loading">
- <!-- 显示答案按钮 -->
- <!-- <a v-if="chapterId" :class="['answerShow',isAnswerShow?'answerShowTrue':'']" @click="handleAnswerShow">显示答案</a> -->
- <!-- <a class="edit-btn" @click="handleEdit">编辑</a> -->
- <div v-if="chapterId" class="title-box">
- <img
- v-if="!treeFlag"
- src="../assets/common/icon-view-back.png"
- @click="treeShow"
- />
- <img
- v-if="!treeFlag"
- src="../assets/common/icon-treelist.png"
- @click="chooseCourseware"
- />
- <!-- <h2 class="title">{{ chapterName }}</h2> -->
- <!-- <el-switch
- v-if="!treeFlag"
- v-model="switchvalue"
- active-color="#FF9900"
- active-text
- inactive-text="生词模式"
- /> -->
- </div>
- <template v-if="category == 'OC' || !category">
- <Preview
- v-if="chapterId && context"
- ref="previewAnswer"
- :context="context"
- :bookAnswerContent="bookAnswerContent"
- bookclientwidth="900"
- :TaskModel="TaskModel"
- @handleBookUserAnswer="handleBookUserAnswer"
- />
- </template>
- <template v-if="category == 'NPC'">
- <Booknpc
- v-if="chapterId && context"
- ref="previewAnswer"
- :context="context"
- :currentTreeID="chapterId"
- :FatherTreeData="FatherTreeData"
- :change-id="changeId"
- :themeColor="themeColor"
- :isShowTitle="true"
- />
- </template>
- <template v-if="category == 'NNPE'">
- <Booknnpe
- v-if="chapterId && context"
- ref="previewAnswer"
- :context="context"
- :currentTreeID="chapterId"
- :FatherTreeData="FatherTreeData"
- :change-id="changeId"
- :themeColor="themeColor"
- :isShowTitle="true"
- />
- </template>
- </div>
- </div>
- <!-- <Preview :context="context" :queIndex="queIndex" /> -->
- <a v-if="chapterId && treeFlag" class="screen-full" @click="fullScreen()" />
- </div>
- </template>
- <script>
- import Header from "@/components/inputModules/common/Header";
- import Nav from "@/components/inputModules/common/Nav";
- import TreeView from "@/components/inputModules/common/TreeView";
- import { getContent } from "@/api/ajax";
- import Cookies from "js-cookie";
- // import Preview from '@/componentsAnswer/PreviewAnswer.vue'
- import Preview from "@/components/Preview";
- export default {
- name: "CourseView",
- components: {
- Header,
- Nav,
- TreeView,
- Preview,
- },
- data() {
- return {
- bookId: "",
- chapterId: "",
- chapterName: "",
- fullscreen: false, // 控制全屏
- fullTree: false, // 全屏模式下树是否显示
- context: null,
- question: null, // 选择的模板题型
- queIndex: "",
- treeFlag: true, // tree是否显示
- switchvalue: true, // 生词模式
- isAnswerShow: false, // 是否显示答案
- bookAnswerContent: "[[6],[],[9]]",
- TaskModel: "Task",
- category: "",
- FatherTreeData: null,
- themeColor: "",
- type: "",
- name: "",
- loading: false,
- bookName: [
- {
- name: "新实用汉语课本1",
- id: "002-20211006-10-NHVOMDLDRY",
- },
- {
- name: "发展汉语初级综合(Ⅰ)",
- id: "002-20211007-06-4DGL2ZRIB5",
- },
- {
- name: "HSK标准教程1",
- id: "002-20211007-14-UNYIWU8EKW",
- },
- {
- name: "新实用汉语",
- id: "003-20210908-10-1ZWNGSASZL",
- },
- {
- name: "新航标职业英语 综合英语(基础级)学生用书1(修订版)",
- id: "002-20211029-14-9VGMXLV2NU",
- },
- {
- name: "新航标职业英语",
- id: "002-20211011-10-GOLXUZST4G",
- },
- ],
- };
- },
- created() {
- const _this = this;
- _this.bookId = this.$route.query.bookId;
- _this.type = this.$route.query.type;
- _this.bookName.forEach((item) => {
- if (item.id == _this.bookId) {
- _this.name = item.name;
- }
- });
- },
- methods: {
- back() {
- this.$router.go(-1);
- },
- changeTreeData(val) {
- this.FatherTreeData = JSON.parse(JSON.stringify(val));
- },
- changeId(id, name) {
- const _this = this;
- _this.chapterId = id;
- _this.chapterName = name;
- _this.isAnswerShow = false;
- _this.onGetData();
- if (!_this.treeFlag) {
- _this.fullTree = false;
- document.getElementById("content-tree").style.display = "none";
- }
- },
- // 点击全屏展示 隐藏tree
- fullScreen() {
- this.treeFlag = false;
- document.getElementById("content-tree").style.display = "none";
- },
- treeShow() {
- this.treeFlag = true;
- this.fullTree = false;
- document.getElementById("content-tree").style.display = "block";
- },
- // 获取预览数据
- onGetData() {
- this.loading = true;
- const _this = this;
- const MethodName = "book-courseware_manager-GetCoursewareContent_View";
- const data = {
- id: _this.chapterId,
- };
- getContent(MethodName, data).then((res) => {
- this.category = res.category;
- this.themeColor = res.book_theme_color;
- if (res.content) {
- const _this = this;
- if (!this.category || this.category == "OC") {
- _this.context = {
- id: _this.chapterId,
- ui_type: JSON.parse(res.content).question
- ? JSON.parse(res.content).question.ui_type
- : "",
- sort_number: 1,
- content: JSON.parse(res.content),
- };
- } else if (this.category == "NPC") {
- _this.context = JSON.parse(res.content);
- } else if (this.category == "NNPE") {
- _this.context = JSON.parse(res.content);
- }
- } else {
- const _this = this;
- _this.context = null;
- }
- this.loading = false;
- });
- },
- // 跳转编辑页面
- handleEdit() {
- const index = this.$refs.treeView.handleParentIndex().split("###");
- if (index.length > 1) {
- Cookies.set("bookIndex", index[0]);
- Cookies.set("bookLevel", index[1]);
- Cookies.set("bookNodename", index[2]);
- }
- this.$router.push("/input?bookId=" + this.bookId);
- },
- // 显示或隐藏答案
- handleAnswerShow() {
- this.isAnswerShow = !this.isAnswerShow;
- this.$refs.previewAnswer.bookAnswerShow(this.isAnswerShow);
- },
- // 得到用户答题答案
- handleBookUserAnswer(data) {
- console.log(data);
- },
- // 悬浮树隐藏显示
- chooseCourseware() {
- this.fullTree = !this.fullTree;
- if (this.fullTree) {
- document.getElementById("content-tree").style.display = "block";
- } else {
- document.getElementById("content-tree").style.display = "none";
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .container {
- width: 100%;
- height: auto;
- .bookname {
- width: 100%;
- height: 60px;
- display: flex;
- align-items: center;
- box-sizing: border-box;
- padding: 0 46px;
- background: #f3f7fa;
- position: relative;
- z-index: 999;
- }
- .content {
- width: 100%;
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- &-tree {
- width: 340px;
- height: 100%;
- overflow: auto;
- padding: 20px 0px;
- border-right: 1px solid #d9d9d9;
- position: fixed;
- top: 0px;
- left: 0;
- padding-top: 124px;
- background: #fff;
- }
- .content-tree-full {
- position: fixed;
- top: 100px;
- left: 152px;
- max-height: 588px;
- overflow: auto;
- z-index: 999;
- background: #fff;
- box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
- border-radius: 4px;
- }
- .inner {
- // border-left: 1px solid #d9d9d9;
- width: 1000px;
- margin: 0 auto;
- margin-left: 340px;
- flex: 1;
- box-sizing: border-box;
- padding: 20px;
- position: relative;
- background: #fff;
- .title-box {
- display: flex;
- align-items: center;
- margin-bottom: 12px;
- padding-right: 160px;
- position: relative;
- > img {
- width: 40px;
- margin-right: 16px;
- cursor: pointer;
- }
- }
- .title {
- font-size: 24px;
- margin-bottom: 20px;
- line-height: 40px;
- margin: 0;
- }
- .has-module {
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- &-tree {
- width: 340px;
- height: 100%;
- overflow: auto;
- padding: 20px 0px;
- border-right: 1px solid #d9d9d9;
- }
- .inner {
- // border-left: 1px solid #d9d9d9;
- width: 1000px;
- flex: 1;
- margin: 0 auto;
- box-sizing: border-box;
- padding: 20px;
- position: relative;
- background: #fff;
- .title-box {
- display: flex;
- align-items: center;
- margin-bottom: 12px;
- padding-right: 160px;
- position: relative;
- > img {
- width: 40px;
- margin-right: 16px;
- cursor: pointer;
- }
- }
- .title {
- font-size: 24px;
- margin-bottom: 20px;
- line-height: 40px;
- margin: 0;
- }
- .has-module {
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .edit-btn {
- display: inline-block;
- font-size: 14px;
- background: #ff9900;
- float: right;
- line-height: 36px;
- color: #fff;
- width: 60px;
- text-align: center;
- border-radius: 4px;
- }
- }
- }
- }
- .nav-list {
- width: 200px;
- height: 40px;
- background: rgba(49, 212, 134, 0.2);
- border-radius: 240px;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- padding: 0;
- margin: 0;
- margin-bottom: 10px;
- list-style: none;
- > li {
- height: 40px;
- width: 100px;
- text-align: center;
- font-style: normal;
- font-weight: bold;
- font-size: 14px;
- line-height: 40px;
- color: #19b068;
- cursor: pointer;
- &.active {
- background: #19b068;
- border-radius: 240px;
- color: #ffffff;
- }
- }
- }
- }
- .answerShow {
- position: absolute;
- right: 20px;
- top: 20px;
- width: 112px;
- height: 40px;
- background: #ffffff url("../assets/common/icon-eye-close.png") 16px center
- no-repeat;
- background-size: 16px;
- border: 1px solid rgba(44, 44, 44, 0.15);
- box-sizing: border-box;
- border-radius: 4px;
- font-size: 14px;
- line-height: 150%;
- color: #000000;
- padding: 9px 16px 9px 36px;
- cursor: pointer;
- z-index: 2;
- &.answerShowTrue {
- background: #f5f5f5 url("../assets/common/icon-eye-open.png") 16px center
- no-repeat;
- background-size: 16px;
- }
- }
- }
- </style>
- <style lang="scss">
- .GCLS-BOOK-Container{
- .screen-full {
- position: fixed;
- right: 30px;
- bottom: 30px;
- width: 48px;
- height: 48px;
- background: rgba(0, 0, 0, 0.4) url("../assets/common/icon-screenFull.png")
- center no-repeat;
- background-size: 32px;
- }
- }
- .title-box {
- .el-switch {
- position: absolute;
- top: 0;
- right: 0px;
- border: 1px solid rgba(44, 44, 44, 0.15);
- border-radius: 40px;
- height: 40px;
- padding: 6px 6px 6px 16px;
- }
- .el-switch__label.is-active {
- color: #000000;
- font-size: 16px;
- }
- }
- </style>
|