|
@@ -7348,6 +7348,7 @@ export default {
|
|
|
isTeacherTextCancelSource: null,
|
|
|
isTargetCancelSource1: null,
|
|
|
isTargetCancelSource2: null,
|
|
|
+ fileidArray: []
|
|
|
};
|
|
|
},
|
|
|
directives: {
|
|
@@ -21602,50 +21603,45 @@ ${this.targetCourseText && this.aiCallBack == 2 ? '注意,优化原有的<参
|
|
|
await _this.aitargetTextDetail2getAiContent(_uuid)
|
|
|
},
|
|
|
importFileid(sub){
|
|
|
- // file-SNthYVubrHGg4HjFcp3FPkZq 英语
|
|
|
- // file-QOKhi8i84T8eR6DYhb9TaTlG 科学核心素养
|
|
|
- // file-nkAUyRCEMncICGuFBC1WXnM1 科学素养内涵
|
|
|
- // file-aQmfmgrwdrHa9sCTTZkjvK7Z 语文
|
|
|
- // file-G1bRfSFnQaQtzA3c8dLshg0a 数学核心素养
|
|
|
- // file-35koyXrFO2T4FsrQe4qXm0io 数学素养内涵
|
|
|
+ // file-SNthYVubrHGg4HjFcp3FPkZq 英语核心素养(总目标+学段目标)
|
|
|
+ // file-QOKhi8i84T8eR6DYhb9TaTlG 科学核心素养学段目标
|
|
|
+ // file-nkAUyRCEMncICGuFBC1WXnM1 科学核心素养内涵目标
|
|
|
+ // file-aQmfmgrwdrHa9sCTTZkjvK7Z 语文核心素养内涵目标
|
|
|
+ // file-G1bRfSFnQaQtzA3c8dLshg0a 数学学科核心素养学段目标
|
|
|
+ // file-35koyXrFO2T4FsrQe4qXm0io 数学学科核心素养内涵和总目标
|
|
|
let _sub = converter(sub.join(","))
|
|
|
let fileid = []
|
|
|
- if(_sub.indexOf(converter('STEM')) != -1){
|
|
|
- fileid.push('file-SNthYVubrHGg4HjFcp3FPkZq')
|
|
|
- fileid.push('file-QOKhi8i84T8eR6DYhb9TaTlG')
|
|
|
- fileid.push('file-nkAUyRCEMncICGuFBC1WXnM1')
|
|
|
- fileid.push('file-aQmfmgrwdrHa9sCTTZkjvK7Z')
|
|
|
- fileid.push('file-G1bRfSFnQaQtzA3c8dLshg0a')
|
|
|
- fileid.push('file-35koyXrFO2T4FsrQe4qXm0io')
|
|
|
- }
|
|
|
- if(_sub.indexOf(converter('语文')) != -1){
|
|
|
- if(fileid.indexOf('file-aQmfmgrwdrHa9sCTTZkjvK7Z') == -1){
|
|
|
- fileid.push('file-aQmfmgrwdrHa9sCTTZkjvK7Z')
|
|
|
- }
|
|
|
- }
|
|
|
- if(_sub.indexOf(converter('数学')) != -1){
|
|
|
- if(fileid.indexOf('file-G1bRfSFnQaQtzA3c8dLshg0a') == -1){
|
|
|
- fileid.push('file-G1bRfSFnQaQtzA3c8dLshg0a')
|
|
|
- }
|
|
|
- if(fileid.indexOf('file-35koyXrFO2T4FsrQe4qXm0io') == -1){
|
|
|
- fileid.push('file-35koyXrFO2T4FsrQe4qXm0io')
|
|
|
- }
|
|
|
- }
|
|
|
- if(_sub.indexOf(converter('英语')) != -1){
|
|
|
- if(fileid.indexOf('file-SNthYVubrHGg4HjFcp3FPkZq') == -1){
|
|
|
- fileid.push('file-SNthYVubrHGg4HjFcp3FPkZq')
|
|
|
- }
|
|
|
- }
|
|
|
- if(_sub.indexOf(converter('科学')) != -1){
|
|
|
- if(fileid.indexOf('file-QOKhi8i84T8eR6DYhb9TaTlG') == -1){
|
|
|
- fileid.push('file-QOKhi8i84T8eR6DYhb9TaTlG')
|
|
|
- }
|
|
|
- if(fileid.indexOf('file-nkAUyRCEMncICGuFBC1WXnM1') == -1){
|
|
|
- fileid.push('file-nkAUyRCEMncICGuFBC1WXnM1')
|
|
|
+
|
|
|
+ for(var i = 0; i < this.fileidArray.length; i++){
|
|
|
+ if(_sub.indexOf(converter(this.fileidArray[i].name)) != -1){
|
|
|
+ if(fileid.indexOf(this.fileidArray[i].fileid) == -1){
|
|
|
+ fileid.push(this.fileidArray[i].fileid)
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
return fileid
|
|
|
},
|
|
|
+ selectFileid(){
|
|
|
+ let params = {
|
|
|
+ oid: this.oid,
|
|
|
+ };
|
|
|
+ this.ajax
|
|
|
+ .get(this.$store.state.api + "selectFileid", params)
|
|
|
+ .then((res) => {
|
|
|
+ this.fileidArray = res.data[0]
|
|
|
+ if(res.data[1].length){
|
|
|
+ this.fileidArray = res.data[1]
|
|
|
+ }
|
|
|
+ if(res.data[2].length){
|
|
|
+ this.fileidArray = res.data[2]
|
|
|
+ }
|
|
|
+
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ console.error(err);
|
|
|
+ });
|
|
|
+ },
|
|
|
async aitargetTextDetail22(msg,msg2) {
|
|
|
let _this = this
|
|
|
let fileid = []
|
|
@@ -22250,8 +22246,9 @@ ${msg}
|
|
|
let dArray = []
|
|
|
try {
|
|
|
let regex2 = new RegExp("/([{,])(\w+):/g")
|
|
|
+ let regex3 = new RegExp('/(?<!")content(?!")/g')
|
|
|
//
|
|
|
- dArray = JSON.parse(data.message.replaceAll('```json','').replaceAll('```','').replaceAll('\'',"\"").replace(regex2, '$1"$2":').replace(/(?<!")content(?!")/g, '"content"'))
|
|
|
+ dArray = JSON.parse(data.message.replaceAll('```json','').replaceAll('```','').replaceAll('\'',"\"").replace(regex2, '$1"$2":').replace(regex3, '"content"'))
|
|
|
} catch (error) {
|
|
|
// callback ? callback() : ''
|
|
|
console.log("error_________________" + error);
|
|
@@ -22334,6 +22331,7 @@ ${msg}
|
|
|
next();
|
|
|
},
|
|
|
created() {
|
|
|
+ this.selectFileid();
|
|
|
this.getStudent();
|
|
|
this.getTeacher();
|
|
|
this.getClass();
|