shopList.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. <template>
  2. <view class="box">
  3. <view class="allShop" >
  4. <view class="topView">
  5. <view class="search"><!-- 120rpx -->
  6. <view class="searchVIew">
  7. <image src="../../static/img/icon_search.png" mode="" class="searchIMg"></image>
  8. <input type="text" value="" placeholder="请输入门店名称" class="searchInput" v-model="shopName" @confirm="searchList" />
  9. <image src="../../static/img/icon_search_del.png" v-show="shopName" mode="" class="ssScImg" @click="searchSc"></image>
  10. </view>
  11. </view>
  12. <view class="screen">
  13. <view class="screenLine">
  14. <view class="screenLineTxt" @click="showCity=true,comprehensiveShow=false,levelShow=false">{{cityname}}</view>
  15. <!-- <image src="../../static/img/icon_arrow_gray.png" mode="" v-show="!showCity" class="screenJt"></image>
  16. <image src="../../static/img/icon_arrow_cheng.png" mode="" v-show="showCity" class="screenJt"></image> -->
  17. </view>
  18. <view class="screenLine" @click="juli" :class="{colorCS:comprehensiveShow}">
  19. <view class="screenLineTxt" v-if="comprehensive==0">综合排序</view>
  20. <view class="screenLineTxt" v-if="comprehensive==1">距离最近</view>
  21. <view class="screenLineTxt" v-if="comprehensive==2">评分最高</view>
  22. <!-- <image src="../../static/img/icon_arrow_gray.png" mode="" v-show="!comprehensiveShow" class="screenJt"></image>
  23. <image src="../../static/img/icon_arrow_cheng.png" mode="" v-show="comprehensiveShow" class="screenJt"></image> -->
  24. </view>
  25. <!-- 综合排序 -->
  26. <view class="shoplevelBox " v-show="comprehensiveShow" @click="comprehensiveShow=false">
  27. <view class="shoplevelCont ">
  28. <view class="comprehensivebox">
  29. <view class="comprehensiveLine" :class="{comprehensiveACtive:comprehensive==0}" @click.stop="comprehensiveClick(0)">综合排序</view>
  30. <view class="comprehensiveLine" :class="{comprehensiveACtive:comprehensive==1}" @click.stop="comprehensiveClick(1)">距离最近</view>
  31. <view class="comprehensiveLine" :class="{comprehensiveACtive:comprehensive==2}" @click.stop="comprehensiveClick(2)">评分最高</view>
  32. </view>
  33. </view>
  34. </view>
  35. <!-- 综合排序 -->
  36. </view>
  37. </view>
  38. <view class="shopLineBox">
  39. <view class="shopBox shopBox2" v-for="(item,index) in queryShopList" @click="goDetail(item)">
  40. <view class="">
  41. <image :src="item.photoPath" mode="" class="shopImg" v-if="item.photoPath"></image>
  42. <!-- <image src="../../static/img/noimg.png" mode="" class="shopImg" v-else></image> -->
  43. </view>
  44. <view class="shopCont">
  45. <view class="shopName">{{item.shopName}}</view>
  46. <view class="flex shopRight">
  47. <view>
  48. <span class="span1" v-if="item.shopScore">{{item.shopScore}}</span>
  49. <span class="span2" v-if="item.shopScore">分</span>
  50. <span class="span2" v-if="!item.shopScore">暂无评分</span>
  51. <span class="span3">服务次数 {{item.sheetSum}} </span>
  52. </view>
  53. <view class="shopBq" v-show="item.levelName">{{item.levelName}}</view>
  54. </view>
  55. <view class="shopTime"><span v-show="item.startTime">{{item.startTime}}</span> - <span v-show="item.endTime">{{item.endTime}}</span> </view>
  56. <view class="flex addressBox">
  57. <view class="address" > <span v-show="item.address"> {{item.address}}</span></view>
  58. <view class="shopKm" v-show="item.distance&&item.distance!= '0.00'">{{item.distance}}km</view>
  59. </view>
  60. </view>
  61. </view>
  62. <view v-if="queryShopList==''" class="nodataBox">
  63. <image src="../../static/img/nodata.png" mode="widthFix" class="nodataImg"></image>
  64. <view class="noTxt">暂无数据</view>
  65. </view>
  66. </view>
  67. </view>
  68. <chose-city @selectCity="selectCity" v-if="showCity" @closeModal="closeModal"></chose-city>
  69. </view>
  70. </template>
  71. <script>
  72. import choseCity from "@/components/chose-city/chose-city"
  73. export default {
  74. components: {
  75. choseCity
  76. },
  77. data() {
  78. return {
  79. location:'',
  80. cityname:'上海市',
  81. queryShopList:'',
  82. shopName:'',
  83. level:'',
  84. comprehensive:1,
  85. shopLevel:[
  86. {name:'洗剪点',ckeck:false},{name:'VIIIP',ckeck:false}
  87. ],
  88. levelShow:false,
  89. comprehensiveShow:false,
  90. showCity:false,
  91. }
  92. },
  93. onShow() {
  94. this.showCity=false;
  95. this.levelShow=false;
  96. this.comprehensiveShow=false;
  97. this.$common.isUserId();
  98. this.location=uni.getStorageSync("location");
  99. if(this.location){
  100. this.cityname=this.location.cityname
  101. }
  102. this.getqueryShopList()//获取全部门店列表
  103. this.getqueryBShopLevel()//查询门店等级
  104. },
  105. onLoad() {
  106. },
  107. methods: {
  108. mdlx(){
  109. this.levelShow=!this.levelShow;this.comprehensiveShow=false;this.showCity=false
  110. },
  111. juli(){
  112. this.comprehensiveShow=!this.comprehensiveShow;this.levelShow=false;this.showCity=false
  113. },
  114. searchList(){
  115. this.getqueryShopList()//获取全部门店列表
  116. },
  117. searchSc(){
  118. this.shopName='';
  119. this.getqueryShopList()//获取全部门店列表
  120. },
  121. selectCity(item) {
  122. console.log('-您选择的城市-',item)
  123. this.location.cityname=item.name;
  124. this.location.cityCode=item.citycode;
  125. this.cityname=item.name;
  126. console.log(this.location)
  127. uni.setStorage({
  128. key: 'location',
  129. data: this.location,
  130. success: function () {}
  131. });
  132. this.showCity = false;
  133. this.getqueryShopList()//获取全部门店列表
  134. },
  135. closeModal() {
  136. this.showCity = false
  137. },
  138. getqueryShopList(){
  139. uni.showLoading({ });
  140. this.$http('miniAppShopInfoController/queryShopList', {
  141. shopName:this.shopName,
  142. lat:this.location.lat,
  143. lng:this.location.lng,
  144. cityCode:this.location.cityCode,
  145. comprehensive:this.comprehensive,
  146. level:this.level,
  147. },'GET').then(res => {
  148. uni.hideLoading();
  149. this.queryShopList=res.data
  150. })
  151. },
  152. getqueryBShopLevel(){
  153. this.$http('miniAppShopInfoController/queryBShopLevel', {
  154. },'GET').then(res => {
  155. res.data.forEach(item=>{
  156. item.ckeck=false;
  157. })
  158. this.shopLevel=res.data
  159. })
  160. },
  161. levelClick(item){
  162. item.ckeck=!item.ckeck
  163. },
  164. shoplevelReset(){
  165. this.shopLevel.forEach(item=>{
  166. item.ckeck=false;
  167. })
  168. // this.getqueryShopList()
  169. //this.levelShow=false;
  170. },
  171. shoplevelsbu(){
  172. var arr=[]
  173. this.shopLevel.forEach(item=>{
  174. if(item.ckeck){
  175. arr.push(item.id)
  176. }
  177. })
  178. this.level=arr.join(',')
  179. console.log(this.level)
  180. this.levelShow=false;
  181. this.getqueryShopList()
  182. },
  183. comprehensiveClick(num){
  184. this.comprehensive=num;
  185. this.comprehensiveShow=false;
  186. this.getqueryShopList()
  187. },
  188. goDetail(item){
  189. uni.navigateTo({
  190. url:'../Shop/shopDetail?id='+item.shopId
  191. })
  192. }
  193. }
  194. }
  195. </script>
  196. <style scoped>
  197. .box{
  198. min-height: 100vh;
  199. background:#F4F5F7 ;
  200. }
  201. .allShop{
  202. /* background: #FFFFFF; */
  203. }
  204. .topView{
  205. position: fixed;
  206. width: 100%;
  207. height: 170rpx;
  208. background-color: #FFFFFF;
  209. z-index: 11;
  210. }
  211. .searchIMg{
  212. width: 40rpx;height: 40rpx;margin-top: 16rpx;margin-left: 20rpx;
  213. }
  214. .ssScImg{
  215. width: 40rpx;height: 40rpx;margin-top: 16rpx;
  216. }
  217. .search{
  218. padding: 24rpx;
  219. background: #FFFFFF;
  220. }
  221. .searchVIew{
  222. display: flex;
  223. background: #F4F5F7;
  224. border-radius: 36rpx;
  225. height: 72rpx;
  226. }
  227. .searchInput{
  228. color: #999999;font-size: 28rpx;padding-left: 16rpx;
  229. height: 72rpx;line-height: 72rpx;width: 570rpx;
  230. }
  231. .screenJt{
  232. width: 24rpx;
  233. height: 24rpx;
  234. margin-top: 7rpx;
  235. margin-left: 5rpx;
  236. }
  237. .screen{
  238. display: flex;
  239. justify-content: space-around;
  240. padding: 0 24rpx 16rpx 24rpx;
  241. border-bottom: 2rpx solid #EEEEEE;
  242. position: relative;
  243. background: #FFFFFF;
  244. height: 60rpx;
  245. }
  246. .screenLine{
  247. display: flex;
  248. color: #333333;
  249. font-size: 28rpx;
  250. }
  251. .shopLineBox{
  252. padding: 190rpx 0rpx 25rpx;
  253. }
  254. .shopBox2{
  255. margin-top: 20rpx;
  256. padding-bottom: 30rpx;
  257. background: #FFFFFF;
  258. border-radius: 10rpx;
  259. padding-left: 20rpx;
  260. padding-right: 20rpx;
  261. }
  262. .shoplevelBox{
  263. position: fixed;
  264. left: 0;
  265. width: 750rpx;
  266. top: 196rpx;
  267. background: rgba(0,0,0,0.4);
  268. z-index: 11;
  269. border-top: 1px solid #EEEEEE;
  270. border-bottom:1px solid #EEEEEE ;
  271. height: calc(100vh - 196rpx);
  272. }
  273. /* #ifdef H5 */
  274. .shoplevelBox{
  275. top: calc(196rpx + 44px);
  276. }
  277. /* #endif */
  278. .shoplevelCont{
  279. display: flex;
  280. flex-wrap: wrap;
  281. background: #FFFFFF;
  282. padding: 24rpx;
  283. }
  284. .shoplevelLine{
  285. color: #333333;
  286. line-height: 64rpx;
  287. padding: 0 40rpx;
  288. height: 64rpx;
  289. background: #F4F5F7;
  290. border-radius: 32rpx;
  291. margin-right: 20rpx;
  292. margin-bottom: 30rpx;
  293. }
  294. .shoplevelBottom{
  295. display: flex;
  296. justify-content: space-between;
  297. padding-top: 60rpx;
  298. padding-right: 24rpx;
  299. background: #FFFFFF;
  300. padding: 24rpx;
  301. }
  302. .shoplevelReset{
  303. width: 320rpx;
  304. height: 74rpx;
  305. border-radius: 37rpx;
  306. border: 2rpx solid #FF4F00;
  307. text-align: center;
  308. line-height: 74rpx;
  309. font-size: 30rpx;
  310. font-family: PingFangSC-Medium, PingFang SC;
  311. font-weight: 500;
  312. color: #FF4F00;
  313. }
  314. .shoplevelsbu{
  315. width: 320rpx;
  316. height: 74rpx;
  317. background: #FF4F00;
  318. border-radius: 37rpx;
  319. font-size: 30rpx;
  320. font-family: PingFangSC-Medium, PingFang SC;
  321. font-weight: 500;
  322. color: #FFFFFF;
  323. text-align: center;
  324. line-height: 74rpx;
  325. border: 2rpx solid #FF4F00;
  326. }
  327. .shoplevalActive{
  328. color: #FF4F00;
  329. background: rgba(255, 79, 0, 0.08);
  330. }
  331. .comprehensiveLine{
  332. /* width: 200rpx;
  333. height: 60rpx;
  334. line-height: 60rpx;
  335. text-align: center;
  336. border: 1px solid rgb(228, 228, 228);
  337. border-radius: 10rpx; */
  338. font-size: 26rpx;
  339. font-family: PingFangSC-Regular, PingFang SC;
  340. font-weight: 400;
  341. color: #333333;
  342. padding: 25rpx 0;
  343. }
  344. .comprehensivebox{
  345. /* display: flex;justify-content: space-around; */
  346. }
  347. .comprehensiveACtive{
  348. color: #FF4F00;
  349. }
  350. .nodataImg{
  351. width: 400rpx;
  352. padding-top: 100rpx;
  353. }
  354. .noTxt{
  355. font-size: 36rpx;
  356. color: #999999;
  357. padding-top: 50rpx;
  358. }
  359. .nodataBox{
  360. text-align: center;
  361. }
  362. .shopImg{
  363. width: 146rpx;
  364. height: 146rpx;
  365. border-radius: 6rpx;
  366. }
  367. .shopBox{
  368. padding-top: 30rpx;
  369. display: flex;
  370. }
  371. .flex{
  372. display: flex;
  373. justify-content: space-between;
  374. }
  375. .shopCont{
  376. padding-left: 22rpx;
  377. width: 520rpx;
  378. }
  379. .shopName{
  380. color: #333333;
  381. font-size: 26rpx;
  382. font-weight: 600;
  383. }
  384. .span1{
  385. color: #FF4F00;font-size: 36rpx;
  386. }
  387. .span2{
  388. color: #FF4F00;font-size: 22rpx;
  389. }
  390. .span3{
  391. color: #333333;font-size: 22rpx;padding-left: 22rpx;
  392. }
  393. .shopBq{
  394. color: #FF4F00;font-size: 22rpx;border-radius: 4rpx;
  395. border: 1px solid #FF4F00;line-height: 30rpx;height: 30rpx;padding: 0rpx 5rpx;
  396. margin-top: 10rpx;
  397. }
  398. .shopTime{
  399. color: #666666;font-size: 22rpx;
  400. }
  401. .addressBox{
  402. color: #666666;font-size: 22rpx;
  403. }
  404. .shopNameSearchInput{
  405. width: 500rpx;
  406. }
  407. .colorCS{
  408. color: #FF4F00;
  409. }
  410. </style>