|
@@ -7037,7 +7037,9 @@ export default {
|
|
|
this.ajax
|
|
|
.get(this.$store.state.api + "getCourseTemplateTs", params)
|
|
|
.then((res) => {
|
|
|
- this.templateArray = res.data[0];
|
|
|
+ this.templateArray = res.data[0].filter(el => {
|
|
|
+ return el.oid
|
|
|
+ });
|
|
|
this.getTemplateOrg();
|
|
|
this.$forceUpdate();
|
|
|
})
|
|
@@ -7051,7 +7053,9 @@ export default {
|
|
|
.get(this.$store.state.api + "getCourseTemplateTs", params)
|
|
|
.then((res) => {
|
|
|
if (res.data[0].length) {
|
|
|
- let ta = res.data[0]
|
|
|
+ let ta = res.data[0].filter(el => {
|
|
|
+ return el.oid
|
|
|
+ });
|
|
|
let newArr2 = this.templateArray.filter(x => !ta.some(y => y.id === x.id));
|
|
|
this.templateArray = [...newArr2, ...this.templateArray];
|
|
|
}
|