69 lines
1.2 KiB
Vue
69 lines
1.2 KiB
Vue
<template>
|
|
<view>
|
|
<u-cell-group style="width: 90%; margin: 20rpx auto; background-color: #fff; border-radius: 15rpx;" :border="false">
|
|
<u-cell
|
|
title="用户名"
|
|
:border="false"
|
|
value="张星星"
|
|
>
|
|
</u-cell>
|
|
<u-cell
|
|
title="登录账号"
|
|
:border="false"
|
|
value="13844778899"
|
|
>
|
|
</u-cell>
|
|
<u-cell
|
|
title="修改密码"
|
|
:border="false"
|
|
:isLink="true"
|
|
>
|
|
</u-cell>
|
|
</u-cell-group>
|
|
<h5 style="width: 90%; margin: 20rpx auto;">认证信息</h5>
|
|
<u-cell-group style="width: 90%; margin: 20rpx auto; background-color: #fff; border-radius: 15rpx;" :border="false">
|
|
<u-cell
|
|
title="企业认证信息"
|
|
:border="false"
|
|
:isLink="true"
|
|
url="/pages/compAuthInfo/compAuthInfo"
|
|
>
|
|
</u-cell>
|
|
<u-cell
|
|
title="用户身份信息"
|
|
:border="false"
|
|
:isLink="true"
|
|
>
|
|
</u-cell>
|
|
</u-cell-group>
|
|
<view class="log-off">注销账号</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
body{
|
|
background-color: #F5F5F5;
|
|
}
|
|
.log-off{
|
|
width: 90%;
|
|
margin: 0 auto;
|
|
background-color: #fff;
|
|
border-radius: 15rpx;
|
|
box-sizing: border-box;
|
|
padding: 20rpx 25rpx;
|
|
}
|
|
</style>
|