更新
This commit is contained in:
parent
5a59fa16bf
commit
ca5ab146b7
@ -94,7 +94,7 @@ export struct EditUserDataComp {
|
|||||||
if(json.code == 1 && json.expert && typeof json.expert === 'object') {
|
if(json.code == 1 && json.expert && typeof json.expert === 'object') {
|
||||||
authStore.updateUser(json.expert)
|
authStore.updateUser(json.expert)
|
||||||
this.arrToStringSpecialy(json.specialy);
|
this.arrToStringSpecialy(json.specialy);
|
||||||
this.photoPath = authStore.getUser().photo;
|
this.photoPath = BasicConstant.urlImage+authStore.getUser().photo;
|
||||||
this.name = authStore.getUser().realName;
|
this.name = authStore.getUser().realName;
|
||||||
this.sex = authStore.getUser().sex == 0 ? '男' : '女';
|
this.sex = authStore.getUser().sex == 0 ? '男' : '女';
|
||||||
this.birthday = authStore.getUser().birthDate;
|
this.birthday = authStore.getUser().birthDate;
|
||||||
|
|||||||
@ -240,6 +240,8 @@ export struct LoginComp {
|
|||||||
.onClick(() => {
|
.onClick(() => {
|
||||||
this.login()
|
this.login()
|
||||||
})
|
})
|
||||||
|
Row()
|
||||||
|
{
|
||||||
Text(this.type)
|
Text(this.type)
|
||||||
.fontSize(14)
|
.fontSize(14)
|
||||||
.fontColor($r('app.color.top_title'))
|
.fontColor($r('app.color.top_title'))
|
||||||
@ -257,6 +259,22 @@ export struct LoginComp {
|
|||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
Blank()
|
||||||
|
if(this.isPassLogin)
|
||||||
|
{
|
||||||
|
Text('忘记密码?')
|
||||||
|
.fontSize(14)
|
||||||
|
.fontColor($r('app.color.common_gray_03'))
|
||||||
|
.alignSelf(ItemAlign.Start)
|
||||||
|
.onClick(() => {
|
||||||
|
|
||||||
|
router.pushUrl({url:'pages/MinePage/ForgetPassword'})
|
||||||
|
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
}.width('100%')
|
||||||
|
|
||||||
Row() {
|
Row() {
|
||||||
Checkbox()
|
Checkbox()
|
||||||
.shape(CheckBoxShape.CIRCLE)
|
.shape(CheckBoxShape.CIRCLE)
|
||||||
|
|||||||
@ -152,6 +152,7 @@ export struct PLVMediaPlayerSingleVideoControllerLayoutLand {
|
|||||||
right: 16
|
right: 16
|
||||||
})
|
})
|
||||||
.hitTestBehavior(HitTestMode.Transparent)
|
.hitTestBehavior(HitTestMode.Transparent)
|
||||||
|
.visibility(Visibility.None)
|
||||||
|
|
||||||
// 播放/暂停按钮
|
// 播放/暂停按钮
|
||||||
PLVMediaPlayerPlayButton()
|
PLVMediaPlayerPlayButton()
|
||||||
@ -245,6 +246,7 @@ export struct PLVMediaPlayerSingleVideoControllerLayoutLand {
|
|||||||
right: 16
|
right: 16
|
||||||
})
|
})
|
||||||
.hitTestBehavior(HitTestMode.Transparent)
|
.hitTestBehavior(HitTestMode.Transparent)
|
||||||
|
.visibility(Visibility.None)
|
||||||
|
|
||||||
// 弱网提示
|
// 弱网提示
|
||||||
PLVMediaPlayerNetworkPoorIndicateLayout()
|
PLVMediaPlayerNetworkPoorIndicateLayout()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user