diff --git a/entry/src/main/ets/pages/changeEncryption.ets b/entry/src/main/ets/pages/changeEncryption.ets index 0d9b8bb..c2b0a8b 100644 --- a/entry/src/main/ets/pages/changeEncryption.ets +++ b/entry/src/main/ets/pages/changeEncryption.ets @@ -540,7 +540,13 @@ struct changeEncryption { Row() { if (this.showNamesArrReadOnly.length !== this.staffDataArrayReadOnly['length']) { Text('+') + .fontColor($r('sys.color.ohos_id_color_text_primary_activated')) + .fontSize($r('sys.float.ohos_id_text_size_button2')) + .fontWeight(FontWeight.Medium) Text(this.hideNamesNumReadOnly) + .fontColor($r('sys.color.ohos_id_color_text_primary_activated')) + .fontSize($r('sys.float.ohos_id_text_size_button2')) + .fontWeight(FontWeight.Medium) } Image($r("app.media.icon_change")) .width(Constants.PP_IMAGE_HEIGHT) @@ -673,7 +679,13 @@ struct changeEncryption { Row() { if (this.showNamesArrEdit.length !== this.staffDataArrayEdit['length']) { Text('+') + .fontColor($r('sys.color.ohos_id_color_text_primary_activated')) + .fontSize($r('sys.float.ohos_id_text_size_button2')) + .fontWeight(FontWeight.Medium) Text(this.hideNamesNumEdit) + .fontColor($r('sys.color.ohos_id_color_text_primary_activated')) + .fontSize($r('sys.float.ohos_id_text_size_button2')) + .fontWeight(FontWeight.Medium) } Image($r("app.media.icon_change")) .width(Constants.PP_IMAGE_HEIGHT) diff --git a/entry/src/main/ets/pages/encryptionSuccess.ets b/entry/src/main/ets/pages/encryptionSuccess.ets index 5f51d66..5efe18b 100644 --- a/entry/src/main/ets/pages/encryptionSuccess.ets +++ b/entry/src/main/ets/pages/encryptionSuccess.ets @@ -298,7 +298,13 @@ struct encryptionSuccess { Row() { if (this.showNamesArrReadOnly.length !== this.routerParams['staffDataArrayReadOnly'].length) { Text('+') + .fontColor($r('sys.color.ohos_id_color_text_primary_activated')) + .fontSize($r('sys.float.ohos_id_text_size_button2')) + .fontWeight(FontWeight.Medium) Text(this.hideNamesNumReadOnly) + .fontColor($r('sys.color.ohos_id_color_text_primary_activated')) + .fontSize($r('sys.float.ohos_id_text_size_button2')) + .fontWeight(FontWeight.Medium) } Image($r("app.media.icon_change")) .width(Constants.PP_IMAGE_HEIGHT) @@ -432,7 +438,13 @@ struct encryptionSuccess { Row() { if (this.showNamesArrEdit.length !== this.routerParams['staffDataArrayEdit'].length) { Text('+') + .fontColor($r('sys.color.ohos_id_color_text_primary_activated')) + .fontSize($r('sys.float.ohos_id_text_size_button2')) + .fontWeight(FontWeight.Medium) Text(this.hideNamesNumEdit) + .fontColor($r('sys.color.ohos_id_color_text_primary_activated')) + .fontSize($r('sys.float.ohos_id_text_size_button2')) + .fontWeight(FontWeight.Medium) } Image($r("app.media.icon_change")) .width(Constants.PP_IMAGE_HEIGHT)