Personalinformation.vue 1.2 KB

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