litian
2024-05-11 576fbe7418510c9f442fe93100db93445fcf3964
修改
1个文件已删除
6个文件已修改
5个文件已添加
730 ■■■■ 已修改文件
electron/config.ts 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/App.vue 175 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/images/operation/baidu-b.png 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/images/operation/baidu.png 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/images/operation/xuanzhong1.png 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/js/config.ts 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/assets/main.css 42 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/router/index.ts 9 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/child.vue 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/components/dictionary.vue 94 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/home.vue 377 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
vite.config.ts 9 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
electron/config.ts
@@ -1,4 +1,5 @@
// 测试
export const ctx = "http://182.92.203.7:3001";
// export const ctx = "http://182.92.203.7:3001";
export const ctx = "https://jsek.bnuic.com";
export const downloaderFileCtx = "http://182.92.203.7:3007/DigitalTextbookReader";
src/App.vue
@@ -23,94 +23,99 @@
const downloadTask = useDownloadTask()
const ExportTask = useExportTask()
window.electronAPI.onLogout((data) => {
  localStorage.clear()
if (window.electronAPI) {
  window.electronAPI.onLogout((data) => {
    localStorage.clear()
    router.replace({
      path: '/login'
    })
  })
  window.electronAPI.onOpenUrl((data) => {
    let taskInfo = null
    let downloadInfo = decodeURI(data)
    console.log(downloadInfo, '接受到的taskInfo')
    try {
      taskInfo = JSON.parse(downloadInfo)
    } catch (error) {
      taskInfo = null
    }
    if (taskInfo) {
      router.replace({
        path: '/transmission'
      })
      window.electronAPI.newDownloadTask(taskInfo)
    }
  })
  // 绑定消息提醒
  window.electronAPI.onShowMessage((data) => {
    // 获取到消息后修改全局数据,页面监听全局数据进行变化
    if (data.showType) {
      switch (data.showType) {
        case 'DownloadTask':
          downloadTask.setMsgData(data)
          break
        case 'ExportTask':
          ExportTask.setMsgData(data)
          break
      }
    } else {
      downloadTask.setMsgData(data)
    }
  })
  // 绑定下载任务变化更新
  window.electronAPI.onDownloadTaskChange((task) => {
    downloadTask.setUpdateList()
  })
  // 绑定导出任务变化更新
  window.electronAPI.onExportTaskChange((task) => {
    ExportTask.setUpdateList()
  })
  const showUpdateInfo = ref(false)
  const updateDownloadInfo = ref()
  // 监听程序更新下载
  window.electronAPI.onUpdateDownloadProgress((data) => {
    showUpdateInfo.value = true
    console.log(data, 'updateDownloadInfo')
    updateDownloadInfo.value = data
  })
  // 监听程序更新下载完成
  window.electronAPI.onUpdateDownloadSuccess((data) => {
    showUpdateInfo.value = false
    ElMessageBox.confirm('检测到新版本,安装包已下载完成,是否立即更新?', '检查更新', {
      confirmButtonText: '更新',
      cancelButtonText: '取消',
      type: 'warning'
    })
      .then(() => {
        window.electronAPI.updateApp()
      })
      .catch(() => {})
  })
}
const token = localStorage.getItem('token')
if (token) {
  router.replace({
    path: '/home'
  })
  // request({
  //   url: '/identity/User/GetCurrentUser',
  //   method: 'post'
  // }).then((res) => {
  //   // console.log(res)
  // })
} else {
  router.replace({
    path: '/login'
  })
})
window.electronAPI.onOpenUrl((data) => {
  let taskInfo = null
  let downloadInfo = decodeURI(data)
  console.log(downloadInfo, '接受到的taskInfo')
  try {
    taskInfo = JSON.parse(downloadInfo)
  } catch (error) {
    taskInfo = null
  }
  if (taskInfo) {
    router.replace({
      path: '/transmission'
    })
    window.electronAPI.newDownloadTask(taskInfo)
  }
})
// 绑定消息提醒
window.electronAPI.onShowMessage((data) => {
  // 获取到消息后修改全局数据,页面监听全局数据进行变化
  if (data.showType) {
    switch (data.showType) {
      case 'DownloadTask':
        downloadTask.setMsgData(data)
        break
      case 'ExportTask':
        ExportTask.setMsgData(data)
        break
    }
  } else {
    downloadTask.setMsgData(data)
  }
})
// 绑定下载任务变化更新
window.electronAPI.onDownloadTaskChange((task) => {
  downloadTask.setUpdateList()
})
// 绑定导出任务变化更新
window.electronAPI.onExportTaskChange((task) => {
  ExportTask.setUpdateList()
})
const showUpdateInfo = ref(false)
const updateDownloadInfo = ref()
// 监听程序更新下载
window.electronAPI.onUpdateDownloadProgress((data) => {
  showUpdateInfo.value = true
  console.log(data, 'updateDownloadInfo')
  updateDownloadInfo.value = data
})
// 监听程序更新下载完成
window.electronAPI.onUpdateDownloadSuccess((data) => {
  showUpdateInfo.value = false
  ElMessageBox.confirm('检测到新版本,安装包已下载完成,是否立即更新?', '检查更新', {
    confirmButtonText: '更新',
    cancelButtonText: '取消',
    type: 'warning'
  })
    .then(() => {
      window.electronAPI.updateApp()
    })
    .catch(() => {})
})
const token = localStorage.getItem('token')
// if (token) {
//   request({
//     url: '/identity/User/GetCurrentUser',
//     method: 'post'
//   }).then((res) => {
//     // console.log(res)
//   })
// } else {
//   router.replace({
//     path: '/login'
//   })
// }
}
</script>
<style>
src/assets/images/operation/baidu-b.png
src/assets/images/operation/baidu.png
src/assets/images/operation/xuanzhong1.png
src/assets/js/config.ts
New file
@@ -0,0 +1,6 @@
// 测试
export const ctx = "http://182.92.203.7:3001";
export const downloaderFileCtx = "http://182.92.203.7:3007/DigitalTextbookReader";
export const ctxUrl = "http://182.92.203.7:3007"; //服务器地址
export const requestCtx = "https://jsek.bnuic.com"; //jsek
src/assets/main.css
@@ -37,6 +37,36 @@
  cursor: pointer;
}
/* 设置 */
.settingBox{
  .inline{
    display: flex;
    justify-content: space-between;
  }
  .lineTypeBox{
    width:190px;
    padding:0 !important;
    .typeItem{
      line-height:16px;
    }
  }
  .bgColor{
    display: flex;
    width: 190px;
    .flex1 {
      flex: 1;
      .scribeItem {
        width: 30px;
        height: 30px;
        border-radius: 5px;
        border: 1px solid;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    }
  }
}
/* 画笔工具 */
.popinnerBox .brush {
  display: flex;
@@ -92,12 +122,12 @@
  text-align: center;
  flex: 1;
}
.popinnerBox .lineStyle .lineTypeBox {
.lineStyle .lineTypeBox {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}
.popinnerBox .lineStyle .lineTypeBox .typeItem {
.lineStyle .lineTypeBox .typeItem {
  flex: 1;
  padding: 5px 20px;
  border-radius: 5px;
@@ -105,18 +135,18 @@
  margin: 0 5px;
  position: relative;
}
.popinnerBox .lineStyle .lineTypeBox .typeItem .solid {
.lineStyle .lineTypeBox .typeItem .solid {
  border: 1px solid #707070;
  margin: 7px auto;
}
.popinnerBox .lineStyle .lineTypeBox .typeItem .dashed {
.lineStyle .lineTypeBox .typeItem .dashed {
  border: 1px dashed #707070;
  margin: 7px auto;
}
.popinnerBox .lineStyle .lineTypeBox .lineTypeActive {
.lineStyle .lineTypeBox .lineTypeActive {
  border: 1px solid #0093ff;
}
.popinnerBox .lineStyle .lineTypeBox .lineTypeActive .activeIcon {
.lineStyle .lineTypeBox .lineTypeActive .activeIcon {
  width: 12px;
  height: 11px;
  background: #0093ff;
src/router/index.ts
@@ -23,11 +23,16 @@
          path: '/home',
          name: 'home',
          meta: { auth: true },
          component: Home,
          component: Home
        },
        {
          path: '/dictionary',
          name: 'dictionary',
          meta: { auth: true },
          component: () =>import('@/views/components/dictionary.vue')
        }
      ]
    }
  ]
})
src/views/child.vue
File was deleted
src/views/components/dictionary.vue
New file
@@ -0,0 +1,94 @@
<template>
  <div>
    <div class="searchBox">
      <el-input class="custom-input" placeholder="请输入内容" v-model="searchContent">
        <template #suffix>
          <el-icon @click="getSearchResult" class="hover"><Search /></el-icon>
        </template>
      </el-input>
    </div>
    <div class="resultBox">
      <div v-for="result in searchResult" :key="result.id">
        <div class="phone_con">
        <div class="per-phone">英/<span>{{result.ukPhone}}</span>/</div>
        <div class="per-phone">美/<span>{{result.usPhone}}</span>/</div>
        </div>
      </div>
    </div>
  </div>
</template>
<script setup lang="ts">
import { ref, reactive, watch, onMounted, inject } from 'vue'
const request = inject('request')
const props = defineProps({
  searchCon: Boolean
})
const searchContent = ref('')
const isFull = ref(false)
watch(props, (newValue) => {
  // 统监听props的值变化,动态修改isShow的值
  searchContent.value = newValue.searchCon
})
const searchResult = ref([])
const getSearchResult = () => {
  if (searchContent.value) {
    request({
      url: '/edu/api/FindWords',
      method: 'post',
      data: {
        word: searchContent.value,
        isFull: isFull.value
      }
    }).then((res) => {
      console.log(JSON.parse(res[0].sentence)[0].sCn)
      // encodeURIComponent(res[0].syno[0].tran)
      if (res.length > 0) {
        searchResult.value = res
      }
    })
  }
}
</script>
<style lang="less">
.searchBox {
  width: 400px;
  margin: 0 auto;
  .custom-input {
    height: 40px;
    .el-input__wrapper {
      border-radius: 10px;
      width: 100%;
    }
    .multiselect__single {
      background: none;
      color: #2a2b2e;
      font-size: 0.15rem;
      font-weight: 500;
      margin-bottom: 8px;
      padding-left: 5px;
    }
  }
}
.resultBox{
  .phone_con{
    .per-phone{
      width:150px;
      align-items: center;
      background: #f4f5f7;
      border-radius: 15px;
      box-sizing: border-box;
      color: #666;
      display: flex;
      font-weight: 500;
      margin-right: 10px;
      margin-top: 10px;
      // max-width: 100%;
      padding: 8px 10px;
    }
  }
}
</style>
src/views/home.vue
@@ -1,6 +1,7 @@
<template>
  <div class="homeBox">
    <div class="headerBox">
      <!-- <span class="logoTxt">北京师范大学出版集团</span> -->
      <img :src="logo" />
      <div class="userInfoBox">
        <div></div>
@@ -24,14 +25,58 @@
        </div>
        <div class="reload hover" @click="reload()">刷新</div>
        <!-- 设置 -->
        <el-popover placement="right" :width="200" trigger="click">
        <el-popover placement="right" :width="300" trigger="click">
          <div class="settingBox">
            <el-form :model="settingForm" label-width="auto" style="max-width: 400px">
              <el-form-item label="答题音效">
                <el-switch v-model="settingForm.acoustics" />
              <el-form-item label="字体大小">
                <div class="lineStyle">
                  <div class="lineTypeBox">
                    <div
                      v-for="item in settingForm.fontSizeList"
                      :key="item.key"
                      :class="
                        settingForm.fontSizeActive == item.key
                          ? 'typeItem lineTypeActive'
                          : 'typeItem'
                      "
                      @click="fontSizeSelect(item)"
                    >
                      {{ item.lable }}
                      <div class="activeIcon" v-if="settingForm.fontSizeActive == item.key">
                        <img :src="xuanzhong" />
                      </div>
                    </div>
                  </div>
                </div>
              </el-form-item>
              <el-form-item label="答题动画">
                <el-switch v-model="settingForm.animation" />
              <div class="inline">
                <el-form-item label="答题音效">
                  <el-switch v-model="settingForm.acoustics" />
                </el-form-item>
                <el-form-item label="答题动画">
                  <el-switch v-model="settingForm.animation" />
                </el-form-item>
              </div>
              <el-form-item label="底色">
                <div class="bgColor">
                  <div
                    v-for="item in settingForm.bgColorList"
                    :key="item.key"
                    class="flex1 hover"
                    @click="bgColorSelect(item)"
                  >
                    <div
                      :style="{
                        background: item.key,
                        'border-color':
                          item.key == settingForm.bgColorActive ? '#0093FF' : '#EBEBEB'
                      }"
                      class="scribeItem"
                    >
                      <img :src="xuanzhong1" v-if="item.key == settingForm.bgColorActive" />
                    </div>
                  </div>
                </div>
              </el-form-item>
            </el-form>
          </div>
@@ -101,7 +146,7 @@
                  <div class="title">
                    <div class="title-con">
                      <div class="border-left" :style="{ 'border-right-color': item.color }"></div>
                      <span>{{ item.createDate }}{{item.color}}</span>
                      <span>{{ item.createDate }}</span>
                    </div>
                    <div>
                      <img :src="bianji" @click="update(item, 'note')" />
@@ -112,7 +157,7 @@
                    class="noteText hover"
                    @click="jumpContent('note' + index)"
                    :style="{
                      'background':
                      background:
                        item.color == '#F5E12A'
                          ? 'rgba(255,234,41,0.1)'
                          : item.color == '#76F0AE'
@@ -165,7 +210,7 @@
            <div class="inputBox" v-if="!searchShow">
              <el-input class="custom-input" placeholder="请输入内容" v-model="searchText">
                <template #prefix>
                  <el-icon @click="searchBook"><Search /></el-icon>
                  <el-icon @click="searchBook" class="hover"><Search /></el-icon>
                </template>
              </el-input>
            </div>
@@ -174,11 +219,12 @@
            <div v-if="resourceDataList.length > 0" class="resourceList">
              <el-row :gutter="20">
                <el-col :span="12" v-for="(item, index) in resourceDataList" :key="item">
                  <div class="resourceItem hover">
                  <div class="resourceItem hover" @click="goResourceDetail(item)">
                    <div class="resourceImg">
                      <img :src="video" mode="" />
                    </div>
                    <div class="rName" @click="goResourceDetail(item)">{{ item.name }}</div>
                    <div class="rName" v-if="searchText !=''" v-html="item.name"></div>
                    <div class="rName" v-else>{{ item.name }}</div>
                  </div>
                </el-col>
              </el-row>
@@ -206,7 +252,10 @@
                class="captureItem"
                @click="getCapture(item)"
              >
                <img :src="item.imgUrl" class="capture" mode="aspectFill" />
                <div class="imgBox">
                  <img :src="item.imgUrl" class="capture" mode="aspectFill" />
                </div>
                <div class="captureName">{{ item.name }}</div>
              </div>
            </div>
            <div v-else>
@@ -269,7 +318,7 @@
      <!-- 教学组件 -->
      <div class="toolBox">
        <div class="toolTitle">
          教学组件
          <span>{{ toolState.open ? '教学组件' : '组件' }}</span>
          <div class="text"></div>
        </div>
        <div class="menuList">
@@ -348,7 +397,7 @@
                  ? 200
                  : 250
            "
            trigger="hover"
            trigger="click"
            v-if="
              floatingToolData.activeToolData == '画笔' ||
              floatingToolData.activeToolData == '清除' ||
@@ -500,7 +549,7 @@
            @click="clickSelect(item)"
          >
            <div :style="{ background: item.key }" class="scribeItem">
              <img :src="xuanzhong" v-if="item.key == colorActive" />
              <img :src="xuanzhong1" v-if="item.key == colorActive" />
            </div>
          </div>
        </div>
@@ -520,7 +569,7 @@
      </div>
    </div>
  </div>
  <el-dialog title="资源" align-center v-model="resourVisble" width="840">
  <el-dialog title="资源" align-center v-model="resourVisble" width="845" class="resourDialog">
    <div class="videoBox" v-if="resourType == 'video'">
      <video controls object-fit="fill" :src="testVideo"></video>
    </div>
@@ -568,9 +617,33 @@
    width="60%"
    :closeOnClickModal="false"
    title="图片"
    class="resourDialog"
  >
    <div class="imgUrlBox">
      <img :src="imgUrl" mode="aspectFill" />
    </div>
  </el-dialog>
  <el-dialog
    title="保存截图"
    align-center
    v-model="screenshotVisble"
    :before-close="screenshotClose"
    width="400"
    class="resourDialog"
  >
    <div class="formBox">
      <el-input v-model="nameData" placeholder="请输入截图名称"></el-input>
    </div>
    <template #footer>
      <span class="dialog-footer">
        <el-button @click="screenshotClose">取 消</el-button>
        <el-button type="primary" @click="addScreenshot">确 定</el-button>
      </span>
    </template>
  </el-dialog>
  <el-dialog title="百度百科" align-center v-model="baiduVisible" width="60%" class="myDialogs">
    <div class="wendabox">
      <iframe :src="'https://baike.baidu.com/item/'+ selectText" frameborder="0"></iframe>
    </div>
  </el-dialog>
  <el-dialog title="AI智能问答" align-center v-model="wendaVisible" width="26%" class="myDialogs">
@@ -580,7 +653,8 @@
  </el-dialog>
  <el-dialog title="词典" align-center v-model="cidianVisible" width="60%" class="myDialogs">
    <div class="wendabox">
      <iframe src="https://www.vocabulary.com/" frameborder="0"></iframe>
      <!-- <iframe src="https://www.vocabulary.com/" frameborder="0"></iframe> -->
      <dictionary :searchCon="selectText" />
    </div>
  </el-dialog>
  <el-dialog
@@ -608,6 +682,7 @@
<script setup lang="ts">
import { ref, reactive, watch, onMounted, inject } from 'vue'
import { ctxUrl } from '@/assets/js/config'
import { useRouter, useRoute } from 'vue-router'
import useClipboard from 'vue-clipboard3'
const { toClipboard } = useClipboard()
@@ -617,6 +692,7 @@
//获取当前路由的信息
let route = useRoute()
import moment from 'moment'
import dictionary from '@/views/components/dictionary.vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import logo from '@/assets/images/header/logo.png'
import mulu from '@/assets/images/menu/mulu.png'
@@ -683,9 +759,12 @@
import AIyuedu1 from '../assets/images/operation/AIyuedu-b.png'
import cidian2 from '../assets/images/operation/cidian.png'
import cidian1 from '../assets/images/operation/cidian-b.png'
import baidu from '../assets/images/operation/baidu.png'
import baidu1 from '../assets/images/operation/baidu-b.png'
import yuyinyuedu from '../assets/images/operation/yuyinyuedu.png'
import yuyinyuedu1 from '../assets/images/operation/yuyinyuedu-b.png'
import xuanzhong from '../assets/images/operation/xuanzhong.png'
import xuanzhong1 from '../assets/images/operation/xuanzhong1.png'
import zoomIn from '../assets/images/operation/zoomIn.png'
import zoomOut from '../assets/images/operation/zoomOut.png'
@@ -705,7 +784,9 @@
import { fabric } from 'fabric'
const canvasWith = ref(1000)
const canvasheight = ref(3000)
const screenWidth = ref(
  window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth
)
onMounted(() => {
  // canvasWith.value = window.innerWidth - 540
  // canvasheight.value = window.innerHeight - 110
@@ -719,12 +800,33 @@
  //   canvasWith.value = document.getElementById('container').offsetWidth
  //   canvasheight.value = document.getElementById('container').offsetHeight
  // }, 5000)
  if (screenWidth.value < 1180) {
    menuState.open = false
    toolState.open = false
  }
  window.onresize = () => {
    return (() => {
      screenWidth.value =
        window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth
    })()
  }
})
watch(
  () => screenWidth.value,
  (val) => {
    screenWidth.value = val
    if (screenWidth.value < 1180) {
      menuState.open = false
      toolState.open = false
    }
  }
)
//获取目录
const catalogueData = ref([])
const getCatalogueData = () => {
  axios
    .get('http://182.92.203.7:3007/books/test/information.json')
    .get(ctxUrl + '/books/test/information.json')
    .then(function (response) {
      var json = response.data
      // 处理获取到的json数据
@@ -777,7 +879,7 @@
const testWord = ref('') //word链接
const getResourceData = () => {
  axios
    .get('http://182.92.203.7:3007/books/test/resource.json')
    .get(ctxUrl + '/books/test/resource.json')
    .then(function (response) {
      var json = response.data
      // 处理获取到的json数据
@@ -795,20 +897,19 @@
}
const goResourceDetail = (data) => {
  console.log(data, 23)
  resourVisble.value = true
  resourType.value = data.type
  if (data.type == 'video') {
    testVideo.value = 'http://182.92.203.7:3007/books/test/resourceData/' + data.name
    testVideo.value = ctxUrl + '/books/test/resourceData/' + data.name
  } else if (data.type == 'word') {
    testWord.value = 'http://182.92.203.7:3007/books/test/resourceData/' + data.name
    testWord.value = ctxUrl + '/books/test/resourceData/' + data.name
  }
}
const classifyClick = (item) => {
  activeClassify.value = item.key
  resourceDataList.value = []
  searchText.value = ''
  switch (item.key) {
    case 'image':
      resourceDataList.value = resourceData.value.imgList
@@ -899,9 +1000,50 @@
})
const settingForm = reactive({
  fontSizeList: [
    {
      lable: '小',
      key: '14'
    },
    {
      lable: '中',
      key: '16'
    },
    {
      lable: '大',
      key: '20'
    }
  ],
  fontSizeActive: '16',
  acoustics: false,
  animation: false
  animation: false,
  bgColorList: [
    {
      lable: '黄',
      key: '#FBF9F4'
    },
    {
      lable: '绿',
      key: '#F2FFF7'
    },
    {
      lable: '紫',
      key: '#F6F4FC'
    },
    {
      lable: '粉',
      key: '#FFFAF9'
    }
  ],
  bgColorActive: '#FBF9F4'
})
const fontSizeSelect = (item) => {
  settingForm.fontSizeActive = item.key
}
const bgColorSelect = (item) => {
  settingForm.bgColorActive = item.key
}
//笔记颜色筛选
const searchClick = (item) => {
  if (item != 'all') {
@@ -914,6 +1056,22 @@
const searchBook = async () => {
  if (activeMenu.value == 1) {
    getNotesList()
  }
  if (activeMenu.value == 2) {
    let dataList = JSON.parse(JSON.stringify(resourceDataList.value))
    if (searchText.value) {
      resourceDataList.value = []
      searchText.value = searchText.value.replace(/^\s*|\s*$/g, '')
      let text = searchText.value.replace(/^\s*|\s*$/g, '')
      dataList.forEach((item) => {
        if (item.name.indexOf(text) > -1) {
          let replaceStr = "<span style='background:#F5E12A'>" + text + '</span>'
          let htmlStr = item.name.split(text).join(replaceStr)
          item.name = '<p>' + htmlStr + '</p>'
          resourceDataList.value.push(item)
        }
      })
    }
  }
}
@@ -964,6 +1122,7 @@
    icon: moxinggongju
  }
])
const baiduVisible = ref(false)
const wendaVisible = ref(false)
const cidianVisible = ref(false)
const functionVisible = ref(false)
@@ -1123,7 +1282,9 @@
const nameRef = ref()
const imgUrl = ref()
const confirmDialog = ref<Boolean>(false)
const nameData = ref({ name: '' })
const screenshotVisble = ref<Boolean>(false)
const nameData = ref('') //截图名称
const urlData = ref('') //截图base64
const screenshotList = ref([])
//浮窗工具栏点击事件
@@ -1205,36 +1366,42 @@
}
//确认回调
const callback = (val: any) => {
  ElMessageBox.confirm('确认要保存截图?', '提示', {
    confirmButtonText: '确认',
    cancelButtonText: '取消'
  })
    .then(() => {
      screenshotList.value.push({
        createDate: new Date(),
        imgUrl: val.base64
      })
      request({
        url: '/identity/api/ApiAppUserSetKey',
        method: 'post',
        data: {
          setKeyRequests: [
            {
              domain: 'screenshot',
              key: '2358',
              value: JSON.stringify(screenshotList.value)
            }
          ]
        }
      }).then((res) => {
        getScreenshotList()
      })
    })
    .catch(() => {})
  screenshotVisble.value = true
  urlData.value = val.base64
}
//取消回调
const closeFn = (base64: any) => {
  console.log(base64)
}
const addScreenshot = () => {
  if (nameData.value) {
    screenshotList.value.push({
      createDate: new Date(),
      imgUrl: urlData.value,
      name: nameData.value
    })
    request({
      url: '/identity/api/ApiAppUserSetKey',
      method: 'post',
      data: {
        setKeyRequests: [
          {
            domain: 'screenshot',
            key: '2358',
            value: JSON.stringify(screenshotList.value)
          }
        ]
      }
    }).then((res) => {
      getScreenshotList()
      screenshotVisble.value = false
    })
  } else {
    ElMessage.error('截图名称不能为空!')
  }
}
const screenshotClose = () => {
  screenshotVisble.value = false
}
const getScreenshotList = () => {
@@ -1292,7 +1459,6 @@
    const node = window.getSelection()
    let html = node.anchorNode.parentNode.parentNode
    dialogToolData.chapter = html.firstChild.innerHTML
    console.log(dialogToolData.chapter)
    if (txt) {
      showToolBox.value = true
      dialogToolData.top = e.y
@@ -1318,8 +1484,9 @@
  { icon: biji2, activeIcon: biji1, name: '笔记' },
  { icon: biaozhu2, activeIcon: biaozhu3, name: '标注' },
  { icon: fuzhi, activeIcon: fuzhi1, name: '复制' },
  { icon: AIyuedu, activeIcon: AIyuedu1, name: 'AI阅读' }
  // { icon: cidian2, activeIcon: cidian1, name: '词典' },
  { icon: AIyuedu, activeIcon: AIyuedu1, name: 'AI阅读' },
  { icon: cidian2, activeIcon: cidian1, name: '词典' },
  { icon: baidu, activeIcon: cidian1, name: '百科' }
  // { icon: yuyinyuedu, activeIcon: yuyinyuedu1, name: '语音阅读' }
  // { icon: cidian2, activeIcon: cidian1, name: '翻译' }
])
@@ -1395,7 +1562,7 @@
      dialogToolList[6].icon = cidian1
      break
    case 7:
      dialogToolList[7].icon = yuyinyuedu1
      dialogToolList[7].icon = baidu1
      break
  }
}
@@ -1425,7 +1592,7 @@
      dialogToolList[6].icon = cidian2
      break
    case 7:
      dialogToolList[7].icon = yuyinyuedu
      dialogToolList[7].icon = baidu
      break
  }
}
@@ -1467,6 +1634,9 @@
    case '词典':
      cidianVisible.value = true
      break
    case '百科':
      baiduVisible.value = true
      break
  }
}
@@ -1478,7 +1648,6 @@
      selectText: selectText.value,
      color: colorActive.value,
      chapter: dialogToolData.chapter,
      color: item.key,
      createDate: new Date()
    })
    request({
@@ -1506,7 +1675,6 @@
      selectText: selectText.value,
      color: colorActive.value,
      chapter: dialogToolData.chapter,
      color: item.key,
      createDate: new Date()
    })
    request({
@@ -1586,6 +1754,7 @@
    }
  }).then((res) => {
    if (res && res.length > 0 && res[0].value) {
      scribeData.loading = false
      dialogToolData.notesList = JSON.parse(res[0].value)
      let list = JSON.parse(res[0].value)
      let textDom1 = document.getElementById('container')
@@ -1623,8 +1792,8 @@
          textDom1.innerHTML = rHtml1
        })
      }
      scribeData.loading = false
    }
  })
}
//划线
@@ -1833,9 +2002,10 @@
  }
}
const layoutBtn =() =>{
const layoutBtn = () => {
  localStorage.clear()
  router.push('/')
  console.log(888)
  router.push('/login')
}
</script>
@@ -1843,7 +2013,7 @@
.homeBox {
  width: 100%;
  height: 100%;
  background: #8cabeb;
  background: #87ccff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
@@ -1857,9 +2027,9 @@
    display: flex;
    justify-content: space-between;
    align-items: center;
    p {
    .logoTxt {
      font-size: 24px;
      color: #ffffff;
      color: #333;
      letter-spacing: 2px;
      font-weight: bold;
    }
@@ -2135,12 +2305,26 @@
          flex-wrap: wrap;
          justify-content: space-between;
          .captureItem {
            border: 1px solid #d8d8d8;
            margin-bottom: 10px;
            width: 46%;
            .capture {
            .imgBox {
              border: 1px solid #d8d8d8;
              width: 100%;
              height: 80px;
              margin-bottom: 5px;
            }
            // .capture {
            //   width: 100%;
            // }
            .captureName {
              height: 20px;
              line-height: 20px;
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 1;
              overflow: hidden;
              text-overflow: ellipsis;
              color: #000;
            }
          }
        }
@@ -2356,7 +2540,7 @@
        position: absolute;
        line-height: 22px;
        top: 50%;
        right: 65px;
        right: 50px;
        text-align: center;
        box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.16);
        img {
@@ -2365,7 +2549,7 @@
        }
      }
      .right {
        right: 174px !important;
        right: 184px !important;
        border-radius: 0px 3px 3px 0px !important;
      }
      .classRoomBox {
@@ -2532,16 +2716,18 @@
    height: 100%;
  }
}
.myNoteDialogs {
  width: 400px !important;
}
.myDialogs {
  width: 628px;
.myDialogs,
.myNoteDialogs,
.resourDialog {
  padding: 0 !important;
  border-radius: 10px !important;
  overflow: hidden;
  .el-dialog__header {
    padding: 15px;
    margin-right: 0;
    border-bottom: 1px solid #f4f4f4;
    padding: 10px;
    text-align: center;
    background: #f4f5f9;
  }
  .el-dialog__title {
@@ -2550,37 +2736,23 @@
  }
  .el-dialog__headerbtn {
    top: 6px;
    right: 6px;
  }
  .el-dialog__footer {
    padding: 15px;
    border-top: 1px solid #f4f4f4;
  }
  .myDialogs-footer {
    .el-button {
      padding: 0 20px;
    }
  }
}
.myNoteDialogs {
  padding: 0 !important;
  border-radius: 10px !important;
  overflow: hidden;
  .el-dialog__header {
    padding: 10px;
    text-align: center;
    background: #f4f5f9;
  }
  .el-dialog__headerbtn {
    top: 0px !important;
    right: 0px !important;
  }
  .el-dialog__body {
    padding: 20px !important;
  }
  .el-dialog__footer {
    padding: 10px 20px 20px !important;
    text-align: right;
    box-sizing: border-box;
  }
}
.myDialogs {
  width: 628px;
}
.myNoteDialogs {
  width: 500px !important;
}
.noteColorSelectBox {
  margin-top: 10px;
@@ -2609,5 +2781,8 @@
.imgUrlBox {
  width: 100%;
  text-align: center;
  img {
    width: 100%;
  }
}
</style>
vite.config.ts
@@ -6,12 +6,13 @@
// https://vitejs.dev/config/
export default defineConfig({
  base:"./",
  plugins: [
    vue(),
    electron({
      // 配置 Electron 入口文件
      entry: 'electron-commonJS/main.js'
    }),
    // electron({
    //   // 配置 Electron 入口文件
    //   entry: 'electron-commonJS/main.js'
    // }),
  ],
  resolve: {
    alias: {