|
@@ -7038,9 +7038,25 @@ export default {
|
|
|
.get(this.$store.state.api + "getCourseTemplateTs", params)
|
|
|
.then((res) => {
|
|
|
this.templateArray = res.data[0];
|
|
|
+ this.getTemplateOrg();
|
|
|
+ this.$forceUpdate();
|
|
|
})
|
|
|
.catch((err) => {});
|
|
|
},
|
|
|
+ getTemplateOrg() {
|
|
|
+ let params = {
|
|
|
+ oid: this.org,
|
|
|
+ };
|
|
|
+ this.ajax
|
|
|
+ .get(this.$store.state.api + "getCourseTemplateTs", params)
|
|
|
+ .then((res) => {
|
|
|
+ if (res.data[0].length) {
|
|
|
+ this.templateArray = [...res.data[0], ...this.templateArray];
|
|
|
+ }
|
|
|
+ this.$forceUpdate();
|
|
|
+ })
|
|
|
+ .catch((err) => { });
|
|
|
+ },
|
|
|
clearChoose() {
|
|
|
this.clearArray.splice(this.templateC.id, 1);
|
|
|
this.dialogVisible2 = false;
|