store-address.vue 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. <!-- 自提点 -->
  2. <template>
  3. <view class="map-box">
  4. <!-- 标题栏 -->
  5. <shopro-navbar>
  6. <view class="search-wrap u-flex" slot="content">
  7. <u-search
  8. class="u-m-r-20"
  9. placeholder="输入自提点名称"
  10. @change="onSearch"
  11. @search="onSearch"
  12. @clear="clearSearch"
  13. v-model="searchVal"
  14. :showAction="false"
  15. height="60"
  16. ></u-search>
  17. </view>
  18. </shopro-navbar>
  19. <map id="map" :style="{ width: '750rpx', height: mapHeight + 'px' }" :latitude="latitude" :longitude="longitude" show-location @tap="onMap"></map>
  20. <view class="dragLayer safe-area-inset-bottom" :class="moveCard">
  21. <view class="oilStation">
  22. <!-- 上下箭头 -->
  23. <view class="oilStation-top">
  24. <view class="touch-guide u-flex u-row-center u-col-center" @tap="onShowCard">
  25. <image class="touch-jintou" :src="$IMG_URL + (showCard ? '/imgs/order/arrows2.png' : '/imgs/order/arrows1.png')" mode=""></image>
  26. </view>
  27. </view>
  28. <!-- 自提点列表 -->
  29. <scroll-view class="oilStation-bottom" enable-back-to-top scroll-y @scrolltolower="loadMore">
  30. <view class=" list-content">
  31. <u-radio-group style="width: 100%;" v-model="storeId" active-color="#e9b561">
  32. <view style="width: 100%;" @tap="selStoreAddress(address.id, index)" v-for="(address, index) in addressList" :key="address.id">
  33. <view class="address-item u-flex u-col-center u-row-between">
  34. <view class="address-left">
  35. <!-- 门店 -->
  36. <view class="address-name">{{ address.name }}</view>
  37. <!-- 时间 -->
  38. <view class="time-box ">
  39. <view class=" u-flex u-col-center">
  40. <text class="u-iconfont uicon-clock u-m-r-20" style="color: #999;"></text>
  41. {{ address.openhours }}
  42. </view>
  43. <view class="u-flex u-col-center u-p-l-30 u-m-t-20">
  44. <text v-for="week in address.openweeks_arr" :key="week">{{ weekMap[week] }}、</text>
  45. </view>
  46. </view>
  47. <!-- 地址 -->
  48. <view class="address-detail u-flex u-col-center">
  49. <text class="u-iconfont uicon-map u-m-r-20" style="color: #999;"></text>
  50. {{ address.province_name }}{{ address.city_name }}{{ address.area_name }}{{ address.address }}
  51. </view>
  52. <!-- 电话 -->
  53. <view class="address-phone u-flex u-col-center">
  54. <text class="u-iconfont uicon-phone u-m-r-20" style="color: #999;"></text>
  55. {{ address.phone }}
  56. </view>
  57. </view>
  58. <view class="address-right u-flex-col u-row-center u-col-center">
  59. <u-radio :name="address.id"></u-radio>
  60. <text class="address-distance u-m-t-10">{{ address.distance_text || 0 }}</text>
  61. </view>
  62. </view>
  63. </view>
  64. </u-radio-group>
  65. <!-- 更多 -->
  66. <u-loadmore v-if="addressList.length" height="80rpx" :status="loadStatus" icon-type="flower" color="#ccc" />
  67. </view>
  68. </scroll-view>
  69. <view class="foot_box u-flex u-row-center u-col-center"><button class="u-reset-button save-btn" @tap="onSave">确认</button></view>
  70. </view>
  71. </view>
  72. </view>
  73. </template>
  74. <script>
  75. export default {
  76. data() {
  77. return {
  78. longitude: 0,
  79. latitude: 0,
  80. mapHeight: 0,
  81. showCard: false,
  82. moveCard: 'dragLayer-bottom',
  83. distance: 0,
  84. storeId: 0, //默认门店ID
  85. addressList: [], //门店列表
  86. storeInfo: [], //当前门店信息
  87. weekMap: {
  88. 1: '周一',
  89. 2: '周二',
  90. 3: '周三',
  91. 4: '周四',
  92. 5: '周五',
  93. 6: '周六',
  94. 7: '周日'
  95. },
  96. loadStatus: 'loadmore',
  97. currentPage: 1,
  98. lastPage: 1,
  99. searchVal: ''
  100. };
  101. },
  102. computed: {},
  103. onLoad(options) {
  104. this.latitude = this.$Route.query.lat;
  105. this.longitude = this.$Route.query.lng;
  106. this.storeId = this.$Route.query.storeId;
  107. this.getStoreAddress();
  108. },
  109. onReady() {
  110. this.editHeight();
  111. },
  112. methods: {
  113. // 选中门店
  114. onSave() {
  115. if (this.storeId) {
  116. uni.$emit('SELECT_STORE', { storeInfo: JSON.stringify(this.storeInfo) });
  117. this.$Router.back();
  118. } else {
  119. this.$u.toast('请选择门店');
  120. }
  121. },
  122. // 搜索
  123. onSearch() {
  124. this.addressList = [];
  125. this.$u.debounce(this.getStoreAddress());
  126. },
  127. // 清除搜索框
  128. clearSearch() {
  129. this.searchVal = '';
  130. this.onSearch();
  131. },
  132. // 设置地图,卡片高度。
  133. editHeight() {
  134. let that = this;
  135. uni.getSystemInfo({
  136. success: res => {
  137. let view = uni
  138. .createSelectorQuery()
  139. .in(this)
  140. .select('.dragLayer');
  141. view.fields(
  142. {
  143. size: true,
  144. scrollOffset: true
  145. },
  146. data => {
  147. that.mapHeight = res.windowHeight - data.height;
  148. //#ifdef APP-PLUS
  149. that.mapHeight = res.windowHeight - data.height - 40;
  150. //#endif
  151. }
  152. ).exec();
  153. }
  154. });
  155. },
  156. // 点击地图
  157. onMap() {
  158. this.showCard = false;
  159. this.moveCard = 'dragLayer-bottom';
  160. },
  161. // 选择门店
  162. selStoreAddress(id, index) {
  163. this.storeId = id;
  164. this.latitude = this.addressList[index].latitude;
  165. this.longitude = this.addressList[index].longitude;
  166. this.storeInfo = this.addressList[index];
  167. },
  168. loadMore() {
  169. if (this.currentPage < this.lastPage) {
  170. this.currentPage += 1;
  171. this.getStoreAddress();
  172. }
  173. },
  174. // 获取商品支持的自提点。
  175. getStoreAddress() {
  176. let that = this;
  177. that.loadStatus = 'loading';
  178. that.$http('goods.storeAddress', {
  179. id: that.$Route.query.goodsId,
  180. latitude: that.$Route.query.lat,
  181. longitude: that.$Route.query.lng,
  182. keyword: that.searchVal,
  183. page: that.currentPage,
  184. per_page: 3
  185. }).then(res => {
  186. if (res.code == 1) {
  187. that.addressList = [...that.addressList, ...res.data.data];
  188. that.lastPage = res.data.last_page;
  189. that.loadStatus = that.currentPage < res.data.last_page ? 'loadmore' : 'nomore';
  190. if (this.currentPage === 1) {
  191. this.storeId = res.data.data[0].id;
  192. this.storeInfo = res.data.data[0];
  193. }
  194. }
  195. });
  196. },
  197. // 点击显隐
  198. onShowCard() {
  199. this.showCard = !this.showCard;
  200. this.moveCard = this.showCard ? 'dragLayer-top' : 'dragLayer-bottom';
  201. }
  202. }
  203. };
  204. </script>
  205. <style lang="scss">
  206. .search-wrap {
  207. /* #ifdef MP-WEIXIN */
  208. width: 460rpx;
  209. /* #endif */
  210. /* #ifndef MP-WEIXIN */
  211. width: 100%;
  212. /* #endif */
  213. }
  214. /* 浮层 */
  215. .dragLayer {
  216. width: 750rpx;
  217. position: fixed;
  218. z-index: 996;
  219. background-color: #fff;
  220. border-top-left-radius: 20rpx;
  221. border-top-right-radius: 20rpx;
  222. bottom: 0;
  223. box-shadow: 0px 1rpx 18rpx 0px rgba(83, 83, 83, 0.35);
  224. display: flex;
  225. height: 100%;
  226. }
  227. // 点击上下
  228. .dragLayer-bottom {
  229. height: 450rpx !important;
  230. /*#ifdef APP-PLUS */
  231. height: 800rpx !important;
  232. /*#endif*/
  233. transition: all ease-in-out 0.2s;
  234. }
  235. .dragLayer-top {
  236. height: 800rpx !important;
  237. transition: all ease-in-out 0.2s;
  238. }
  239. .oilStation {
  240. width: 690rpx;
  241. margin: 0 30rpx;
  242. display: flex;
  243. flex-direction: column;
  244. flex: 1;
  245. height: 100%;
  246. }
  247. .oilStation-top {
  248. justify-content: center;
  249. align-items: center;
  250. flex-direction: column;
  251. }
  252. .touch-guide {
  253. justify-content: center;
  254. align-items: center;
  255. height: 100rpx;
  256. }
  257. .touch-jintou {
  258. width: 60rpx;
  259. height: 8rpx;
  260. }
  261. // 确认门店
  262. .foot_box {
  263. height: 100rpx;
  264. background-color: #fff;
  265. .save-btn {
  266. color: #fff;
  267. width: 690rpx;
  268. line-height: 80rpx;
  269. background: linear-gradient(90deg, rgba(233, 181, 97, 1), rgba(238, 204, 138, 1));
  270. box-shadow: 1rpx 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
  271. border-radius: 40rpx;
  272. font-size: 28rpx;
  273. }
  274. }
  275. // 自提点列表
  276. .oilStation-bottom {
  277. justify-content: space-between;
  278. align-items: center;
  279. flex-direction: row;
  280. flex: 1;
  281. height: 100%;
  282. overflow: hidden;
  283. }
  284. .list-content {
  285. background-color: #fff;
  286. overflow-x: hidden;
  287. }
  288. .address-item {
  289. border-bottom-width: 1px;
  290. border-bottom-style: solid;
  291. border-bottom-color: #eef1f4;
  292. padding: 15rpx 0 15rpx;
  293. width: 100%;
  294. justify-content: space-between;
  295. align-items: center;
  296. flex-direction: row;
  297. }
  298. .address-name {
  299. font-size: 30rpx;
  300. font-weight: 600;
  301. color: rgba(51, 51, 51, 1);
  302. margin-bottom: 30rpx;
  303. }
  304. .time-box,
  305. .address-detail,
  306. .address-phone {
  307. flex-direction: row;
  308. align-items: center;
  309. font-size: 24rpx;
  310. font-weight: 400;
  311. color: #666;
  312. margin-bottom: 20rpx;
  313. }
  314. .address-icon {
  315. color: #bdbdbd;
  316. margin-right: 10rpx;
  317. font-size: 30rpx;
  318. }
  319. .address-left {
  320. flex: 1;
  321. }
  322. .address-right {
  323. align-items: center;
  324. color: #a8700e;
  325. font-size: 24rpx;
  326. margin-bottom: 20rpx;
  327. white-space: nowrap;
  328. }
  329. .more {
  330. width: 750rpx;
  331. height: 90rpx;
  332. justify-content: center;
  333. align-items: center;
  334. }
  335. .more-text {
  336. font-size: 24rpx;
  337. color: #ccc;
  338. }
  339. </style>