|
@@ -6966,9 +6966,31 @@ export default {
|
|
|
.get(this.$store.state.api + "getCourseTemplateTStudio", 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 + "getCourseTemplateTStudio", params)
|
|
|
+ .then((res) => {
|
|
|
+ if (res.data[0].length) {
|
|
|
+ let ta = res.data[0].filter(el => {
|
|
|
+ return el.oid
|
|
|
+ });
|
|
|
+ this.templateArray = [...ta, ...this.templateArray];
|
|
|
+ this.templateArray = this.templateArray.sort(function(a, b) {
|
|
|
+ return b.create_at < a.create_at? -1 : 1
|
|
|
+ })
|
|
|
+ }
|
|
|
+ this.$forceUpdate();
|
|
|
+ })
|
|
|
+ .catch((err) => { });
|
|
|
+ },
|
|
|
clearChoose() {
|
|
|
this.clearArray.splice(this.templateC.id, 1);
|
|
|
this.dialogVisible2 = false;
|