storeDetails.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  1. <template>
  2. <view class="container-view">
  3. <!-- <view class="store-img-view" style="background-image: url('https://qiniu.bms16.com/FhG-xwyMdxPVjYNrxXnq5enGFT-2');background-repeat: no-repeat;background-size: 100% 500rpx;">
  4. </view> -->
  5. <view class="store-img-view">
  6. <swiper v-if="shop_image.length!=0" class="swiper" :indicator-dots="true" :autoplay="true" :interval="2000"
  7. indicator-color="rgba(0, 0, 0, 0.3)" indicator-active-color="#000000" :duration="1000" circular>
  8. <swiper-item class="swiper-item" v-for="(item,index) in shop_image" :key="index">
  9. <image class="swiper-item-img" :src="item" mode="aspectFill"></image>
  10. </swiper-item>
  11. </swiper>
  12. <image v-else class="bg-img" src="https://qiniu.bms16.com/FhRnr7rADHHsOFfpWO4duD15SgIt" mode="aspectFill">
  13. </image>
  14. </view>
  15. <view class="p-bg">
  16. <view class="store-info-view">
  17. <view class="store-name">{{storeInfo.shop_name}}</view>
  18. <view class="flex-row align-center" style="margin-bottom: 24rpx;">
  19. <view v-for="(item,index) of storeInfo.service_type_list" :key="index" class="store-type">
  20. {{item.title}}
  21. </view>
  22. <view class="store-num-type"> <text class="store-num">{{storeInfo.model_list.length || 0}}</text>
  23. 款车型
  24. </view>
  25. <view class="store-phone" @tap="tapPhone"><img style="width: 84rpx;height: 64rpx;"
  26. src="https://qiniu.bms16.com/Ft0YA1JYmq66hdoeEN-PgBHy5vLa" alt=""></view>
  27. </view>
  28. <view class="flex-row flex-between">
  29. <view :class="isWorkTimer ? 'left_grid_2' : 'left_grid_1'">
  30. <view class="flex-row">
  31. <img style="width: 40rpx;height: 40rpx;"
  32. :src="!isWorkTimer ? 'https://zxappfile.bms16.com/zx_admin/cab_timer.png' : 'https://zxappfile.bms16.com/zx_admin/cab_timer_work.png'">
  33. <view :class="isWorkTimer ? 'grid_text_1' : 'grid_text_rest' ">
  34. {{isWorkTimer ? '营业中' : '已休息'}}
  35. </view>
  36. </view>
  37. <view class="grid_text_2">
  38. {{storeInfo.work_begin_time[0]}}:{{storeInfo.work_begin_time[1]}}-{{storeInfo.work_end_time[0]}}:{{storeInfo.work_end_time[1]}}
  39. </view>
  40. </view>
  41. <view @tap="bindToNav" class="right_grid flex-between">
  42. <view>
  43. <view class="cab_distance">
  44. 直线距您 {{storeInfo.distance}}
  45. </view>
  46. <view class="cab_address">{{storeInfo.address}}</view>
  47. </view>
  48. <view>
  49. <img class="icon_grid_1" src="https://zxappfile.bms16.com/zx_admin/cab_nav.png">
  50. <view class="grid_nav">导航</view>
  51. </view>
  52. </view>
  53. </view>
  54. </view>
  55. <useGuidance />
  56. <view class="unit-type-view">
  57. <view @click="status = 0;modelListsFn()" class="unit-type " :class="{'unit-type-i' : status == 0}">短租
  58. </view>
  59. <view @click="status = 1;modelListsFn()" class="unit-type" :class="{'unit-type-i' : status == 1}">长租
  60. </view>
  61. <view @click="status = 2;modelListsFn()" class="unit-type " :class="{'unit-type-i' : status == 2}">出售
  62. </view>
  63. </view>
  64. <view class="car-info-list-view">
  65. <view v-for="(item,index) of modelListsFn()" :key="index" class="car-info-view align-center flex-row">
  66. <!-- <img class="car-img" src="https://qiniu.bms16.com/FsxOysJT2V3KNYev2YWadvjyKn2j" alt=""> -->
  67. <image class="car-img" :src="item.model_images" mode="aspectFill"></image>
  68. <view class="car-info">
  69. <view class="car-name flex-row">{{item.model_name}}</view>
  70. <view class="car-model-info">续航{{item.endurance}}km|重量{{item.weight}}kg</view>
  71. <view class="flex-row flex-between">
  72. <view class="unit-type-price flex-row">
  73. <text v-if="status == 0" style="margin-right: 8rpx;">日租</text>
  74. <text v-if="status == 1" style="margin-right: 8rpx;">长租</text>
  75. <text v-if="status == 2" style="margin-right: 8rpx;">出售</text>
  76. <priceTool :price="item.money" :font_size="40" />
  77. </view>
  78. <view @click="srcFn(`/pages/carDetail/carDetail?model_id=${item.model_id}`)"
  79. class="lease-btn">购/租</view>
  80. </view>
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. </view>
  86. </template>
  87. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  88. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  89. <script>
  90. var config = require('../../common/config.js');
  91. var common = require('../../common/common.js');
  92. var http = require('../../common/http.js');
  93. var storage = require('../../common/storage.js');
  94. import priceTool from '@/component/priceTool/priceTool';
  95. import UseGuidance from '@/component/useGuidance/useGuidance';
  96. export default {
  97. components: {
  98. priceTool,
  99. UseGuidance
  100. },
  101. data() {
  102. return {
  103. status: 0,
  104. shop_image: [],
  105. storeInfo: {
  106. model_list: []
  107. },
  108. isWorkTimer: null
  109. };
  110. },
  111. computed: {},
  112. /**
  113. * 生命周期函数--监听页面加载
  114. */
  115. onLoad: async function(options) {
  116. console.log(options, 'options');
  117. const shop_id = options.admin_id || ''
  118. let data = await this.locationFn()
  119. console.log(data)
  120. this.loadStoreDetail(shop_id, data.longitude, data.latitude)
  121. },
  122. /**
  123. * 生命周期函数--监听页面显示
  124. */
  125. onShow: function() {
  126. },
  127. methods: {
  128. modelListsFn() {
  129. let obj = []
  130. for (let index = 0; index < this.storeInfo.model_list.length; index++) {
  131. let item = this.storeInfo.model_list[index];
  132. for (var i = 0; i < item.price_setting.length; i++) {
  133. var items = item.price_setting[i];
  134. let money = (items.hire_price / 100).toFixed(2)
  135. if (this.status == 0 && (items.hire_duration_unit == 1 || items.hire_duration_unit == 4 || items
  136. .hire_duration_unit == 5 || items.hire_duration_unit == 6)) {
  137. obj.push({
  138. ...item,
  139. money
  140. })
  141. break
  142. }
  143. if (this.status == 1 && (items.hire_duration_unit == 2 || items.hire_duration_unit == 3 || items
  144. .hire_duration_unit == 4)) {
  145. obj.push({
  146. ...item,
  147. money
  148. })
  149. break
  150. }
  151. }
  152. }
  153. return obj
  154. },
  155. async locationFn() {
  156. let res = await uni.getLocation()
  157. if (res[1]) {
  158. return {
  159. latitude: res[1].latitude,
  160. longitude: res[1].longitude,
  161. }
  162. }
  163. },
  164. srcFn(url) {
  165. uni.navigateTo({
  166. url
  167. })
  168. },
  169. isWorkTimerFn() {
  170. this.storeInfo.work_end_time = ''
  171. this.storeInfo.work_end_time = ''
  172. },
  173. loadStoreDetail(shop_id, longitude, latitude) {
  174. const me = this
  175. http.postApi(config.API_NEAR_SHOP_INFO, {
  176. shop_id,
  177. longitude,
  178. latitude,
  179. }, (resp) => {
  180. if (resp.data.code === 200) {
  181. me.setData({
  182. storeInfo: resp.data.data.info
  183. })
  184. this.storeInfo.distance = common.formatDistance(Number(this.storeInfo.distance))
  185. this.shop_image = JSON.parse(resp.data.data.info.shop_image) || []
  186. var cabinetInfo = resp.data.data.info
  187. this.storeInfo.work_begin_time = (cabinetInfo.work_begin_time == null ? '00:00:00' :
  188. cabinetInfo
  189. .work_begin_time).split(':')
  190. this.storeInfo.work_end_time = (cabinetInfo.work_end_time == null ? '00:00:00' :
  191. cabinetInfo
  192. .work_end_time).split(':')
  193. this.isWorkTimer = this.isWithinTimeRange(cabinetInfo.work_begin_time,
  194. cabinetInfo.work_end_time)
  195. } else {
  196. common.simpleToast(resp.data.msg)
  197. }
  198. })
  199. },
  200. isWithinTimeRange(startTime, endTime) {
  201. // 获取当前时间
  202. const now = new Date();
  203. const currentMinutes = now.getHours() * 60 + now.getMinutes();
  204. // 将传入的时间转换为分钟
  205. const [startHour, startMinute] = startTime.map(Number);
  206. const [endHour, endMinute] = endTime.map(Number);
  207. const startMinutes = startHour * 60 + startMinute;
  208. const endMinutes = endHour * 60 + endMinute;
  209. // 判断当前时间是否在指定范围内
  210. return currentMinutes >= startMinutes && currentMinutes <= endMinutes;
  211. },
  212. tapPhone() {
  213. const me = this
  214. uni.showModal({
  215. content: `您是否要拨打电话${me.storeInfo.link_phone}?`,
  216. confirmText: '确定',
  217. success: (res) => {
  218. if (res.confirm) {
  219. me.clearTimer()
  220. uni.makePhoneCall({
  221. phoneNumber: me.storeInfo.link_phone,
  222. success() {},
  223. fail() {}
  224. })
  225. }
  226. },
  227. fail: (res) => {}
  228. })
  229. },
  230. bindToNav() {
  231. const {
  232. address,
  233. latitude,
  234. longitude,
  235. shop_name
  236. } = this.storeInfo
  237. uni.openLocation({
  238. latitude: latitude - 0,
  239. longitude: longitude - 0,
  240. scale: 15,
  241. name: shop_name,
  242. address: address,
  243. success: function(res) {},
  244. })
  245. },
  246. }
  247. };
  248. </script>
  249. <style>
  250. @import './storeDetails.css';
  251. </style>