shopList.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. <template>
  2. <view class="box">
  3. <view class="allShop">
  4. <view class="topView">
  5. <view class="search">
  6. <!-- 120rpx -->
  7. <view class="searchVIew">
  8. <image src="../../static/img/icon_search.png" mode="" class="searchIMg"></image>
  9. <input type="text" value="" placeholder-style="color:#999999" placeholder="请输入门店名称"
  10. class="searchInput" v-model="shopName" @confirm="searchList" />
  11. <image src="../../static/img/icon_search_del.png" v-show="shopName" mode="" class="ssScImg"
  12. @click="searchSc"></image>
  13. </view>
  14. </view>
  15. <view class="screen">
  16. <view class="screenLine">
  17. <view class="screenLineTxt" @click="showCity(),comprehensiveShow=false,levelShow=false">
  18. {{cityName}}
  19. </view>
  20. <image src="../../static/img/icon_arrow_gray.png" mode="" v-show="!showCity" class="screenJt">
  21. </image>
  22. </view>
  23. <view class="screenLine" @click="juli" :class="{colorCS:comprehensiveShow}">
  24. <!-- <view class="screenLineTxt" v-if="comprehensive==0">综合排序</view> -->
  25. <view class="screenLineTxt" v-if="comprehensive==1">距离最近</view>
  26. <view class="screenLineTxt" v-if="comprehensive==2">评分最高</view>
  27. <image src="../../static/img/icon_arrow_gray.png" mode=""
  28. class="screenJt"></image>
  29. </view>
  30. <!-- 综合排序 -->
  31. <view class="shoplevelBox " v-show="comprehensiveShow" @click="comprehensiveShow=false">
  32. <view class="shoplevelCont ">
  33. <view class="comprehensivebox">
  34. <!-- <view class="comprehensiveLine" :class="{comprehensiveACtive:comprehensive==0}"
  35. @click.stop="comprehensiveClick(0)">综合排序</view> -->
  36. <view class="comprehensiveLine" :class="{comprehensiveACtive:comprehensive==1}"
  37. @click.stop="comprehensiveClick(1)">距离最近</view>
  38. <view class="comprehensiveLine" :class="{comprehensiveACtive:comprehensive==2}"
  39. @click.stop="comprehensiveClick(2)">评分最高</view>
  40. </view>
  41. </view>
  42. </view>
  43. <!-- 综合排序 -->
  44. </view>
  45. </view>
  46. <view class="shopLineBox">
  47. <view class="shopline" v-for="(item,index) in queryShopList" @click="goDetail(item)">
  48. <view class="shoplineLeft">
  49. <image :src="item.photoPath" mode="" class="shopImg" v-if="item.photoPath"></image>
  50. <image src="../../static/img/noimg.png" mode="" class="shopImg" v-else></image>
  51. </view>
  52. <view class="shopright">
  53. <view class="shopTop">
  54. <view class="shopName">{{item.shopName}}</view>
  55. <!-- <image src="../../static/img/shopcall.png" mode="" class="shopCallImg"></image> -->
  56. </view>
  57. <view class="brandsBg">
  58. <span class="shopScore1" v-if="item.shopScore">{{item.shopScore}}</span>
  59. <span class="shopScore11" v-if="item.shopScore">分</span>
  60. <span class="shopScore2" v-if="!item.shopScore">暂无评分</span>
  61. <view class="brands" v-if="item.brands" v-for="(barnd,index2) in item.brands.split(',')">
  62. {{barnd}}</view>
  63. </view>
  64. <view class="timeBg">
  65. <view class="shopTime"><span v-if="item.startTime">{{item.startTime}}</span> - <span
  66. v-if="item.endTime">{{item.endTime}}</span> </view>
  67. <span class="shopScore3">服务次数 {{item.sheetSum}}</span>
  68. </view>
  69. <view class="shopBottom">
  70. <view class="shopBottomLeft">
  71. <span v-if="item.distance&&item.distance!= '0.00'">{{item.distance}}km</span>
  72. <span class="shopaddress">{{item.address}}</span>
  73. </view>
  74. <!-- <view class="Btn" @click="ckshop(item)">确定</view> -->
  75. </view>
  76. </view>
  77. </view>
  78. <view v-if="queryShopList==''" class="nodataBox">
  79. <image src="../../static/img/nodata.png" mode="widthFix" class="nodataImg"></image>
  80. <view class="noTxt">暂无数据</view>
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. </template>
  86. <script>
  87. export default {
  88. data() {
  89. return {
  90. location: {
  91. lng:'',
  92. lat:'',
  93. },
  94. cityName: '选择城市',
  95. cityCode: '',
  96. queryShopList: '',
  97. shopName: '',
  98. level: '',
  99. comprehensive: 1,
  100. shopLevel: [{
  101. name: '洗剪点',
  102. ckeck: false
  103. }, {
  104. name: 'VIIIP',
  105. ckeck: false
  106. }],
  107. levelShow: false,
  108. comprehensiveShow: false,
  109. uid: '',
  110. share:{
  111. title:'车蓝图4S店养车服务',
  112. path:'/pages/shop/shopList',
  113. imageUrl:'',
  114. desc:'',
  115. content:''
  116. }
  117. }
  118. },
  119. onShow() {
  120. this.levelShow = false;
  121. this.comprehensiveShow = false;
  122. // this.$common.isUserId();
  123. var selectCity = uni.getStorageSync("selectCity");
  124. this.location = uni.getStorageSync("locationCity");
  125. if (selectCity) {
  126. //有选择的城市
  127. this.cityName = selectCity.city
  128. this.cityCode = selectCity.code
  129. }
  130. else{
  131. this.cityName = this.location.cityName
  132. this.cityCode = this.location.cityCode
  133. }
  134. this.getqueryShopList() //获取全部门店列表
  135. },
  136. onLoad() {
  137. },
  138. methods: {
  139. showCity(){
  140. console.log('城市');
  141. uni.navigateTo({
  142. url:'../chooseCity/chooseCity'
  143. })
  144. },
  145. mdlx() {
  146. this.levelShow = !this.levelShow;
  147. this.comprehensiveShow = false;
  148. },
  149. juli() {
  150. this.comprehensiveShow = !this.comprehensiveShow;
  151. this.levelShow = false;
  152. },
  153. searchList() {
  154. this.getqueryShopList() //获取全部门店列表
  155. },
  156. searchSc() {
  157. this.shopName = '';
  158. this.getqueryShopList() //获取全部门店列表
  159. },
  160. getqueryShopList() {
  161. uni.showLoading({
  162. title: '加载中'
  163. })
  164. this.$http('worldKeepCar/worldHome/getWorldShopInfoList', {
  165. name: this.shopName,
  166. lat: this.location.lat ? this.location.lat : '',
  167. lng: this.location.lng ? this.location.lng : '',
  168. cityCode: this.cityCode ? this.cityCode : '',
  169. comprehensive: this.comprehensive,
  170. }, 'GET').then(res => {
  171. uni.hideLoading();
  172. this.queryShopList = res.data
  173. // 处理 undefined和null转为空白字符串
  174. this.queryShopList.forEach((item, index) => {
  175. for (const key in item) {
  176. item[key] = this.$praseStrEmpty(item[key])
  177. }
  178. })
  179. })
  180. },
  181. getqueryBShopLevel() {
  182. this.$http('miniAppShopInfoController/queryBShopLevel', {
  183. }, 'GET').then(res => {
  184. res.data.forEach(item => {
  185. item.ckeck = false;
  186. })
  187. this.shopLevel = res.data
  188. })
  189. },
  190. levelClick(item) {
  191. item.ckeck = !item.ckeck
  192. },
  193. shoplevelReset() {
  194. this.shopLevel.forEach(item => {
  195. item.ckeck = false;
  196. })
  197. // this.getqueryShopList()
  198. //this.levelShow=false;
  199. },
  200. shoplevelsbu() {
  201. var arr = []
  202. this.shopLevel.forEach(item => {
  203. if (item.ckeck) {
  204. arr.push(item.id)
  205. }
  206. })
  207. this.level = arr.join(',')
  208. console.log(this.level)
  209. this.levelShow = false;
  210. this.getqueryShopList()
  211. },
  212. comprehensiveClick(num) {
  213. this.comprehensive = num;
  214. this.comprehensiveShow = false;
  215. this.getqueryShopList()
  216. },
  217. goDetail(item) {
  218. uni.navigateTo({
  219. url: '../shop/shopDetail?id=' + item.shopId
  220. })
  221. }
  222. }
  223. }
  224. </script>
  225. <style scoped>
  226. .box {
  227. min-height: 100vh;
  228. background: #F4F5F7;
  229. }
  230. .allShop {
  231. /* background: #FFFFFF; */
  232. }
  233. .topView {
  234. position: fixed;
  235. width: 100%;
  236. height: 170rpx;
  237. background-color: #FFFFFF;
  238. z-index: 11;
  239. }
  240. .searchIMg {
  241. width: 40rpx;
  242. height: 40rpx;
  243. margin-top: 16rpx;
  244. margin-left: 20rpx;
  245. }
  246. .ssScImg {
  247. width: 40rpx;
  248. height: 40rpx;
  249. margin-top: 16rpx;
  250. }
  251. .search {
  252. padding: 24rpx;
  253. background: #FFFFFF;
  254. }
  255. .searchVIew {
  256. display: flex;
  257. background: #F4F5F7;
  258. border-radius: 36rpx;
  259. height: 72rpx;
  260. }
  261. .searchInput {
  262. color: #333333;
  263. font-size: 28rpx;
  264. padding-left: 16rpx;
  265. height: 72rpx;
  266. line-height: 72rpx;
  267. width: 570rpx;
  268. }
  269. .screenJt {
  270. width: 24rpx;
  271. height: 24rpx;
  272. margin-top: 7rpx;
  273. margin-left: 5rpx;
  274. }
  275. .screen {
  276. display: flex;
  277. justify-content: space-around;
  278. padding: 0 24rpx 24rpx;
  279. align-items: center;
  280. border-bottom: 2rpx solid #EEEEEE;
  281. position: relative;
  282. background: #FFFFFF;
  283. }
  284. .screenLine {
  285. display: flex;
  286. color: #333333;
  287. font-size: 28rpx;
  288. }
  289. .shopLineBox {
  290. padding: 190rpx 0rpx 25rpx;
  291. }
  292. .shopBox2 {
  293. margin-top: 20rpx;
  294. padding-bottom: 30rpx;
  295. background: #FFFFFF;
  296. border-radius: 10rpx;
  297. padding-left: 20rpx;
  298. padding-right: 20rpx;
  299. }
  300. .shoplevelBox {
  301. position: fixed;
  302. left: 0;
  303. width: 750rpx;
  304. top: 196rpx;
  305. background: rgba(0, 0, 0, 0.4);
  306. z-index: 11;
  307. border-top: 1px solid #EEEEEE;
  308. border-bottom: 1px solid #EEEEEE;
  309. height: calc(100vh - 196rpx);
  310. }
  311. /* #ifdef H5 */
  312. .shoplevelBox {
  313. top: calc(196rpx + 44px);
  314. }
  315. /* #endif */
  316. .shoplevelCont {
  317. display: flex;
  318. flex-wrap: wrap;
  319. background: #FFFFFF;
  320. padding: 24rpx;
  321. }
  322. .shoplevelLine {
  323. color: #333333;
  324. line-height: 64rpx;
  325. padding: 0 40rpx;
  326. height: 64rpx;
  327. background: #F4F5F7;
  328. border-radius: 32rpx;
  329. margin-right: 20rpx;
  330. margin-bottom: 30rpx;
  331. }
  332. .shoplevelBottom {
  333. display: flex;
  334. justify-content: space-between;
  335. padding-top: 60rpx;
  336. padding-right: 24rpx;
  337. background: #FFFFFF;
  338. padding: 24rpx;
  339. }
  340. .shoplevelReset {
  341. width: 320rpx;
  342. height: 74rpx;
  343. border-radius: 37rpx;
  344. border: 2rpx solid #FF4F00;
  345. text-align: center;
  346. line-height: 74rpx;
  347. font-size: 30rpx;
  348. font-family: PingFangSC-Medium, PingFang SC;
  349. font-weight: 500;
  350. color: #FF4F00;
  351. }
  352. .shoplevelsbu {
  353. width: 320rpx;
  354. height: 74rpx;
  355. background: #FF4F00;
  356. border-radius: 37rpx;
  357. font-size: 30rpx;
  358. font-family: PingFangSC-Medium, PingFang SC;
  359. font-weight: 500;
  360. color: #FFFFFF;
  361. text-align: center;
  362. line-height: 74rpx;
  363. border: 2rpx solid #FF4F00;
  364. }
  365. .shoplevalActive {
  366. color: #FF4F00;
  367. background: rgba(255, 79, 0, 0.08);
  368. }
  369. .comprehensiveLine {
  370. /* width: 200rpx;
  371. height: 60rpx;
  372. line-height: 60rpx;
  373. text-align: center;
  374. border: 1px solid rgb(228, 228, 228);
  375. border-radius: 10rpx; */
  376. font-size: 26rpx;
  377. font-family: PingFangSC-Regular, PingFang SC;
  378. font-weight: 400;
  379. color: #333333;
  380. padding: 25rpx 0;
  381. }
  382. .comprehensivebox {
  383. /* display: flex;justify-content: space-around; */
  384. }
  385. .comprehensiveACtive {
  386. color: #FF4F00;
  387. }
  388. .nodataImg {
  389. width: 400rpx;
  390. padding-top: 100rpx;
  391. }
  392. .noTxt {
  393. font-size: 36rpx;
  394. color: #999999;
  395. padding-top: 50rpx;
  396. }
  397. .nodataBox {
  398. text-align: center;
  399. }
  400. .shopImg {
  401. width: 146rpx;
  402. height: 146rpx;
  403. border-radius: 6rpx;
  404. }
  405. .shopBox {
  406. padding-top: 30rpx;
  407. display: flex;
  408. }
  409. .flex {
  410. display: flex;
  411. justify-content: space-between;
  412. }
  413. .shopCont {
  414. padding-left: 22rpx;
  415. width: 520rpx;
  416. }
  417. .shopName {
  418. color: #333333;
  419. font-size: 26rpx;
  420. font-weight: 600;
  421. }
  422. .span1 {
  423. color: #FF4F00;
  424. font-size: 36rpx;
  425. }
  426. .span2 {
  427. color: #FF4F00;
  428. font-size: 22rpx;
  429. }
  430. .span3 {
  431. color: #333333;
  432. font-size: 22rpx;
  433. padding-left: 22rpx;
  434. }
  435. .shopBq {
  436. color: #FF4F00;
  437. font-size: 22rpx;
  438. border-radius: 4rpx;
  439. border: 1px solid #FF4F00;
  440. line-height: 30rpx;
  441. height: 30rpx;
  442. padding: 0rpx 5rpx;
  443. margin-top: 10rpx;
  444. }
  445. .brandsBg {
  446. display: flex;
  447. flex-wrap: wrap;
  448. align-items: center;
  449. }
  450. .brands {
  451. border-radius: 4rpx;
  452. padding: 0 5rpx;
  453. color: #F19D01;
  454. height: 28rpx;
  455. border: 1px solid #F19D01;
  456. margin-right: 5rpx;
  457. font-size: 20rpx;
  458. line-height: 28rpx;
  459. }
  460. .timeBg {
  461. display: flex;
  462. align-items: center;
  463. }
  464. .shopTime {
  465. color: #666666;
  466. font-size: 22rpx;
  467. }
  468. .addressBox {
  469. color: #666666;
  470. font-size: 22rpx;
  471. }
  472. .shopNameSearchInput {
  473. width: 500rpx;
  474. }
  475. .colorCS {
  476. color: #FF4F00;
  477. }
  478. .shopbox {
  479. padding: 0 16rpx;
  480. }
  481. .shopline {
  482. padding: 20rpx;
  483. background: #FFFFFF;
  484. border-radius: 10rpx;
  485. margin-top: 20rpx;
  486. display: flex;
  487. }
  488. .shopImg {
  489. width: 146rpx;
  490. height: 146rpx;
  491. border-radius: 10rpx;
  492. }
  493. .shopCallImg {
  494. width: 38rpx;
  495. height: 46rpx;
  496. }
  497. .shopTop {
  498. display: flex;
  499. justify-content: space-between;
  500. width: 510rpx;
  501. }
  502. .shopright {
  503. padding-left: 20rpx;
  504. }
  505. .shopName {
  506. font-size: 26rpx;
  507. color: #333333;
  508. line-height: 37rpx;
  509. width: 450rpx;
  510. white-space: nowrap;
  511. overflow: hidden;
  512. text-overflow: ellipsis;
  513. }
  514. .shopScore1 {
  515. font-size: 36rpx;
  516. font-weight: bold;
  517. color: #FF4F00;
  518. height: 50rpx;
  519. line-height: 50rpx;
  520. }
  521. .shopScore11{
  522. font-size: 22rpx;
  523. color: #FF4F00;
  524. margin-right: 14rpx;
  525. }
  526. .shopScore2 {
  527. font-size: 22rpx;
  528. color: #666666;
  529. margin-right: 14rpx;
  530. padding: 8rpx 0;
  531. }
  532. .shopScore3 {
  533. font-size: 22rpx;
  534. color: #333333;
  535. padding-left: 20rpx;
  536. }
  537. .Btn {
  538. width: 104rpx;
  539. height: 56rpx;
  540. background: #FF2400 linear-gradient(135deg, #FD5300 0%, #FF270A 100%);
  541. border-radius: 6rpx;
  542. font-size: 26rpx;
  543. text-align: center;
  544. color: #FFFFFF;
  545. line-height: 56rpx;
  546. }
  547. .shopBottom {
  548. display: flex;
  549. }
  550. .shopBottomLeft {
  551. width: 500rpx;
  552. font-size: 22rpx;
  553. color: #666666;
  554. line-height: 30rpx;
  555. padding-top: 10rpx;
  556. }
  557. .shopaddress {
  558. padding-left: 10rpx;
  559. }
  560. </style>