storeDetails.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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. if(item.sell_price){
  133. obj.push({
  134. ...item,
  135. money:(item.sell_price / 100).toFixed(2)
  136. })
  137. }
  138. for (var i = 0; i < item.price_setting.length; i++) {
  139. var items = item.price_setting[i];
  140. let money = (items.hire_price / 100).toFixed(2)
  141. if (!item.sell_price && this.status == 0 && (items.hire_duration_unit == 1 || items.hire_duration_unit == 4 || items
  142. .hire_duration_unit == 5 || items.hire_duration_unit == 6)) {
  143. obj.push({
  144. ...item,
  145. money
  146. })
  147. break
  148. }
  149. if (!item.sell_price && this.status == 1 && (items.hire_duration_unit == 2 || items.hire_duration_unit == 3 || items
  150. .hire_duration_unit == 4)) {
  151. obj.push({
  152. ...item,
  153. money
  154. })
  155. break
  156. }
  157. }
  158. }
  159. return obj
  160. },
  161. async locationFn() {
  162. let res = await uni.getLocation()
  163. if (res[1]) {
  164. return {
  165. latitude: res[1].latitude,
  166. longitude: res[1].longitude,
  167. }
  168. }
  169. },
  170. srcFn(url) {
  171. uni.navigateTo({
  172. url
  173. })
  174. },
  175. isWorkTimerFn() {
  176. this.storeInfo.work_end_time = ''
  177. this.storeInfo.work_end_time = ''
  178. },
  179. loadStoreDetail(shop_id, longitude, latitude) {
  180. const me = this
  181. http.postApi(config.API_NEAR_SHOP_INFO, {
  182. shop_id,
  183. longitude,
  184. latitude,
  185. }, (resp) => {
  186. if (resp.data.code === 200) {
  187. me.setData({
  188. storeInfo: resp.data.data.info
  189. })
  190. this.storeInfo.distance = common.formatDistance(Number(this.storeInfo.distance))
  191. this.shop_image = JSON.parse(resp.data.data.info.shop_image) || []
  192. var cabinetInfo = resp.data.data.info
  193. this.storeInfo.work_begin_time = (cabinetInfo.work_begin_time == null ? '00:00:00' :
  194. cabinetInfo
  195. .work_begin_time).split(':')
  196. this.storeInfo.work_end_time = (cabinetInfo.work_end_time == null ? '00:00:00' :
  197. cabinetInfo
  198. .work_end_time).split(':')
  199. this.isWorkTimer = this.isWithinTimeRange(cabinetInfo.work_begin_time,
  200. cabinetInfo.work_end_time)
  201. } else {
  202. common.simpleToast(resp.data.msg)
  203. }
  204. })
  205. },
  206. isWithinTimeRange(startTime, endTime) {
  207. // 获取当前时间
  208. const now = new Date();
  209. const currentMinutes = now.getHours() * 60 + now.getMinutes();
  210. // 将传入的时间转换为分钟
  211. const [startHour, startMinute] = startTime.map(Number);
  212. const [endHour, endMinute] = endTime.map(Number);
  213. const startMinutes = startHour * 60 + startMinute;
  214. const endMinutes = endHour * 60 + endMinute;
  215. // 判断当前时间是否在指定范围内
  216. return currentMinutes >= startMinutes && currentMinutes <= endMinutes;
  217. },
  218. tapPhone() {
  219. const me = this
  220. uni.showModal({
  221. content: `您是否要拨打电话${me.storeInfo.link_phone}?`,
  222. confirmText: '确定',
  223. success: (res) => {
  224. if (res.confirm) {
  225. me.clearTimer()
  226. uni.makePhoneCall({
  227. phoneNumber: me.storeInfo.link_phone,
  228. success() {},
  229. fail() {}
  230. })
  231. }
  232. },
  233. fail: (res) => {}
  234. })
  235. },
  236. bindToNav() {
  237. const {
  238. address,
  239. latitude,
  240. longitude,
  241. shop_name
  242. } = this.storeInfo
  243. uni.openLocation({
  244. latitude: latitude - 0,
  245. longitude: longitude - 0,
  246. scale: 15,
  247. name: shop_name,
  248. address: address,
  249. success: function(res) {},
  250. })
  251. },
  252. }
  253. };
  254. </script>
  255. <style>
  256. @import './storeDetails.css';
  257. </style>