index.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. <template>
  2. <view class="content">
  3. <nav-bar :navIndex="2"></nav-bar>
  4. <view class="user-info" @click="userTap()">
  5. <view class="avatar">
  6. <image :src="userInfos.headimg"></image>
  7. </view>
  8. <view class="user-s">
  9. <view class="name">你好!</view>
  10. <view class="desc overflow1">{{userInfos.name}}</view>
  11. </view>
  12. <view class="rightIcon">
  13. <image src="../../static/index/mine-icon1.png"></image>
  14. </view>
  15. </view>
  16. <view class="user-info" style="height: 120rpx;">
  17. <view class="user-views" @click="navTaps(item.url)" v-for="(item,index) in navs" :key="index">
  18. <view class="icons">
  19. <image :src="item.imageUrl"></image>
  20. </view>
  21. <view class="name">{{item.name}}</view>
  22. </view>
  23. </view>
  24. <view class="titles">
  25. <view class="lines"></view>
  26. <view class="views">店铺信息</view>
  27. <view class="lines" style="margin-left: 20rpx;"></view>
  28. </view>
  29. <view class="index-bottoms">
  30. <view class="shop-banner">
  31. <img :src="shopInfo.app_logo" alt="">
  32. </view>
  33. <view class="shop-detail">
  34. <view class="views">
  35. <view class="shop-icons">
  36. <img src="/static/index/phone-icon.png" alt="">
  37. </view>
  38. <view class="texts">{{shopInfo.service_phone}}</view>
  39. </view>
  40. <view class="views">
  41. <view class="shop-icons">
  42. <img src="/static/index/eimail-icon.png" alt="">
  43. </view>
  44. <view class="texts">{{shopInfo.service_email}}</view>
  45. </view>
  46. <view class="views">
  47. <view class="shop-icons">
  48. <img src="/static/index/address-icon.png" alt="">
  49. </view>
  50. <view class="texts">{{shopInfo.app_address}}</view>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. </template>
  56. <script>
  57. import api from 'utils/api'
  58. import wybNoticeBar from '@/components/wyb-noticeBar/wyb-noticeBar.vue'
  59. import navBar from '@/components/nav-bar/nav-bar.vue'
  60. export default {
  61. components:{wybNoticeBar,navBar},
  62. data() {
  63. return {
  64. navs:[
  65. {"url":1,name:"洗鞋订单","imageUrl":"/static/index/mine-icon3.png","url":"/pages/shoeList/index"},
  66. {"url":1,name:"我的预约","imageUrl":"/static/index/mine-icon2.png","url":"/pages/subscribeList/index"},
  67. {"url":1,name:"商城订单","imageUrl":"/static/index/mine-icon4.png","url":"/pages/shopList/index"}
  68. ],
  69. list: [{
  70. iconPath: "home",
  71. selectedIconPath: "home-fill",
  72. text: '首页',
  73. count: 2,
  74. isDot: true,
  75. customIcon: false,
  76. },
  77. {
  78. iconPath: "account",
  79. selectedIconPath: "account-fill",
  80. text: '我的',
  81. count: 23,
  82. isDot: false,
  83. customIcon: false,
  84. },
  85. ],
  86. current: 0,
  87. texts:{
  88. },
  89. shopInfo:'',
  90. array:['测试11', '测试11', '测试11', '测试11'],
  91. title: 'Hello',
  92. userInfos:'',
  93. rotation: [
  94. {
  95. id: 1,
  96. url: 'https://imgcps.jd.com/ling4/100035927374/5Lqs6YCJ5aW96LSn/5L2g5YC85b6X5oul5pyJ/p-5bd8253082acdd181d02fa42/60f03300/cr/s/q.jpg'
  97. },
  98. {
  99. id: 2,
  100. url: 'https://img12.360buyimg.com/pop/s1180x940_jfs/t1/217650/27/18929/95548/627b69e5E7f4c1ff2/1a6be6e037e34e5c.jpg.webp'
  101. },
  102. {
  103. id: 3,
  104. url: 'https://imgcps.jd.com/ling4/100012043978/5Lqs6YCJ5aW96LSn/5L2g5YC85b6X5oul5pyJ/p-5bd8253082acdd181d02fa09/00d13111/cr/s/q.jpg'
  105. },
  106. {
  107. id: 4,
  108. url: 'https://imgcps.jd.com/ling4/100014348458/5Lqs6YCJ5aW96LSn/5L2g5YC85b6X5oul5pyJ/p-5bd8253082acdd181d02fa7f/aa5a1911/cr/s/q.jpg'
  109. }
  110. ]
  111. }
  112. },
  113. onLoad() {
  114. },
  115. onShow() {
  116. this.getShopSet();
  117. this.getUserInfo();
  118. },
  119. methods: {
  120. navTaps(url){
  121. uni.navigateTo({
  122. url:url
  123. })
  124. },
  125. userTap(){
  126. uni.navigateTo({
  127. url:"/pages/userInfoUpdate/index"
  128. })
  129. },
  130. //获取用户信息
  131. getUserInfo(){
  132. api.getUserInfo().then((res)=>{
  133. console.error(res)
  134. if(res.code==1){
  135. this.userInfos=res.data.detail
  136. }
  137. })
  138. },
  139. //获取店铺设置
  140. getShopSet(){
  141. api.getShopSet().then((res)=>{
  142. if(res.code==1){
  143. this.shopInfo=res.data
  144. }
  145. })
  146. },
  147. }
  148. }
  149. </script>
  150. <style lang="scss">
  151. .user-info{
  152. border-radius: 16rpx;
  153. width: 630rpx;
  154. height: 140rpx;
  155. background-color: #fff;
  156. display: flex;
  157. margin: 20rpx auto;
  158. padding: 30rpx;
  159. position: relative;
  160. .user-views{
  161. flex: 1;
  162. text-align: center;
  163. .name{
  164. color: #222;
  165. font-size: 28rpx;
  166. margin-top: 5rpx;
  167. }
  168. .icons{
  169. image{
  170. width: 60rpx;
  171. height: 60rpx;
  172. }
  173. }
  174. }
  175. .rightIcon{
  176. position: absolute;
  177. right: 30rpx;
  178. top: 76rpx;
  179. image{
  180. width: 40rpx;
  181. height: 40rpx;
  182. }
  183. }
  184. .user-s{
  185. margin: 20rpx 0 0 30rpx;
  186. .name{
  187. color: #222;
  188. font-size: 28rpx;
  189. margin-top: 5rpx;
  190. }
  191. .desc{
  192. color: #222;
  193. font-size: 32rpx;
  194. margin-top: 5rpx;
  195. }
  196. }
  197. .avatar{
  198. image{
  199. width: 128rpx;
  200. height: 128rpx;
  201. border-radius: 50%;
  202. }
  203. }
  204. }
  205. .index-bottoms{
  206. margin-top: 15rpx;
  207. padding:0 30rpx;
  208. .shop-detail{
  209. padding-bottom: 180rpx;
  210. margin-bottom: 100rpx;
  211. .views{
  212. margin-top: 10rpx;
  213. display: flex;
  214. line-height: 30rpx;
  215. .texts{
  216. color: #222;
  217. font-size: 20rpx;
  218. margin-left: 10rpx;
  219. }
  220. .shop-icons{
  221. img{
  222. width: 24rpx;
  223. height: 24rpx;
  224. }
  225. }
  226. }
  227. }
  228. .shop-banner{
  229. img{
  230. width: 688rpx;
  231. height: 284rpx;
  232. border-radius: 16rpx;
  233. }
  234. }
  235. }
  236. .title-texts{
  237. color: #222;
  238. font-size: 20rpx;
  239. text-align: center;
  240. margin-top: 10rpx;
  241. }
  242. .titles{
  243. text-align: center;
  244. display: flex;
  245. justify-content: center;
  246. margin-top: 35rpx;
  247. .lines{
  248. width: 18rpx;
  249. height: 4rpx;
  250. background: #000000;
  251. border-radius: 4rpx;
  252. margin: 18rpx 20rpx 0 0;
  253. }
  254. .views{
  255. font-size: 28rpx;
  256. color: #222;
  257. }
  258. }
  259. .contents{
  260. }
  261. swiper{
  262. height: 328rpx;
  263. }
  264. .swiper{
  265. margin: 12rpx auto;
  266. text-align: center;
  267. }
  268. .swiper-img{
  269. width: 684rpx;
  270. height: 328rpx;
  271. text-align: center;
  272. border-radius: 16rpx;
  273. }
  274. </style>