12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007 |
- <!-- -->
- <template>
- <div class="Big-Book-container adult-book-input-sty">
- <Header />
- <div class="Big-Book-content">
- <div class="content-tree">
- <Catelog
- :book-id="bookId"
- :book-level="bookLevel"
- :book-node-index="bookIndex"
- :change-id="changeId"
- />
- </div>
- <div class="Book-content" v-if="currentTreeID">
- <div class="Big-Book-save">
- <el-button type="primary" @click="onSave">保 存</el-button>
- <el-button type="danger" @click="onPreview" plain>预 览</el-button>
- </div>
- <el-tabs
- v-model="editableTabsValue"
- type="card"
- editable
- @edit="handleTabsEdit"
- @tab-click="tabClick"
- >
- <el-tab-pane
- v-for="(item, index) in question_list"
- :key="item.name"
- :label="item.title"
- :name="item.name"
- >
- <div class="createTable">
- <el-input
- maxlength="1"
- style="width: 50px"
- v-model="row"
- type="text"
- @input="rowLine('row')"
- />*<el-input
- style="width: 50px"
- v-model="line"
- type="text"
- maxlength="1"
- @input="rowLine('line')"
- />
- <el-button
- @click="createTable"
- style="margin-left: 10px"
- type="primary"
- >增加题</el-button
- >
- </div>
- <div
- v-for="(topic, toindex) in item.cur_fn_data"
- :key="'topic' + toindex + index"
- >
- <p>第{{ toindex + 1 }}题</p>
- <div class="Big-Book-top">
- <span>正标题</span>
- <el-input
- style="width: 80%"
- type="textarea"
- autosize
- placeholder="请输入正标题"
- v-model="topic.z_title"
- @blur="onBlur(topic, 'z_title')"
- ></el-input>
- </div>
- <div class="Big-Book-top">
- <span>副标题</span>
- <el-input
- style="width: 80%"
- type="textarea"
- autosize
- placeholder="请输入副标题"
- v-model="topic.f_title"
- @blur="onBlur(topic, 'f_title')"
- ></el-input>
- </div>
- <div class="Big-Book-top">
- <span>是否有背景色</span>
- <el-radio v-model="topic.is_bg" :label="true">有</el-radio>
- <el-radio v-model="topic.is_bg" :label="false">无</el-radio>
- </div>
- <div class="Big-Book-top">
- <span>是否有背景图</span>
- <el-radio v-model="topic.is_layout" :label="true">有</el-radio>
- <el-radio v-model="topic.is_layout" :label="false">无</el-radio>
- </div>
- <div
- v-for="(rowItem, rowIndex) in topic.table_list"
- :key="'row' + rowIndex + index"
- >
- <div
- v-for="(topicIitem, lineIndex) in rowItem"
- :key="lineIndex"
- >
- <p>{{ topicIitem.text }}</p>
- <div>
- <template
- v-if="
- topicIitem.type == 'article_chs' ||
- (topicIitem.data &&
- topicIitem.data.type == 'article_chs')
- "
- >
- <template v-if="topicIitem.is_edit">
- <ArticleTemChs
- :curQue="topicIitem.data"
- :changeCurQue="changeCurQue"
- />
- </template>
- <template v-else>
- <ArticleView :curQue="topicIitem.data" />
- </template>
- </template>
- <template v-if="topicIitem.type == 'sentence_segword_chs'">
- <template v-if="topicIitem.is_edit">
- <SentenceSegwordChs
- :curQue="topicIitem.data"
- :changeCurQue="changeCurQue"
- />
- </template>
- <template v-else>
- <ArticleView :curQue="topicIitem.data" />
- </template>
- </template>
- <template v-if="topicIitem.type == 'dialogue_article_chs'">
- <template v-if="topicIitem.is_edit">
- <DialogueArticleChs
- :curQue="topicIitem.data"
- :changeCurQue="changeCurQue"
- />
- </template>
- <template v-else>
- <!-- <ArticleView :curQue="topicIitem.que" /> -->
- </template>
- </template>
- <template v-if="topicIitem.type == 'NewWord_chs'">
- <template v-if="topicIitem.is_edit">
- <Neword
- :curQue="topicIitem.data"
- :changeCurQue="changeCurQue"
- />
- </template>
- <template v-else>
- <NewordPhraseview :curQue="topicIitem.data" />
- </template>
- </template>
- <template v-if="topicIitem.type == 'notes_chs'">
- <template v-if="topicIitem.is_edit">
- <Notes
- :curQue="topicIitem.data"
- :changeCurQue="changeCurQue"
- />
- </template>
- <template v-else>
- <NewordPhraseview :curQue="topicIitem.data" />
- </template>
- </template>
- <template v-if="topicIitem.type == 'input_record_chs'">
- <template v-if="topicIitem.is_edit">
- <InputRecord
- :curQue="topicIitem.data"
- :fn_data="fn_data"
- :changeCurQue="changeCurQue"
- />
- </template>
- <template v-else> </template>
- </template>
- <template
- v-if="
- topicIitem.type == 'recordHZ_inputPY_chs' ||
- topicIitem.type == 'inputItem_chs' ||
- topicIitem.type == 'sentence_input' ||
- topicIitem.type == 'sentence_judge' ||
- topicIitem.type == 'sentence_record'
- "
- >
- <template v-if="topicIitem.is_edit">
- <Sentence
- :curQue="topicIitem.data"
- :type="topicIitem.type"
- :fn_data="fn_data"
- :changeCurQue="changeCurQue"
- />
- </template>
- <template v-else> </template>
- </template>
- <template v-if="topicIitem.type == 'upload_control_chs'">
- <template v-if="topicIitem.is_edit">
- <UploadControl
- :curQue="topicIitem.data"
- :type="topicIitem.type"
- :fn_data="fn_data"
- :changeCurQue="changeCurQue"
- />
- </template>
- <template v-else>
- <UploadControlView
- :curQue="topicIitem.data"
- :fn_data="fn_data"
- />
- </template>
- </template>
- <template v-if="topicIitem.type == 'sudoku_chs'">
- <template v-if="topicIitem.is_edit">
- <Sudoku
- :curQue="topicIitem.data"
- :type="topicIitem.type"
- :fn_data="fn_data"
- :changeCurQue="changeCurQue"
- />
- </template>
- <template v-else> </template>
- </template>
- <template v-if="topicIitem.type == 'NumberCombination_chs'">
- <template v-if="topicIitem.is_edit">
- <NumberCombination
- :curQue="topicIitem.data"
- :type="topicIitem.type"
- :fn_data="fn_data"
- :changeCurQue="changeCurQue"
- />
- </template>
- <template v-else> </template>
- </template>
- <template v-if="topicIitem.type == 'toneSelect_chs'">
- <template v-if="topicIitem.is_edit">
- <ToneSelect
- :curQue="topicIitem.data"
- :type="topicIitem.type"
- :fn_data="fn_data"
- :changeCurQue="changeCurQue"
- />
- </template>
- <template v-else> </template>
- </template>
- </div>
- <div
- class="addoption"
- v-if="topicIitem.data && topicIitem.is_edit"
- @click="
- remoeModule(toindex, rowIndex, lineIndex, topicIitem)
- "
- >
- 删除模板
- </div>
- <div
- v-else-if="
- TopicIndex == toindex &&
- RowIndex == rowIndex &&
- lineIndex == LineIndex
- "
- class="addoption"
- >
- 选择模板
- </div>
- <div
- v-if="!topicIitem.data && topicIitem.is_add_module"
- class="addoption"
- @click="addModule(toindex, rowIndex, lineIndex, topicIitem)"
- >
- 添加模板
- </div>
- <template v-if="topicIitem.data">
- <div class="Big-Book-save" v-if="topicIitem.is_edit">
- <el-button
- type="success"
- size="small"
- @click="onSure(topicIitem)"
- >确定</el-button
- >
- </div>
- <div class="Big-Book-save" v-else>
- <el-button
- type="primary"
- size="small"
- @click.stop="editCurQue(topicIitem)"
- >编辑</el-button
- >
- </div>
- </template>
- </div>
- </div>
- </div>
- </el-tab-pane>
- </el-tabs>
- </div>
- <div class="Book-function" v-if="currentTreeID">
- <ul class="function-list">
- <li
- v-for="(item, index) in fn_data"
- :key="'fn' + index"
- @click="selectedFnType(item, index)"
- >
- <el-dropdown v-if="item.list">
- <span class="fn-name">
- {{ item.name }}<i class="el-icon-arrow-down el-icon--right"></i>
- </span>
- <el-dropdown-menu slot="dropdown" trigger="click">
- <el-dropdown-item
- @click.native="selectSmallModule(item, child, index, i)"
- v-for="(child, i) in item.list"
- :key="i"
- >{{ child.name }}</el-dropdown-item
- >
- </el-dropdown-menu>
- </el-dropdown>
- <span v-else class="fn-name">{{ item.name }}</span>
- </li>
- </ul>
- </div>
- </div>
- <el-dialog
- :visible.sync="previewVisible"
- title="预览"
- top="0"
- width="100%"
- @close="handleClosePre"
- >
- <div class="chooseCon">
- <Preview
- :context="context"
- :que-index="queIndex"
- :fatherName="fatherName"
- />
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button @click="handleClosePre">关 闭</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import Header from "@/components/Header.vue";
- import Catelog from "@/components/Adult/inputModules/Catelog";
- import ArticleTemChs from "@/components/Adult/inputModules/ArticleTemChs/index.vue";
- import SentenceSegwordChs from "@/components/Adult/inputModules/SentenceSegwordChs/index.vue";
- import DialogueArticleChs from "@/components/Adult/inputModules/DialogueArticleChs/index.vue";
- import Single from "@/components/Adult/inputModules/Single.vue";
- import Judge from "@/components/Adult/inputModules/Judge.vue";
- import Dialogue from "@/components/Adult/inputModules/Dialogue.vue";
- import MatrixSingle from "@/components/Adult/inputModules/MatrixSingle.vue";
- import MultiRowInput from "@/components/Adult/inputModules/MultiRowInput.vue";
- import Ligature from "@/components/Adult/inputModules/Ligature.vue";
- import Neword from "@/components/Adult/inputModules/Neword.vue";
- import Notes from "@/components/Adult/inputModules/Notes.vue";
- import InputRecord from "@/components/Adult/inputModules/InputRecord.vue";
- import AudioControl from "@/components/Adult/inputModules/AudioControl.vue";
- import SuitchControl from "@/components/Adult/inputModules/SuitchControl.vue";
- import BgControl from "@/components/Adult/inputModules/BgControl.vue";
- import UploadControl from "@/components/Adult/inputModules/UploadControl.vue";
- import TextItem from "@/components/Adult/inputModules/TextItem.vue";
- import Sentence from "@/components/Adult/inputModules/Sentence.vue";
- import Sudoku from "@/components/Adult/inputModules/Sudoku.vue";
- import ToneSelect from "@/components/Adult/inputModules/ToneSelect.vue";
- import NumberCombination from "@/components/Adult/inputModules/NumberCombination.vue";
- import Textdes from "@/components/Adult/inputModules/Textdes.vue";
- import Record from "@/components/Adult/inputModules/Record.vue";
- import Hanzi from "@/components/Adult/inputModules/Hanzi.vue";
- import Picture from "@/components/Adult/inputModules/Picture.vue";
- import Singleview from "@/components/Adult/preview/Single.vue";
- import Judgeview from "@/components/Adult/preview/Judge.vue";
- import Textdesview from "@/components/Adult/preview/Textdes.vue";
- import Hanziview from "@/components/Adult/preview/Hanzi.vue";
- import Pictureview from "@/components/Adult/preview/Picture.vue";
- import Dialogueview from "@/components/Adult/preview/Dialogue.vue";
- import MatrixSingleview from "@/components/Adult/preview/MatrixSingle.vue";
- import MultiRowInputview from "@/components/Adult/preview/MultiRowInput.vue";
- import Ligatureview from "@/components/Adult/preview/Ligature.vue";
- import InputRecordview from "@/components/Adult/preview/InputRecord.vue";
- import BgControlview from "@/components/Adult/preview/BgControl.vue";
- import NewordPhraseview from "@/components/Adult/preview/WordPhrase.vue";
- import UploadControlView from "@/components/Adult/preview/UploadControlView.vue";
- import Preview from "@/components/Adult/Preview.vue";
- import fn from "@/components/Adult/common/data.js";
- import { getContent, getStaticContent } from "@/api/ajax";
- export default {
- components: {
- Header,
- Catelog,
- Single,
- Textdes,
- Record,
- Singleview,
- Textdesview,
- Hanziview,
- Pictureview,
- Preview,
- Hanzi,
- Picture,
- Judge,
- Judgeview,
- Dialogue,
- Dialogueview,
- MatrixSingle,
- MatrixSingleview,
- MultiRowInput,
- MultiRowInputview,
- Ligature,
- Ligatureview,
- Neword,
- Notes,
- InputRecord,
- ArticleTemChs,
- SentenceSegwordChs,
- DialogueArticleChs,
- AudioControl,
- SuitchControl,
- BgControl,
- InputRecordview,
- BgControlview,
- NewordPhraseview,
- UploadControl,
- TextItem,
- Sentence,
- UploadControlView,
- Sudoku,
- NumberCombination,
- ToneSelect,
- },
- data() {
- return {
- bookId: 1,
- bookLevel: "",
- bookIndex: "",
- fn_data: [],
- fn_type: "",
- cur_fn_data: null, //当前模块的数据结构
- cur_page_queIsEdit: [], //当前页数的某个题
- question_list: [
- {
- name: "tab1",
- title: "第1页",
- cur_fn_data: [],
- },
- ], //总的数据列表
- cur_page_que_index: 0,
- editableTabsValue: "tab1",
- tabIndex: 0,
- previewVisible: false,
- context: [],
- queIndex: 0,
- currentTreeID: null,
- row: null, //行
- line: null, //列
- TopicIndex: null, //第几题的索引
- RowIndex: null, //第几行
- LineIndex: null, //第几列
- bgControlX: null, // 背景图插入模板的 x
- bgControlY: null, // 背景图插入模板的 y
- bgControlIndex: null, //插入第几个
- DeletebgControlIndex: null, //删除第几个
- fatherName: "",
- module_type: "",
- tmInde: "",
- };
- },
- computed: {
- getCurrentQuestionView() {
- const function_type = this.fn_type;
- switch (function_type) {
- case "single":
- return Single;
- case "text":
- return Textdes;
- case "record":
- return Record;
- }
- },
- },
- watch: {},
- //方法集合
- methods: {
- // 随意插入模板获取位置
- changeSite(x, y) {
- this.bgControlX = x;
- this.bgControlY = y;
- },
- // 插入索引
- changebgControlIndex(index) {
- this.bgControlIndex = index;
- },
- // 删除索引
- changeDeletebgControlIndex(index) {
- this.DeletebgControlIndex = index;
- },
- rowLine(value) {
- this[value] = this[value].match(/^\d*(\.?\d{0,2})/g)[0] || "";
- },
- createTable() {
- if (this.row && this.line) {
- let arr = {
- z_title: "",
- f_title: "",
- is_bg: false, //是否有背景色
- is_layout: false, // 是不是按背景图布局
- table_list: [],
- };
- for (let i = 0; i < this.row; i++) {
- let rowArr = [];
- for (let j = 0; j < this.line; j++) {
- let obj = {
- text: `第${i + 1}行,第${j + 1}列`,
- is_add_module: true,
- is_edit: true,
- };
- rowArr.push(obj);
- }
- arr.table_list.push(rowArr);
- }
- this.question_list[this.tabIndex].cur_fn_data.push(arr);
- this.row = null;
- this.line = null;
- } else {
- this.$message.warning("请输入行和列");
- }
- },
- // 添加模板
- addModule(topicIndex, rowindex, lineIndex, item) {
- this.TopicIndex = topicIndex;
- this.RowIndex = rowindex;
- this.LineIndex = lineIndex;
- this.question_list.forEach((page) => {
- page.cur_fn_data.forEach((pic) => {
- pic.table_list.forEach((row) => {
- row.forEach((col) => {
- col.is_add_module = true;
- });
- });
- });
- });
- item.is_add_module = false;
- },
- // 删除模板
- remoeModule(topicIndex, rowindex, lineIndex, item) {
- // this.question_list[this.tabIndex].cur_fn_data[topicIndex].tableList[
- // rowindex
- // ][lineIndex].que = null;
- // this.$set(
- // this.question_list[this.tabIndex].cur_fn_data[topicIndex].tableList[
- // rowindex
- // ][lineIndex],
- // "que",
- // null
- // );
- item.type = "";
- item.data = null;
- this.TopicIndex = null;
- this.RowIndex = null;
- this.LineIndex = null;
- item.is_add_module = true;
- },
- handleClosePre() {
- if (window.stopAudioVoice) window.stopAudioVoice();
- if (window.stopAudioAudio) window.stopAudioAudio();
- if (window.stopAudioSound) window.stopAudioSound();
- this.previewVisible = false;
- },
- onBlur(item, field) {
- item[field] = item[field] ? item[field].trim() : "";
- },
- // 当前目录id name 父级name/当前 name
- changeId(id, name, fatherName) {
- this.TopicIndex = null;
- this.RowIndex = null;
- this.LineIndex = null;
- this.fatherName = fatherName;
- this.currentTreeID = id;
- // 根据当前目录切换题
- let MethodName = "book-courseware_manager-GetCoursewareContent";
- let data = {
- id,
- };
- getContent(MethodName, data)
- .then((res) => {
- this.question_list = JSON.parse(res.content);
- this.cur_page_que_index =
- this.question_list[this.tabIndex].cur_fn_data.length - 1;
- })
- .catch((error) => {});
- },
- handleTabsEdit(targetName, action) {
- if (action === "add") {
- let leg = this.question_list.length;
- let obj = {
- name: `tab${leg + 1}`,
- title: `第${leg + 1}页`,
- cur_fn_data: [],
- };
- this.question_list.push(obj);
- }
- if (action === "remove") {
- let tabs = JSON.parse(JSON.stringify(this.question_list));
- let activeName = this.editableTabsValue;
- if (activeName === targetName) {
- tabs.forEach((tab, index) => {
- if (tab.name === targetName) {
- let nextTab = tabs[index + 1] || tabs[index - 1];
- if (nextTab) {
- activeName = nextTab.name;
- }
- }
- });
- }
- this.editableTabsValue = activeName;
- let question_list = tabs.filter((tab) => tab.name !== targetName);
- question_list.map((item, index) => {
- item.name = `tab${index + 1}`;
- item.title = `第${index + 1}页`;
- return item;
- });
- this.question_list = question_list;
- this.TopicIndex = null;
- this.RowIndex = null;
- this.LineIndex = null;
- }
- },
- tabClick(tab) {
- this.tabIndex = tab.index;
- },
- // 大模板
- selectedFnType(item, index) {
- if (item.list) {
- return;
- }
- if (
- Object.prototype.toString.call(this.TopicIndex).indexOf("Number") ==
- -1 &&
- Object.prototype.toString.call(this.LineIndex).indexOf("Number") == -1
- ) {
- this.$message.warning("请先选择添加模板的位置");
- return;
- }
- if (
- this.question_list[this.tabIndex].cur_fn_data[this.TopicIndex]
- .table_list[this.RowIndex][this.LineIndex].data
- ) {
- this.$message.warning("每列只能添加一个模板");
- } else {
- console.log("不存在");
- this.$set(
- this.question_list[this.tabIndex].cur_fn_data[this.TopicIndex]
- .table_list[this.RowIndex][this.LineIndex],
- "type",
- item.type
- );
- this.$set(
- this.question_list[this.tabIndex].cur_fn_data[this.TopicIndex]
- .table_list[this.RowIndex][this.LineIndex],
- "data",
- null
- );
- console.log(this.question_list);
- }
- },
- changeCurQue(data_stru) {
- console.log(this.RowIndex, this.LineIndex);
- this.$set(
- this.question_list[this.tabIndex].cur_fn_data[this.TopicIndex]
- .table_list[this.RowIndex][this.LineIndex],
- "data",
- JSON.parse(JSON.stringify(data_stru))
- );
- console.log(this.question_list);
- },
- // 小模板
- selectSmallModule(item, child, itemIndex, childIndex) {
- console.log("选择了小模版");
- if (
- Object.prototype.toString.call(this.TopicIndex).indexOf("Number") ==
- -1 &&
- Object.prototype.toString.call(this.LineIndex).indexOf("Number") == -1
- ) {
- this.$message.warning("请先选择添加模板的位置");
- return;
- }
- if (
- this.question_list[this.tabIndex].cur_fn_data[this.TopicIndex]
- .table_list[this.RowIndex][this.LineIndex].data
- ) {
- this.$message.warning("每列只能添加一个模板");
- } else {
- this.$set(
- this.question_list[this.tabIndex].cur_fn_data[this.TopicIndex]
- .table_list[this.RowIndex][this.LineIndex],
- "type",
- child.type
- );
- this.$set(
- this.question_list[this.tabIndex].cur_fn_data[this.TopicIndex]
- .table_list[this.RowIndex][this.LineIndex],
- "data",
- null
- );
- }
- },
- //删除某页中一个部分
- deleteCurQue(item, queIndex) {
- item.queList.splice(queIndex, 1);
- },
- saveNewwordAndSentences() {
- let question_list = this.question_list;
- let sentence_list = [],
- new_word_list = [];
- question_list.forEach((item) => {
- item.cur_fn_data.forEach((curItem) => {
- curItem.table_list.forEach((tabItem) => {
- tabItem.forEach((topicIitem) => {
- if (topicIitem.type == "article_chs") {
- topicIitem.data.detail.forEach((item) => {
- sentence_list = sentence_list.concat(item.sentences);
- });
- } else if (topicIitem.type == "NewWord_chs") {
- new_word_list = topicIitem.data.option;
- }
- });
- });
- });
- });
- return {
- new_word_list: new_word_list,
- sentence_list: sentence_list,
- };
- },
- onSave() {
- let question_list_str = JSON.stringify(this.question_list);
- console.log(this.question_list);
- localStorage.setItem("question_list", question_list_str);
- let result = this.saveNewwordAndSentences();
- this.$message.success("保存成功");
- const MethodName = "book-courseware_manager-SaveCoursewareContent";
- let data = {
- id: this.currentTreeID,
- content: JSON.stringify(this.question_list),
- new_word_list: result.new_word_list,
- sentence_list: result.sentence_list,
- };
- getContent(MethodName, data)
- .then((res) => {
- this.$message.success("保存成功!");
- })
- .catch((error) => {});
- },
- async onPreview() {
- let _this = this;
- let question_data = null;
- if (_this.question_list) {
- debugger;
- const question2 = JSON.parse(JSON.stringify(_this.question_list));
- question_data = await _this.getFileUrl_preview(question2);
- _this.previewVisible = true;
- _this.context = question_data;
- console.log("预览数据");
- console.log(this.question_list);
- } else {
- _this.$message.warning("还没有录入数据");
- }
- },
- getFileUrl_preview(question) {
- let questionStr = JSON.stringify(question);
- const reg = /\[FID##(.*?)##FID\]/g;
- let regConArr = [];
- if (reg.test(questionStr)) {
- regConArr = questionStr.match(reg);
- }
- if (regConArr.length > 0) {
- regConArr = regConArr.map((item) => {
- item = item.replace("[FID##", "").replace("##FID]", "");
- return item;
- });
- }
- return new Promise((resolve, reject) => {
- const MethodName = "file_store_manager-GetFileURLMap";
- const data = {
- file_id_list: regConArr,
- };
- getStaticContent(MethodName, data).then((res) => {
- const backData = res.url_map;
- for (const key in backData) {
- const url = backData[key];
- if (questionStr.indexOf(key) > -1) {
- const d = `\\[FID##${key}##FID\\]`;
- const regD = new RegExp(d, "g");
- questionStr = questionStr.replace(regD, url);
- }
- }
- const question3 = JSON.parse(questionStr);
- resolve(question3);
- });
- });
- },
- onSure(curItem) {
- this.TopicIndex = null;
- this.RowIndex = null;
- this.LineIndex = null;
- curItem.is_edit = false;
- },
- onDel(item, curIndex) {
- item.cur_fn_data.splice(curIndex, 1);
- if (this.question_list[this.tabIndex].cur_fn_data.length > 0) {
- this.cur_page_que_index =
- this.question_list[this.tabIndex].cur_fn_data.length - 1;
- } else {
- this.cur_page_que_index = 0;
- }
- // let question_list_str = JSON.stringify(this.question_list);
- // localStorage.setItem("question_list", question_list_str);
- },
- //编辑当前题型
- editCurQue(curItem) {
- curItem.is_edit = true;
- // if (!curItem.isEdit) {
- // let count = 0;
- // let tabIndex = this.tabIndex;
- // let leg = this.question_list[tabIndex].cur_fn_data.length;
- // this.question_list[tabIndex].cur_fn_data.forEach((item) => {
- // if (item.isEdit) {
- // count++;
- // }
- // });
- // if (count == 0) {
- // if (!curItem.isEdit) {
- // curItem.isEdit = true;
- // }
- // } else {
- // this.$message.warning("有题目未保存");
- // }
- // }
- },
- },
- //生命周期 - 创建完成(可以访问当前this实例)
- created() {
- this.fn_data = fn.fnData;
- },
- //生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {
- console.log(this.question_list);
- // let question_list_str = localStorage.getItem("question_list");
- // if (question_list_str) {
- // this.question_list = JSON.parse(question_list_str);
- // this.cur_page_que_index =
- // this.question_list[this.tabIndex].cur_fn_data.length - 1;
- // }
- },
- beforeCreate() {}, //生命周期 - 创建之前
- beforeMount() {}, //生命周期 - 挂载之前
- beforeUpdate() {}, //生命周期 - 更新之前
- updated() {}, //生命周期 - 更新之后
- beforeDestroy() {}, //生命周期 - 销毁之前
- destroyed() {}, //生命周期 - 销毁完成
- activated() {}, //如果页面有keep-alive缓存功能,这个函数会触发
- };
- </script>
- <style lang='scss' scoped>
- //@import url(); 引入公共css类
- .Big-Book-container {
- width: 100%;
- min-height: 100vh;
- .Big-Book-content {
- padding: 26px 0;
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .content-tree {
- width: 280px;
- }
- .Book-content {
- flex: 1;
- box-sizing: border-box;
- padding: 30px;
- height: 859px;
- overflow-y: auto;
- &-inner {
- // width: 860px;
- }
- .addoption {
- width: 148px;
- height: 40px;
- background: #f3f3f3;
- border: 1px dashed rgba(0, 0, 0, 0.15);
- box-sizing: border-box;
- border-radius: 4px;
- text-align: center;
- line-height: 40px;
- cursor: pointer;
- font-size: 14px;
- color: #000000;
- margin-top: 20px;
- }
- .createTable {
- }
- }
- .Big-Book-save {
- width: 860px;
- display: flex;
- justify-content: flex-end;
- padding: 0 0 20px 0;
- }
- .Big-Book {
- &-add {
- position: absolute;
- top: -40px;
- right: 0;
- z-index: 1;
- width: 73px;
- height: 40px;
- background: #f7f7f7;
- border: 1px solid #d9d9d9;
- line-height: 40px;
- text-align: center;
- font-weight: bold;
- font-size: 18px;
- text-align: center;
- color: #000000;
- }
- &-name {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- margin-bottom: 10px;
- > p {
- font-size: 14px;
- }
- }
- &-delete {
- width: 16px;
- height: 16px;
- margin-left: 15px;
- cursor: pointer;
- }
- &-curPage {
- margin-bottom: 20px;
- &.Big-Book-curPage-edit {
- border-top: 1px solid #e0e0e0;
- border-bottom: 1px solid #e0e0e0;
- background-color: #fafafa;
- }
- &.Big-Book-curPage-preview {
- border-top: 1px solid #fff;
- border-bottom: 1px solid #fff;
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- &:hover {
- background-color: #fafafa;
- border-top: 1px solid #e0e0e0;
- border-bottom: 1px solid #e0e0e0;
- }
- }
- }
- &-queBox {
- padding: 10px 0;
- }
- }
- .Book-function {
- width: 204px;
- background: #f7f7f7;
- box-sizing: border-box;
- padding: 30px 16px;
- height: 859px;
- overflow-y: auto;
- .function-list {
- width: 100%;
- > li {
- width: 100%;
- width: 172px;
- height: 40px;
- background: #ffffff;
- border: 1px solid rgba(0, 0, 0, 0.15);
- box-sizing: border-box;
- border-radius: 4px;
- cursor: pointer;
- margin-bottom: 5px;
- display: flex;
- justify-content: center;
- align-items: center;
- > span {
- font-weight: normal;
- font-size: 16px;
- line-height: 150%;
- color: #000000;
- }
- }
- }
- }
- .Big-Book-top {
- margin-top: 20px;
- display: flex;
- align-items: center;
- span {
- margin-right: 10px;
- }
- }
- }
- </style>
|