1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view >
- <u-navbar title="设置"></u-navbar>
- <view >
- <u-cell-group>
- <u-cell-item title="个人信息"
- @click="gotoUrl('pages/job/personal/install/myInfo/myInfo')"
- :title-style="titleStyle" label="头像、姓名、出生年月等" ></u-cell-item>
-
- <u-cell-item title="账户管理"
- @click="gotoUrl('pages/job/personal/install/account/phoneA/phoneA')"
- :title-style="titleStyle" label="修改手机号"></u-cell-item>
- </u-cell-group>
- <view class="u-m-t-20" >
- <view class="signOut" @click="signOut">退出账号</view>
- </view>
-
-
-
- </view>
-
- </view>
- </template>
- <script>
- import api from './index.js'
- export default api;
-
- </script>
- <style>
- page{
- background-color: #f7f7f7;
- }
- </style>
- <style scoped lang="scss">
-
- .signOut{
- height: 40px;
- background-color: #fff;
- text-align: center;
- line-height: 40px;
- font-weight:bold;
- }
- </style>
|