diff --git a/AppScope/app.json5 b/AppScope/app.json5 index 2027db6..6ec8aff 100644 --- a/AppScope/app.json5 +++ b/AppScope/app.json5 @@ -1,10 +1,10 @@ { "app": { - "bundleName": "com.atguigu.practice", + "bundleName": "com.se.practice", "vendor": "example", "versionCode": 1000000, "versionName": "1.0.0", - "icon": "$media:ic_logo", + "icon": "$media:ic_logo_n", "label": "$string:app_name" } } diff --git a/AppScope/resources/base/element/string.json b/AppScope/resources/base/element/string.json index 2849ee8..d8ce73f 100644 --- a/AppScope/resources/base/element/string.json +++ b/AppScope/resources/base/element/string.json @@ -2,7 +2,7 @@ "string": [ { "name": "app_name", - "value": "单词打卡" + "value": "留学助手" } ] } diff --git a/AppScope/resources/base/media/ic_logo_n.png b/AppScope/resources/base/media/ic_logo_n.png new file mode 100644 index 0000000..6eb3a17 Binary files /dev/null and b/AppScope/resources/base/media/ic_logo_n.png differ diff --git a/entry/src/main/ets/pages/LoginPage.ets b/entry/src/main/ets/pages/LoginPage.ets index d5957b5..b273f70 100644 --- a/entry/src/main/ets/pages/LoginPage.ets +++ b/entry/src/main/ets/pages/LoginPage.ets @@ -97,16 +97,16 @@ struct LoginPage { }.formBgStyle() Row({ space: 10 }) { - Image($r('app.media.ic_logo')) + Image($r('app.media.ic_logo_n')) .width(36) .height(36) - Text('快速记单词神器') + Text('留学助手') .fontColor('#546B9D') .fontWeight(FontWeight.Bold) .fontSize(20) }.margin({ top: 70 }) - Text('Developed By Atguigu') + Text('Developed By SE_2024') .fontSize(12) .fontColor('#546B9D') .margin(10) diff --git a/entry/src/main/ets/pages/SplashPage.ets b/entry/src/main/ets/pages/SplashPage.ets index ede3f1e..ade23f0 100644 --- a/entry/src/main/ets/pages/SplashPage.ets +++ b/entry/src/main/ets/pages/SplashPage.ets @@ -21,10 +21,10 @@ struct SplashPage { Column(){ if(this.flag){ - Image($r('app.media.ic_logo')) + Image($r('app.media.ic_logo_n')) .logoStyle() .transition({type:TransitionType.Insert,opacity:0,translate:{x:-150}}) - Text("快速单词记忆神器") + Text("留学助手") .titleStyle() .transition({type:TransitionType.Insert,opacity:0,translate:{x:150}}) } diff --git a/entry/src/main/resources/base/media/ic_logo_n.png b/entry/src/main/resources/base/media/ic_logo_n.png new file mode 100644 index 0000000..6eb3a17 Binary files /dev/null and b/entry/src/main/resources/base/media/ic_logo_n.png differ