|
|
@@ -2799,6 +2799,17 @@ export default {
|
|
|
},
|
|
|
// 打开应用中心
|
|
|
openApplicationCenter() {
|
|
|
+
|
|
|
+ let url = 'https://app.cocorobo.cn'
|
|
|
+ if (this.lang.lang === 'cn') {
|
|
|
+ url = 'https://app.cocorobo.cn'
|
|
|
+ }
|
|
|
+ else if (this.lang.lang === 'hk') {
|
|
|
+ url = 'https://app.cocorobo.hk'
|
|
|
+ }
|
|
|
+ else if (this.lang.lang === 'en') {
|
|
|
+ url = 'https://app.cocorobo.com'
|
|
|
+ }
|
|
|
// 创建Cocorobo链接工具项
|
|
|
let cocoroboItem = {
|
|
|
id: new Date().getTime(),
|
|
|
@@ -2808,9 +2819,9 @@ export default {
|
|
|
json: {
|
|
|
title: this.lang.ssCreateSpace,
|
|
|
detail: this.lang.ssCreateSpace,
|
|
|
- url: "https://app.cocorobo.cn"
|
|
|
+ url: url
|
|
|
},
|
|
|
- url: "https://app.cocorobo.cn"
|
|
|
+ url: url
|
|
|
};
|
|
|
this.pptCourseJson.toolsList.push(cocoroboItem);
|
|
|
this.addContent(cocoroboItem)
|
|
|
@@ -5088,6 +5099,7 @@ export default {
|
|
|
.course-name-text {
|
|
|
cursor: pointer;
|
|
|
transition: color 0.3s;
|
|
|
+ font-size: 18px;
|
|
|
}
|
|
|
|
|
|
.course-name-text:hover {
|
|
|
@@ -5101,6 +5113,7 @@ export default {
|
|
|
max-width: 500px;
|
|
|
margin: 0 auto;
|
|
|
text-align: center;
|
|
|
+ font-size: 18px;
|
|
|
}
|
|
|
|
|
|
.course-name-input >>> .el-input__inner {
|
|
|
@@ -5290,6 +5303,7 @@ export default {
|
|
|
cursor: pointer;
|
|
|
transition: all 0.3s;
|
|
|
margin-bottom: 4px;
|
|
|
+ font-size: 14px;
|
|
|
}
|
|
|
|
|
|
.option-item:last-child {
|