feat(cert): 新增证书启用功能并优化自动签名页面
- 新增证书启用页面和相关功能- 重构自动签名页面,优化用户体验 - 添加服务描述页面- 修复部分页面跳转和显示问题
这个提交包含在:
父节点
02c1068bc1
当前提交
3a34fc48b8
@ -70,15 +70,18 @@ export struct SafeView {
|
|||||||
Row() {
|
Row() {
|
||||||
Image($r("app.media.base_back"))
|
Image($r("app.media.base_back"))
|
||||||
.height(15)
|
.height(15)
|
||||||
.objectFit(ImageFit.Contain)
|
.objectFit(ImageFit.Contain).visibility(!this.hideBack ? Visibility.Visible : Visibility.None)
|
||||||
.onClick(() => {
|
|
||||||
if (this.onBackEvent && !this.hideBack) {
|
|
||||||
this.onBackEvent()
|
|
||||||
} else if (this.pageInfos) {
|
|
||||||
this.pageInfos.pop()
|
|
||||||
}
|
|
||||||
}).visibility(!this.hideBack ? Visibility.Visible : Visibility.None)
|
|
||||||
}.width(110)
|
}.width(110)
|
||||||
|
.onClick(() => {
|
||||||
|
if (this.hideBack) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (this.onBackEvent && !this.hideBack) {
|
||||||
|
this.onBackEvent()
|
||||||
|
} else if (this.pageInfos) {
|
||||||
|
this.pageInfos.pop()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
Text(this.titleText ?? '')
|
Text(this.titleText ?? '')
|
||||||
.maxLines(1)
|
.maxLines(1)
|
||||||
|
|||||||
正在加载...
在新工单中引用
屏蔽一个用户