Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
L
learn-online-pc
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
learn-online-pc
Commits
d4f56bff
提交
d4f56bff
authored
11月 02, 2022
作者:
王鹏飞
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
chore: 新增cuw学习系统
上级
3dc9a0f0
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
14 行增加
和
13 行删除
+14
-13
.config.dev.js
.config.dev.js
+1
-1
.config.pro.js
.config.pro.js
+1
-1
.config.test.js
.config.test.js
+1
-1
project.config.js
project.config.js
+1
-1
PlayerAction.js
src/action/PlayerAction.js
+2
-2
base_api.js
src/api/base_api.js
+1
-1
zh-CN.json
src/assets/languages/zh-CN.json
+2
-2
navigation.vue
src/components/learnSysLayout/navigation.vue
+5
-4
没有找到文件。
.config.dev.js
浏览文件 @
d4f56bff
...
...
@@ -4,7 +4,7 @@ module.exports = {
apiBaseURL
:
'https://learn-api.ezijing.com'
,
others
:
{
url
:
'/app/learn/course'
,
loginUrl
:
'https://login.ezijing.com/c
iis
/login/index'
,
loginUrl
:
'https://login.ezijing.com/c
uw
/login/index'
,
messageBaseURL
:
'https://test-microservices-message-service-api.ezijing.com'
},
webpack
:
{
...
...
.config.pro.js
浏览文件 @
d4f56bff
...
...
@@ -4,7 +4,7 @@ module.exports = {
apiBaseURL
:
'https://learn-api.ezijing.com'
,
others
:
{
url
:
'/app/learn/course'
,
loginUrl
:
'https://login.ezijing.com/c
iis
/login/index'
,
loginUrl
:
'https://login.ezijing.com/c
uw
/login/index'
,
messageBaseURL
:
''
},
webpack
:
{
...
...
.config.test.js
浏览文件 @
d4f56bff
...
...
@@ -4,7 +4,7 @@ module.exports = {
apiBaseURL
:
'https://learn-api2.ezijing.com'
,
others
:
{
url
:
'/app/learn/course'
,
loginUrl
:
'https://login2.ezijing.com/c
iis
/login/index'
,
loginUrl
:
'https://login2.ezijing.com/c
uw
/login/index'
,
messageBaseURL
:
'https://test-microservices-message-service-api.ezijing.com'
},
isUploadStatic
:
false
,
...
...
project.config.js
浏览文件 @
d4f56bff
export
default
{
title
:
'紫荆教育MBA学习系统'
,
tenant
:
'c
iis
'
tenant
:
'c
uw
'
}
src/action/PlayerAction.js
浏览文件 @
d4f56bff
...
...
@@ -317,7 +317,7 @@ export default class PlayerAction extends BaseACTION {
attrs
:
{
multiple
:
true
,
headers
:
{
tenant
:
'c
iis
'
tenant
:
'c
uw
'
}
},
html
:
`
...
...
@@ -377,7 +377,7 @@ export default class PlayerAction extends BaseACTION {
attrs
:
{
multiple
:
true
,
headers
:
{
tenant
:
'c
iis
'
tenant
:
'c
uw
'
}
},
html
:
`
...
...
src/api/base_api.js
浏览文件 @
d4f56bff
...
...
@@ -36,7 +36,7 @@ export default class API {
/* 具体执行请求失败后业务逻辑前,先执行该方法 */
const
beforeFail
=
_config
.
beforeFail
?
_config
.
beforeFail
:
this
.
_reqFail
const
headers
=
{
tenant
:
'c
iis
'
,
tenant
:
'c
uw
'
,
version
:
window
.
G
.
VERSION
,
'Content-Type'
:
'application/x-www-form-urlencoded'
}
...
...
src/assets/languages/zh-CN.json
浏览文件 @
d4f56bff
{
"title"
:
"紫荆教育-
加州整合大学应用心理学
硕士学习系统"
,
"title"
:
"紫荆教育-
威斯康星协和大学家庭教育
硕士学习系统"
,
"action"
:
{
"courseAction"
:
{
"all"
:
"全部"
,
...
...
@@ -31,7 +31,7 @@
"library"
:
"电子图书馆"
,
"dialogTitle"
:
"学员须知"
,
"dialogMessage1"
:
"使用学习平台前,请认真阅读"
,
"dialogMessage2"
:
"《紫荆教育-
加州整合大学应用心理学
硕士学生手册》"
,
"dialogMessage2"
:
"《紫荆教育-
威斯康星协和大学家庭教育
硕士学生手册》"
,
"dialogMessage3"
:
"内容,并同意遵守其中的各项要求。"
,
"dialogMessageHref"
:
"https://zws-imgs-pub.ezijing.com/pc/ciis/CIIS%E5%AD%A6%E7%94%9F%E6%89%8B%E5%86%8C.pdf"
,
"dialogCheckbox"
:
"我已阅读并同意"
,
...
...
src/components/learnSysLayout/navigation.vue
浏览文件 @
d4f56bff
<
template
>
<div
class=
"menu"
>
<div
class=
"nav-left"
>
<img
class=
"logo"
src=
"
@/assets/images/logo-header.png"
alt=
"logo
"
/>
<img
class=
"logo"
src=
"
https://webapp-pub.ezijing.com/project/cuw/cuw_logo_blue.svg
"
/>
<div
class=
"text-title"
@
click=
"setStatus"
>
{{
$t
(
'components.learnSysLayout.navigation.title'
)
}}
</div>
</div>
<div
class=
"nav-right"
>
<div
class=
"nav-a"
>
<a
:href=
"documentUrl"
target=
"_blank"
v-if=
"documentUrl"
>
{{
$t
(
'components.learnSysLayout.navigation.handlbook'
)
}}
</a>
<a
:href=
"documentUrl"
target=
"_blank"
v-if=
"documentUrl"
>
{{
$t
(
'components.learnSysLayout.navigation.handlbook'
)
}}
</a>
<!--
<a
href=
"https://library.ciis.edu"
target=
"_blank"
>
{{
$t
(
'components.learnSysLayout.navigation.library'
)
}}
</a>
-->
<router-link
to=
"/app/other/qa"
>
常见问题与解答
</router-link>
</div>
...
...
@@ -77,8 +79,7 @@ export default {
position
:
absolute
;
left
:
0
;
top
:
50%
;
// height: 80%;
width
:
160px
;
height
:
80%
;
transform
:
translateY
(
-50%
);
}
.text-title
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论