my.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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 ? data.card.replace(/(\d{6})\d{8}(\d{4})/, '$1********$2') : ''}}</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="tozhuanzhang()" v-if="data.yzh == 1">
  34. <image src="../../static/img/zhuanzhang.png" mode=""></image>
  35. <text>转账记录</text>
  36. </view>
  37. <view class="li flex" @click="password()">
  38. <image src="../../static/img/my1.png" mode=""></image>
  39. <text>修改密码</text>
  40. </view>
  41. <view class="li flex" @click="out()">
  42. <image src="../../static/img/my2.png" mode=""></image>
  43. <text>退出登录</text>
  44. </view>
  45. </view>
  46. <u-modal v-model="show" @confirm="confirm" :show-cancel-button="true" @cancel="cancel" content="您确定要退出登录状态吗?"></u-modal>
  47. <tabBar :pagePath="'/pages/index/my'"></tabBar>
  48. </view>
  49. </template>
  50. <script>
  51. export default {
  52. data() {
  53. return {
  54. show: false,
  55. data: {},
  56. // count:0
  57. }
  58. },
  59. onLoad(option) {
  60. this.getUserInfo()
  61. },
  62. // onShow() {
  63. // this.$http.getTopicNum().then(res => {
  64. // this.count = res.data.result
  65. // })
  66. // },
  67. methods: {
  68. tozhuanzhang(){
  69. uni.navigateTo({
  70. url:"/pages/index/jilu"
  71. })
  72. },
  73. password() {
  74. uni.navigateTo({
  75. url: '/pages/user/password',
  76. })
  77. },
  78. out() {
  79. this.show = true
  80. },
  81. confirm() {
  82. uni.removeStorageSync('token');
  83. uni.reLaunch({
  84. url: '/pages/login/login'
  85. });
  86. },
  87. cancel() {
  88. this.show = false
  89. },
  90. getUserInfo() {
  91. this.$http.getUserInfo().then(res => {
  92. if (res.data.code == 200) {
  93. console.log(res)
  94. this.data = res.data.result
  95. // console.log(this.data)
  96. }
  97. })
  98. },
  99. }
  100. }
  101. </script>
  102. <style lang="scss">
  103. .my {
  104. height: 100%;
  105. position: relative;
  106. background: #F5F8FF;
  107. .myBGC {
  108. position: absolute;
  109. width: 100%;
  110. top: 0;
  111. height: 600rpx;
  112. }
  113. .info {
  114. position: relative;
  115. z-index: 1;
  116. width: 680rpx;
  117. margin: 24rpx auto;
  118. .text {
  119. flex: 1;
  120. color: rgba(0, 0, 0, 0.6);
  121. font-size: 28rpx;
  122. .name {
  123. font-size: 44rpx;
  124. font-family: PingFang SC-Semibold, PingFang SC;
  125. font-weight: 600;
  126. color: rgba(0, 0, 0, 0.8);
  127. margin-bottom: 10rpx;
  128. }
  129. }
  130. image {
  131. width: 120rpx;
  132. height: 120rpx;
  133. opacity: 1;
  134. border: 1px solid #FFFFFF;
  135. border-radius: 50%;
  136. box-shadow: 0px 0px 20rpx 0px rgba(0, 0, 0, 0.05), inset 0px 2rpx 2rpx 0px rgba(255, 255, 255, 0.25);
  137. }
  138. }
  139. .con {
  140. z-index: 1;
  141. position: relative;
  142. width: 680rpx;
  143. margin: 24rpx auto;
  144. padding: 32rpx 32rpx 0;
  145. background: linear-gradient(180deg, #F2F9FB 0%, #FFFFFF 100%);
  146. box-shadow: 0px 0px 20rpx 0px rgba(0, 0, 0, 0.05), inset 0px 2rpx 2rpx 0px rgba(255, 255, 255, 0.25);
  147. border-radius: 24rpx;
  148. .li {
  149. padding-bottom: 32rpx;
  150. font-size: 28rpx;
  151. color: rgba(0, 0, 0, 0.6);
  152. .label {
  153. margin-right: 20rpx;
  154. }
  155. image {
  156. width: 40rpx;
  157. height: 40rpx;
  158. margin-right: 20rpx;
  159. }
  160. }
  161. }
  162. }
  163. </style>