install.vue 942 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <template>
  2. <view >
  3. <u-navbar title="设置"></u-navbar>
  4. <view >
  5. <u-cell-group>
  6. <u-cell-item title="个人信息"
  7. @click="gotoUrl('pages/job/personal/install/myInfo/myInfo')"
  8. :title-style="titleStyle" label="头像、姓名、出生年月等" ></u-cell-item>
  9. <u-cell-item title="账户管理"
  10. @click="gotoUrl('pages/job/personal/install/account/phoneA/phoneA')"
  11. :title-style="titleStyle" label="修改手机号"></u-cell-item>
  12. </u-cell-group>
  13. <view class="u-m-t-20" >
  14. <view class="signOut" @click="signOut">退出账号</view>
  15. </view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. import api from './index.js'
  21. export default api;
  22. </script>
  23. <style>
  24. page{
  25. background-color: #f7f7f7;
  26. }
  27. </style>
  28. <style scoped lang="scss">
  29. .signOut{
  30. height: 40px;
  31. background-color: #fff;
  32. text-align: center;
  33. line-height: 40px;
  34. font-weight:bold;
  35. }
  36. </style>