setup.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <template>
  2. <view class="box">
  3. <view class="main">
  4. <view class="mkBox">
  5. <view class="line">
  6. <view class="lineTitle">昵称</view>
  7. <view class="lineCont">{{ueserInfo.memberInfo.nickName}}</view>
  8. </view>
  9. <view class="line">
  10. <view class="lineTitle">手机号</view>
  11. <view class="lineCont">{{iphoneData.phone}}</view>
  12. </view>
  13. <view class="line boderNo">
  14. <view class="lineTitle">真实姓名</view>
  15. <view class="lineCont">
  16. <input type="text" v-model="ueserInfo.memberInfo.name" value="" placeholder="请输入" class="lineinput" @blur="updateBmember"/>
  17. </view>
  18. </view>
  19. </view>
  20. <view class="mkBox">
  21. <view class="line boderNo" @click="goiphone">
  22. <view class="lineTitle">联系人管理</view>
  23. <view class="lineCont">
  24. <image src="../../static/img/jt.png" mode="" class="lineJt"></image>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="mkBox">
  29. <view class="line " @click="goTreaty">
  30. <view class="lineTitle">服务协议</view>
  31. <view class="lineCont">
  32. <image src="../../static/img/jt.png" mode="" class="lineJt"></image>
  33. </view>
  34. </view>
  35. <view class="line boderNo" @click="goIntimity">
  36. <view class="lineTitle">隐私政策</view>
  37. <view class="lineCont">
  38. <image src="../../static/img/jt.png" mode="" class="lineJt"></image>
  39. </view>
  40. </view>
  41. </view>
  42. <view class="signOut" @click="signOut">退出登录</view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. export default {
  48. data() {
  49. return {
  50. ueserInfo:'',
  51. iphoneData:'',
  52. name:'',
  53. }
  54. },
  55. onLoad() {
  56. this.ueserInfo=uni.getStorageSync("logodata");
  57. },
  58. onShow() {
  59. this.getIphoneData()
  60. },
  61. methods: {
  62. updateBmember(){
  63. if(this.name!=''){
  64. this.$http('miniAppMyBMemberCar/updateBmember', {
  65. name:this.name
  66. },'POST').then(res => {
  67. if(res.code==0){
  68. console.log(this.ueserInfo)
  69. uni.setStorage({
  70. key: 'logodata',
  71. data: this.ueserInfo,
  72. success: function () {}
  73. });
  74. }
  75. })
  76. }
  77. },
  78. getIphoneData(){
  79. uni.showLoading({ });
  80. this.$http('miniAppMyBMemberCar/queryBMemberContactIsDefault', {
  81. },'GET').then(res => {
  82. uni.hideLoading();
  83. this.iphoneData=res.data;
  84. })
  85. },
  86. signOut(){
  87. //uni.clearStorageSync();
  88. uni.removeStorageSync('logodata');
  89. uni.navigateTo({
  90. url:'../login/login'
  91. })
  92. },
  93. goiphone(){
  94. uni.navigateTo({
  95. url:'../iPhone/phoneList'
  96. })
  97. },
  98. goTreaty(){
  99. uni.navigateTo({
  100. url:'treaty'
  101. })
  102. },
  103. goIntimity(){
  104. uni.navigateTo({
  105. url:'intimity'
  106. })
  107. }
  108. }
  109. }
  110. </script>
  111. <style scoped>
  112. .box{
  113. min-height: 100vh;
  114. background:#F4F5F7 ;
  115. }
  116. .main{
  117. padding: 24rpx;
  118. }
  119. .mkBox{
  120. background: #FEFFFE;
  121. border-radius: 10rpx;
  122. padding: 0 22rpx;
  123. margin-bottom: 20rpx;
  124. }
  125. .line{
  126. display: flex;
  127. justify-content: space-between;
  128. padding: 30rpx 0;
  129. border-bottom: 1px solid #DDDDDD;
  130. font-size: 28rpx;
  131. color: #3C3C3C;
  132. }
  133. .lineinput{
  134. text-align: right;
  135. font-size: 28rpx;
  136. color: #3C3C3C;
  137. }
  138. .lineJt{
  139. width: 15rpx;
  140. height: 26rpx;
  141. }
  142. .boderNo{
  143. border: none;
  144. }
  145. .signOut{
  146. width: 702rpx;
  147. height: 98rpx;
  148. background: #FFFFFF;
  149. border-radius: 10rpx;
  150. font-size: 30rpx;
  151. color: #FF3B30;
  152. line-height: 98rpx;
  153. text-align: center;
  154. margin-top: 100rpx;
  155. }
  156. </style>