|
@@ -158,16 +158,25 @@ function getChildSysList() {
|
|
|
.then(({ child_sys_list }) => {
|
|
|
if (child_sys_list && child_sys_list.length > 0) {
|
|
|
const isNotYouth = window.location.origin !== 'https://youthchinesedu.blcup.com';
|
|
|
- if (isNotYouth) {
|
|
|
- projectList.value = child_sys_list;
|
|
|
- } else {
|
|
|
- let child_sys_list_youth = [];
|
|
|
+ if (Cookies.get('GCLSCode')) {
|
|
|
+ projectList.value = [];
|
|
|
child_sys_list.forEach((item) => {
|
|
|
- if (item.key !== 'GCLS-Exercise') {
|
|
|
- child_sys_list_youth.push(item);
|
|
|
+ if (item.key === 'GCLS-LC' || item.key === 'GCLS-Personal' || item.key === 'GCLS-Learn') {
|
|
|
+ projectList.value.push(item);
|
|
|
}
|
|
|
});
|
|
|
- projectList.value = child_sys_list_youth;
|
|
|
+ } else {
|
|
|
+ if (isNotYouth) {
|
|
|
+ projectList.value = child_sys_list;
|
|
|
+ } else {
|
|
|
+ let child_sys_list_youth = [];
|
|
|
+ child_sys_list.forEach((item) => {
|
|
|
+ if (item.key !== 'GCLS-Exercise') {
|
|
|
+ child_sys_list_youth.push(item);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ projectList.value = child_sys_list_youth;
|
|
|
+ }
|
|
|
}
|
|
|
projectList.value.forEach((item, index) => {
|
|
|
if (item.key === loginNav.value) {
|