|
@@ -272,12 +272,18 @@ export default {
|
272
|
272
|
},
|
273
|
273
|
toClick() {
|
274
|
274
|
window.location.href = "https://testsso.sgjyun.com/help";
|
|
275
|
+ },
|
|
276
|
+ getCreatorName() {
|
|
277
|
+ getCreatorName().then(response => {});
|
275
|
278
|
}
|
276
|
279
|
},
|
277
|
280
|
created() {
|
278
|
281
|
getOrgs().then(response => {
|
279
|
282
|
if (response.data.state === 1) {
|
280
|
283
|
this.orgs = response.data.data.orgs;
|
|
284
|
+ console.log("org", this.orgs);
|
|
285
|
+ var creator = response.data.data.creator;
|
|
286
|
+ console.log("creator", creator);
|
281
|
287
|
for (let i = 0; i < this.orgs.length; i++) {
|
282
|
288
|
if (this.orgs[i].id == this.org_id) {
|
283
|
289
|
this.org_name = this.orgs[i].org_name;
|
|
@@ -285,6 +291,7 @@ export default {
|
285
|
291
|
}
|
286
|
292
|
}
|
287
|
293
|
});
|
|
294
|
+ this.getCreatorName();
|
288
|
295
|
}
|
289
|
296
|
};
|
290
|
297
|
</script>
|