梁航:修改页面

This commit is contained in:
hot777zz
2023-11-15 23:16:26 +08:00
parent e3a78be387
commit 88e2d6542b
4 changed files with 93 additions and 2 deletions

View File

@@ -7,7 +7,8 @@
<u-avatar :src="src"></u-avatar>
</view>
<view class="username">{{username}}</view>
<view class="account">账号:{{account}}</view>
<view class="account">账号:{{account}} <u-icon name="edit-pen" class="edit-icon" size="20" @click="toEdit"></u-icon></view>
</view>
<view class="publish">
<u-cell-group>
@@ -85,6 +86,11 @@
uni.navigateTo({
url: '/pages/Partnerships/Partnerships'
})
},
toEdit(){
uni.navigateTo({
url:'/pages/my/edit/edit'
})
}
//---------页面调用接口示例------------
// getInfo() {
@@ -127,6 +133,10 @@
.account {
font-size: 15px;
font-weight: 1rpx;
display: flex;
}
.edit-icon{
}
}