expertServices.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <template>
  2. <view class="content">
  3. <!-- 我的服务顾问 -->
  4. <view class="ad-bg-box" v-if="users">
  5. <view class="ad-box">
  6. <view class="ad-sec-tit">
  7. 我的服务顾问
  8. </view>
  9. <view class="ad-con-box">
  10. <image :src="usersAvatarStr" mode="aspectFit" class="ad-icon-mine"></image>
  11. <view class="ad-list-r">
  12. <text class="ad-name">{{users.name}}</text>
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. <!-- 全部服务顾问横栏 -->
  18. <view class="mid-box">
  19. <view class="mid-v-line"></view>
  20. <view class="mid-sec-tit">全部服务顾问</view>
  21. </view>
  22. <!-- 服务顾问list -->
  23. <view class="ad-list" v-for="(item,index) in queryManagerList" :key="item.id" @click="goDetail(item)">
  24. <image :src="item.avatar ? item.avatar : '../../static/timg/pic_def_ava@2x.png'" class="ad-list-img"></image>
  25. <view class="ad-list-r">
  26. <text class="ad-name">{{item.name}}</text>
  27. </view>
  28. <view class="address-arrow">
  29. <image src="../../static/img/little_rightArrow.png" mode="aspectFit"></image>
  30. </view>
  31. </view>
  32. <!-- 上拉 加载更多 -->
  33. <view class="noMore" v-if="noMoreShow && (queryManagerList.length!=0)">没有更多数据</view>
  34. <!-- 无数据空白页 -->
  35. <nodata v-if="queryManagerList.length==0"></nodata>
  36. </view>
  37. </template>
  38. <script>
  39. export default {
  40. data() {
  41. return {
  42. queryManagerList: '',
  43. noMoreShow: false,
  44. users: ''
  45. }
  46. },
  47. onLoad() {
  48. this.getQueryManagerList()
  49. },
  50. computed: {
  51. usersAvatarStr() {
  52. return this.users.avatar ? this.users.avatar : '../../static/timg/pic_def_ava@2x.png'
  53. }
  54. },
  55. methods: {
  56. getQueryManagerList() {
  57. uni.showLoading({
  58. title: '加载中'
  59. })
  60. this.$http('openmy/queryManager', {}, 'GET').then(res => {
  61. uni.hideLoading();
  62. this.queryManagerList = res.data.userlist
  63. this.users = res.data.users
  64. console.log('服务顾问列表===', res);
  65. })
  66. },
  67. goDetail(item) {
  68. uni.navigateTo({
  69. url: '../index/personalCard?adInfo=' + JSON.stringify(item)
  70. })
  71. }
  72. },
  73. // 下拉刷新
  74. onPullDownRefresh() {
  75. this.getQueryManagerList()
  76. setTimeout(function() {
  77. uni.stopPullDownRefresh();
  78. }, 1000);
  79. }
  80. }
  81. </script>
  82. <style scoped>
  83. .content {
  84. min-height: 100vh;
  85. background-color: #F4F5F7;
  86. padding-bottom: 60rpx;
  87. }
  88. .ad-bg-box {
  89. background-color: #FF0000;
  90. padding: 20rpx 24rpx;
  91. }
  92. .ad-box {
  93. background-color: #FFFFFF;
  94. border-radius: 10rpx;
  95. }
  96. .ad-con-box {
  97. display: flex;
  98. padding-bottom: 20rpx;
  99. margin-top: 30rpx;
  100. margin-left: 30rpx;
  101. }
  102. .ad-sec-tit {
  103. font-size: 24rpx;
  104. color: #666;
  105. padding-top: 30rpx;
  106. margin-left: 30rpx;
  107. }
  108. .ad-icon-mine {
  109. width: 100rpx;
  110. height: 100rpx;
  111. border-radius: 50rpx;
  112. }
  113. .ad-con-box-r {
  114. display: flex;
  115. flex-direction: column;
  116. justify-content: center;
  117. margin-left: 30rpx;
  118. }
  119. .ad-name {
  120. font-size: 30rpx;
  121. font-weight: bold;
  122. color: #333333;
  123. margin: auto 20rpx;
  124. }
  125. /* 全部服务顾问横栏 */
  126. .mid-v-line {
  127. background-color: #FF0000;
  128. width: 8rpx;
  129. height: 30rpx;
  130. border-radius: 4rpx;
  131. margin-left: 30rpx;
  132. }
  133. .mid-box {
  134. display: flex;
  135. height: 94rpx;
  136. align-items: center;
  137. background-color: #FFFFFF;
  138. margin-bottom: 20rpx;
  139. }
  140. .mid-sec-tit {
  141. margin-left: 16rpx;
  142. font-size: 30rpx;
  143. font-weight: 500;
  144. color: #333333;
  145. }
  146. /* 顾问list */
  147. .ad-list {
  148. margin: 0rpx 24rpx 20rpx;
  149. padding: 20rpx;
  150. background-color: #FFFFFF;
  151. border-radius: 10rpx;
  152. display: flex;
  153. }
  154. .ad-list-img {
  155. width: 84rpx;
  156. height: 84rpx;
  157. border-radius: 42rpx;
  158. }
  159. .address-arrow {
  160. width: 30rpx;
  161. }
  162. .address-arrow image {
  163. width: 30rpx;
  164. height: 100%;
  165. }
  166. .ad-list-r {
  167. display: flex;
  168. flex: 1;
  169. }
  170. .noMore {
  171. text-align: center;
  172. line-height: 50rpx;
  173. color: #999999;
  174. font-size: 28rpx;
  175. }
  176. /* .nodataImg {
  177. width: 400rpx;
  178. padding-top: 100rpx;
  179. }
  180. .noTxt {
  181. font-size: 36rpx;
  182. color: #999999;
  183. padding-top: 50rpx;
  184. }
  185. .nodataBox {
  186. text-align: center;
  187. } */
  188. </style>