my.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view class="my">
  3. <u-navbar back-text=" " title=" " :background="{backgroundColor: 'transparent'}"></u-navbar>
  4. <image class="myBGC" src="../../static/img/myBGC.png" mode=""></image>
  5. <view class="info flex">
  6. <view class="text">
  7. <view class="name">
  8. {{data.name}}
  9. </view>
  10. <view>{{data.dwname}}</view>
  11. </view>
  12. <image :src="data.avatar" mode=""></image>
  13. </view>
  14. <view class="con" >
  15. <view class="li flex">
  16. <view class="label">科室名称</view>
  17. <text>{{data.ksname}}</text>
  18. </view>
  19. <view class="li flex">
  20. <view class="label">联系方式</view>
  21. <text>{{data.phone}}</text>
  22. </view>
  23. <view class="li flex">
  24. <view class="label">身份证号</view>
  25. <text>{{data.card}}</text>
  26. </view>
  27. <!-- <view class="li flex">
  28. <view class="label">本月问卷提交次数</view>
  29. <text>{{count}}</text>
  30. </view> -->
  31. </view>
  32. <view class="con" >
  33. <view class="li flex" @click="password()">
  34. <image src="../../static/img/my1.png" mode=""></image>
  35. <text>修改密码</text>
  36. </view>
  37. <view class="li flex" @click="out()">
  38. <image src="../../static/img/my2.png" mode=""></image>
  39. <text>退出登录</text>
  40. </view>
  41. </view>
  42. <u-modal v-model="show" @confirm="confirm" :show-cancel-button="true" @cancel="cancel" content="您确定要退出登录状态吗?"></u-modal>
  43. <tabBar :pagePath="'/pages/index/my'"></tabBar>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. data() {
  49. return {
  50. show:false,
  51. data:{},
  52. // count:0
  53. }
  54. },
  55. onLoad(option) {
  56. this.getUserInfo()
  57. },
  58. // onShow() {
  59. // this.$http.getTopicNum().then(res => {
  60. // this.count = res.data.result
  61. // })
  62. // },
  63. methods: {
  64. password(){
  65. uni.navigateTo({
  66. url: '/pages/user/password',
  67. })
  68. },
  69. out(){
  70. this.show = true
  71. },
  72. confirm(){
  73. uni.removeStorageSync('token');
  74. uni.reLaunch({
  75. url: '/pages/login/login'
  76. });
  77. },
  78. cancel(){
  79. this.show = false
  80. },
  81. getUserInfo(){
  82. this.$http.getUserInfo().then(res=>{
  83. if(res.data.code==200){
  84. console.log(res)
  85. this.data=res.data.result
  86. // console.log(this.data)
  87. }
  88. })
  89. },
  90. }
  91. }
  92. </script>
  93. <style lang="scss">
  94. .my{
  95. height: 100%;
  96. position: relative;
  97. background: #F5F8FF;
  98. .myBGC{
  99. position: absolute;
  100. width: 100%;
  101. top: 0;
  102. height: 600rpx;
  103. }
  104. .info{
  105. position: relative;
  106. z-index: 1;
  107. width:680rpx;
  108. margin: 24rpx auto;
  109. .text{
  110. flex: 1;
  111. color: rgba(0,0,0,0.6);
  112. font-size: 28rpx;
  113. .name{
  114. font-size: 44rpx;
  115. font-family: PingFang SC-Semibold, PingFang SC;
  116. font-weight: 600;
  117. color: rgba(0,0,0,0.8);
  118. margin-bottom: 10rpx;
  119. }
  120. }
  121. image{
  122. width: 120rpx;
  123. height: 120rpx;
  124. opacity: 1;
  125. border: 1px solid #FFFFFF;
  126. border-radius: 50%;
  127. box-shadow: 0px 0px 20rpx 0px rgba(0,0,0,0.05), inset 0px 2rpx 2rpx 0px rgba(255,255,255,0.25);
  128. }
  129. }
  130. .con{
  131. z-index: 1;
  132. position: relative;
  133. width:680rpx;
  134. margin: 24rpx auto;
  135. padding: 32rpx 32rpx 0;
  136. background: linear-gradient(180deg, #F2F9FB 0%, #FFFFFF 100%);
  137. box-shadow: 0px 0px 20rpx 0px rgba(0,0,0,0.05), inset 0px 2rpx 2rpx 0px rgba(255,255,255,0.25);
  138. border-radius: 24rpx;
  139. .li{
  140. padding-bottom: 32rpx;
  141. font-size: 28rpx;
  142. color: rgba(0,0,0,0.6);
  143. .label{
  144. margin-right: 20rpx;
  145. }
  146. image{
  147. width: 40rpx;
  148. height: 40rpx;
  149. margin-right: 20rpx;
  150. }
  151. }
  152. }
  153. }
  154. </style>