|
@@ -68,7 +68,7 @@
|
|
|
style="margin-top: 15px"
|
|
|
>
|
|
|
<el-breadcrumb-item
|
|
|
- :to="{ path: '/course?userid=' + userid + '&oid=' + oid }"
|
|
|
+ :to="{ path: '/course?userid=' + userid + '&oid=' + oid + '&org=' + org}"
|
|
|
>项目管理</el-breadcrumb-item
|
|
|
>
|
|
|
<el-breadcrumb-item>
|
|
@@ -1898,7 +1898,7 @@
|
|
|
<button
|
|
|
class="info_btn"
|
|
|
v-if="steps == 1"
|
|
|
- @click="goTo('/course?userid=' + userid + '&oid=' + oid)"
|
|
|
+ @click="goTo('/course?userid=' + userid + '&oid=' + oid + '&org=' + org)"
|
|
|
>
|
|
|
返回项目
|
|
|
</button>
|
|
@@ -2649,6 +2649,7 @@ export default {
|
|
|
searchTN: "",
|
|
|
userid: this.$route.query.userid,
|
|
|
oid: this.$route.query.oid,
|
|
|
+ org: this.$route.query.org,
|
|
|
cid: this.$route.query.cid != undefined ? this.$route.query.cid : "",
|
|
|
cover: [], //项目封面
|
|
|
myWord: [],
|
|
@@ -2912,7 +2913,7 @@ export default {
|
|
|
},
|
|
|
lastSteps() {
|
|
|
if (this.steps == 4) {
|
|
|
- this.goTo("/course?userid=" + this.userid + "&oid=" + this.oid);
|
|
|
+ this.goTo("/course?userid=" + this.userid + "&oid=" + this.oid + '&org=' + this.org);
|
|
|
} else {
|
|
|
if (this.cidType == 0) {
|
|
|
this.steps--;
|
|
@@ -4784,6 +4785,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
this.selectTypeByOid();
|
|
|
+ this.selectTypeByOrg();
|
|
|
})
|
|
|
.catch((err) => {
|
|
|
console.error(err);
|
|
@@ -4811,6 +4813,29 @@ export default {
|
|
|
console.error(err);
|
|
|
});
|
|
|
},
|
|
|
+ selectTypeByOrg() {
|
|
|
+ let params = {
|
|
|
+ oid: this.org,
|
|
|
+ };
|
|
|
+ this.ajax
|
|
|
+ .get(this.$store.state.api + "selectTypeByOrg", params)
|
|
|
+ .then((res) => {
|
|
|
+ for (var i = 0; i < res.data[0].length; i++) {
|
|
|
+ for (var j = 0; j < res.data[1].length; j++) {
|
|
|
+ if (res.data[0][i].id == res.data[1][j].pid) {
|
|
|
+ if (!this.CourseTypeJson[res.data[0][i].id]) {
|
|
|
+ this.CourseTypeJson[res.data[0][i].id] = [];
|
|
|
+ }
|
|
|
+ this.CourseTypeJson[res.data[0][i].id].push(res.data[1][j]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ this.$forceUpdate();
|
|
|
+ })
|
|
|
+ .catch((err) => {
|
|
|
+ console.error(err);
|
|
|
+ });
|
|
|
+ },
|
|
|
OtherMb(type) {
|
|
|
this.typeMode = type;
|
|
|
setTimeout(() => {
|