unknown
2024-05-28 7da1551dc2c60025e18ab3ef0711f815bb8470a5
Merge branch 'master' of http://182.92.203.7:2001/r/testbookLayout
4个文件已修改
65 ■■■■ 已修改文件
src/App.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/books/childHealth/view/content/index.vue 19 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/books/childHealth/view/index.vue 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/examinations/index.vue 29 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/App.vue
@@ -58,10 +58,10 @@
    } else {
      this.activeBook = await this.config.getBookConfig(
        // childHealth
        this.config.resourceCtx + "lifeCare"
        this.config.resourceCtx + "childHealth"
      );
      // 测试试读30页
      // this.activeBook.tryPageCount = 30;
      // this.activeBook.tryPageCount = 10;
      this.config.activeBook = this.activeBook;
      this.config.goodsStore = this.activeBook.storeRefcode;
src/books/childHealth/view/content/index.vue
@@ -1,6 +1,13 @@
<template>
  <div class="page-main" @scroll="throttledScrollHandler">
    <div class="page-content">
    <div
      class="page-content"
      :style="{
        fontSize: fontSize ? fontSize + 'px' : '16px',
        transform: `scale(${pageZoom ? pageZoom : 1})`,
        transformOrigin: 'center top'
      }"
    >
      <pageHeader
        v-if="showCatalogList.indexOf(0) > -1"
        :showPageList="loadPageList"
@@ -104,6 +111,14 @@
      loadPageList: [],
      questionData: {}
    };
  },
  computed: {
    fontSize() {
      return this.$store.state.qiankun.fontSize;
    },
    pageZoom() {
      return this.$store.state.qiankun.scale / 100;
    }
  },
  provide() {
    return {
@@ -464,7 +479,7 @@
            "chapter"
          );
          const catalog = catalogDom.getAttribute("num");
          console.log(page,"page",catalog,"catalog");
          console.log(page, "page", catalog, "catalog");
          // 返回页码和章节信息
          if (this.$store.state.qiankun && this.$store.state.qiankun.pageChange)
            this.$store.state.qiankun.pageChange({
src/books/childHealth/view/index.vue
@@ -2,10 +2,6 @@
  <div
    class="temp-book"
    @mouseup="handleMouseUp"
    :style="{
      fontSize: fontSize ? fontSize + 'px' : '16px',
      transform: `scale(${pageZoom ? pageZoom : 1})`
    }"
  >
    <pageContent></pageContent>
  </div>
@@ -20,14 +16,7 @@
  data() {
    return {};
  },
  computed: {
    fontSize() {
      return this.$store.state.qiankun.fontSize;
    },
    pageZoom() {
      return this.$store.state.qiankun.scale / 100;
    }
  },
  mounted() {},
  methods: {
    getParentWithClass(element, className) {
src/components/examinations/index.vue
@@ -449,11 +449,8 @@
  inject:['changeQuestionData'],
  mounted() {
    this.cardData = this.cardList
  },
  computed:{
    cardLists() {
      return this.props.cardList
    }
    console.log('this.cardList',this.cardList);
    console.log('this.cardData',this.cardData);
  },
  methods: {
    // 数组转为字符串方法
@@ -488,20 +485,19 @@
      }
    },
    redo() {
      for (let index = 0; index < this.cardList.length; index++) {
        const item = this.cardList[index];
      for (let index = 0; index < this.cardData.length; index++) {
        const item = this.cardData[index];
        for (let cindex = 0; cindex < item.infoList.length; cindex++) {
          const citem = item.infoList[cindex];
          citem.userAnswer = "";
          citem.isComplete = false;
        }
      }
      console.log('重做',this.cardList);
    },
    openAnswers() {
      this.$data.loading = true;
      for (let index = 0; index < this.cardList.length; index++) {
        const item = this.cardList[index];
      for (let index = 0; index < this.cardData.length; index++) {
        const item = this.cardData[index];
        for (let cindex = 0; cindex < item.infoList.length; cindex++) {
          const citem = item.infoList[cindex];
          citem.isComplete = true;
@@ -514,7 +510,7 @@
    },
    // 批改题目  (练习,我的做题,我的收藏模式下)
    handleQuestion() {
      const list = this.$props.cardList;
      const list = this.cardData;
      for (let index = 0; index < list.length; index++) {
        const item = list[index];
        for (let cindex = 0; cindex < item.infoList.length; cindex++) {
@@ -559,8 +555,8 @@
          }
        }
      }
      this.$props.cardList = list;
      console.log(this.$props.cardList);
      this.cardData = list;
      console.log(this.cardData);
    },
    getParentWithClass(element, className) {
      while (element.parentElement) {
@@ -584,8 +580,8 @@
        );
        let oldData = oldAnswerData ? JSON.parse(oldAnswerData) : {};
        const asnwerList = [];
        for (let index = 0; index < this.$props.cardList.length; index++) {
          const item = this.$props.cardList[index];
        for (let index = 0; index < this.cardData.length; index++) {
          const item = this.cardData[index];
          for (let cindex = 0; cindex < item.infoList.length; cindex++) {
            const citem = item.infoList[cindex];
            asnwerList.push({
@@ -595,7 +591,8 @@
          }
        }
        if(oldData[pageNum]) {
          oldData[pageNum].push(asnwerList)
          oldData[pageNum] = oldData[pageNum].filter(citem => asnwerList.findIndex(ditem => ditem.id == citem.id) == -1 )
          oldData[pageNum].push(...asnwerList)
        } else {
          oldData[pageNum] = asnwerList
        }