Personalinformation.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <template>
  2. <view class="OutermostLayer">
  3. <view class="Personalinformation">
  4. <u-cell-group>
  5. <u-cell
  6. size="large"
  7. title="用户名"
  8. value="李伟"
  9. ></u-cell>
  10. <u-cell
  11. size="large"
  12. title="手机"
  13. value="18326607835"
  14. ></u-cell>
  15. <u-cell
  16. size="large"
  17. title="邮箱"
  18. value="328319643@qq.com"
  19. ></u-cell>
  20. <u-cell
  21. size="large"
  22. title="性别"
  23. value="男"
  24. ></u-cell>
  25. <u-cell
  26. size="large"
  27. title="地址"
  28. value="安徽省合肥市"
  29. ></u-cell>
  30. <u-cell
  31. size="large"
  32. title="部门"
  33. value="合肥传秀科技技术部"
  34. ></u-cell>
  35. <u-cell
  36. size="large"
  37. title="职位"
  38. value="前端工程师"
  39. ></u-cell>
  40. <u-cell
  41. size="large"
  42. title="个人信息"
  43. value="修改"
  44. isLink
  45. @click="editdata"
  46. ></u-cell>
  47. </u-cell-group>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. export default {
  53. data() {
  54. return {
  55. };
  56. },
  57. methods: {
  58. editdata(){
  59. uni.navigateTo({
  60. url: 'Informationmodification/Informationmodification'
  61. })
  62. },
  63. }
  64. }
  65. </script>
  66. <style lang="scss">
  67. .Personalinformation{
  68. padding: 30rpx;
  69. }
  70. </style>