|
@@ -7179,6 +7179,8 @@ import TurndownService from 'turndown';
|
|
|
import JSZip from "jszip";
|
|
|
import evaList from "./evaList.vue";
|
|
|
import MindTask from "./jsmind2";
|
|
|
+import ConvertApi from 'convertapi-js'
|
|
|
+let convertApi = ConvertApi.auth('secret_8jZzewWvAJluEjTR')
|
|
|
|
|
|
var OpenCC = require("opencc-js");
|
|
|
let converter = OpenCC.Converter({
|
|
@@ -10453,7 +10455,7 @@ ${_this.unitJson[0].chapterInfo[0].taskJson[index].taskDetail3.replaceAll('#',''
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- beforeUploadInfo2(event, type, tindex) {
|
|
|
+ async beforeUploadInfo2(event, type, tindex) {
|
|
|
// const loading = this.openLoading();
|
|
|
let file = "";
|
|
|
let cfindex2 = 0;
|
|
@@ -10473,17 +10475,6 @@ ${_this.unitJson[0].chapterInfo[0].taskJson[index].taskDetail3.replaceAll('#',''
|
|
|
var bucket = new window.AWS.S3({ params: { Bucket: "ccrb" } }); //选择桶
|
|
|
var _this = this;
|
|
|
var xianObj = ['DOCX','DOC','PPT','PPTX','MD','TXT','PDF']
|
|
|
- if (
|
|
|
- ['DOC'].indexOf(
|
|
|
- file.name
|
|
|
- .split(".")
|
|
|
- [file.name.split(".").length - 1].toLocaleUpperCase()
|
|
|
- ) !== -1
|
|
|
- ) {
|
|
|
- this.$message.error("抱歉,小可暂时不支持.doc的文件呢");
|
|
|
- this.inputShow = true;
|
|
|
- return;
|
|
|
- }
|
|
|
if (
|
|
|
xianObj.indexOf(
|
|
|
file.name
|
|
@@ -10593,6 +10584,26 @@ ${_this.unitJson[0].chapterInfo[0].taskJson[index].taskDetail3.replaceAll('#',''
|
|
|
_this.infoisAllSize = event.target.files.length;
|
|
|
// _this.infoisAllSize = (file.size / 1024 / 1024).toFixed(2);
|
|
|
}
|
|
|
+ if (
|
|
|
+ ['DOC'].indexOf(
|
|
|
+ file.name
|
|
|
+ .split(".")
|
|
|
+ [file.name.split(".").length - 1].toLocaleUpperCase()
|
|
|
+ ) !== -1
|
|
|
+ ) {
|
|
|
+ // this.$message.error("抱歉,小可暂时不支持.doc的文件呢");
|
|
|
+ // this.inputShow = true;
|
|
|
+ let params = convertApi.createParams()
|
|
|
+ params.add('file', file)
|
|
|
+ let result = await convertApi.convert('doc', 'docx', params)
|
|
|
+ // Get result file URL
|
|
|
+ file = await fetch(result.files[0].Url).then(res => res.blob()).then(blob => {
|
|
|
+ return new File([blob], result.files[0].FileName, { type: 'application/octet-stream' });
|
|
|
+ });
|
|
|
+ console.log(result)
|
|
|
+ console.log(file)
|
|
|
+ // return;
|
|
|
+ }
|
|
|
|
|
|
_this.$forceUpdate();
|
|
|
if (file) {
|