|
@@ -4976,6 +4976,36 @@ export default {
|
|
|
.get(this.$store.state.api + "getCourseTemplateT", "")
|
|
|
.then((res) => {
|
|
|
this.templateArray = res.data[0];
|
|
|
+ this.getTemplateOid();
|
|
|
+ this.$forceUpdate();
|
|
|
+ })
|
|
|
+ .catch((err) => { });
|
|
|
+ },
|
|
|
+ getTemplateOid() {
|
|
|
+ let params = {
|
|
|
+ oid:this.oid
|
|
|
+ }
|
|
|
+ this.ajax
|
|
|
+ .get(this.$store.state.api + "getCourseTemplateTByOid", params)
|
|
|
+ .then((res) => {
|
|
|
+ if(res.data[0].length){
|
|
|
+ this.templateArray = [...res.data[0],...this.templateArray];
|
|
|
+ }
|
|
|
+ this.getTemplateOrg();
|
|
|
+ this.$forceUpdate();
|
|
|
+ })
|
|
|
+ .catch((err) => { });
|
|
|
+ },
|
|
|
+ getTemplateOrg() {
|
|
|
+ let params = {
|
|
|
+ oid:this.org
|
|
|
+ }
|
|
|
+ this.ajax
|
|
|
+ .get(this.$store.state.api + "getCourseTemplateTByOid", params)
|
|
|
+ .then((res) => {
|
|
|
+ if(res.data[0].length){
|
|
|
+ this.templateArray = [...res.data[0],...this.templateArray];
|
|
|
+ }
|
|
|
this.$forceUpdate();
|
|
|
})
|
|
|
.catch((err) => { });
|