storeDetails.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. <template>
  2. <view class="container-view">
  3. <navBar></navBar>
  4. <!-- <view class="store-img-view" style="background-image: url('https://qiniu.bms16.com/FhG-xwyMdxPVjYNrxXnq5enGFT-2');background-repeat: no-repeat;background-size: 100% 500rpx;">
  5. </view> -->
  6. <view class="store-img-view">
  7. <swiper v-if="shop_image && shop_image.length!=0" class="swiper" :indicator-dots="true" :autoplay="true" :interval="2000"
  8. indicator-color="rgba(0, 0, 0, 0.3)" indicator-active-color="#000000" :duration="1000" circular>
  9. <swiper-item class="swiper-item" v-for="(item,index) in shop_image" :key="index">
  10. <image class="swiper-item-img" :src="item" mode="aspectFill"></image>
  11. </swiper-item>
  12. </swiper>
  13. <image v-else class="bg-img" src="https://qiniu.bms16.com/FhRnr7rADHHsOFfpWO4duD15SgIt" mode="aspectFill">
  14. </image>
  15. </view>
  16. <view class="p-bg">
  17. <view class="store-info-view">
  18. <view class="store-name">{{storeInfo.shop_name}}</view>
  19. <view class="flex-row align-center" style="margin-bottom: 24rpx;">
  20. <view v-for="(item,index) of storeInfo.service_type_list" :key="index" class="store-type">
  21. {{item.title}}
  22. </view>
  23. <view class="store-num-type"> <text class="store-num">{{storeInfo.model_list.length || 0}}</text>
  24. 款车型
  25. </view>
  26. <view class="store-phone" @tap="tapPhone"><img style="width: 84rpx;height: 64rpx;"
  27. src="https://qiniu.bms16.com/Ft0YA1JYmq66hdoeEN-PgBHy5vLa" alt=""></view>
  28. </view>
  29. <view class="flex-row flex-between">
  30. <view :class="isWorkTimer ? 'left_grid_2' : 'left_grid_1'">
  31. <view class="flex-row">
  32. <img style="width: 40rpx;height: 40rpx;"
  33. :src="!isWorkTimer ? 'https://zxappfile.bms16.com/zx_admin/cab_timer.png' : 'https://zxappfile.bms16.com/zx_admin/cab_timer_work.png'">
  34. <view :class="isWorkTimer ? 'grid_text_1' : 'grid_text_rest' ">
  35. {{isWorkTimer ? '营业中' : '已休息'}}
  36. </view>
  37. </view>
  38. <!-- <view v-if="storeInfo.work_begin_time" class="grid_text_2">
  39. {{storeInfo.work_begin_time.split(':')[0]}}:{{storeInfo.work_begin_time.split(':')[1]}}-{{storeInfo.work_end_time.split(':')[0]}}:{{storeInfo.work_end_time.split(':')[1]}}
  40. </view> -->
  41. <view v-if="storeInfo.work_begin_time" class="grid_text_2">
  42. {{storeInfo.work_begin_time}}-{{storeInfo.work_end_time}}
  43. </view>
  44. </view>
  45. <view @tap="bindToNav" class="right_grid flex-between">
  46. <view>
  47. <view class="cab_distance">
  48. 直线距您 {{storeInfo.distance}}
  49. </view>
  50. <view class="cab_address">{{storeInfo.address}}</view>
  51. </view>
  52. <view>
  53. <img class="icon_grid_1" src="https://zxappfile.bms16.com/zx_admin/cab_nav.png">
  54. <view class="grid_nav">导航</view>
  55. </view>
  56. </view>
  57. </view>
  58. </view>
  59. <view class="tip-view">
  60. <view class="tip-title-view flex-row align-center">
  61. <image style="width: 144rpx;height: 40rpx;"
  62. src="https://qiniu.bms16.com/FjUW1kuRvXWTEftyn9nH1AbGWuxK" mode='aspectFit'></image>
  63. <image style="width: 86rpx;height: 80rpx;"
  64. src="https://qiniu.bms16.com/FibAaPERzqi6m95EP2jREUKixjUi" mode='aspectFill'></image>
  65. <view class="w-bg flex-row"></view>
  66. </view>
  67. <view class="step-view flex-row align-center">
  68. <view class="icon-list-view">
  69. <image class="img1" src="https://qiniu.bms16.com/Fp0BE27Q0VTD8qUJRHUVhWO6VEbO" mode='aspectFit'>
  70. </image>
  71. </view>
  72. <view class="dashed-line"></view>
  73. <view class="icon-list-view">
  74. <image class="img1" src="https://qiniu.bms16.com/FqDzYwAbnSEgf3yv9SAb92Vq4ZEB" mode='aspectFit'>
  75. </image>
  76. </view>
  77. <view class="dashed-line"></view>
  78. <view class="icon-list-view">
  79. <image class="img1" src="https://qiniu.bms16.com/FlFMHzco6j9XOpMI21tSnR9500Un" mode='aspectFit'>
  80. </image>
  81. </view>
  82. </view>
  83. <view class="step-tip-view flex-row align-center">
  84. <view class="step-tip-text">
  85. <image class="step-num-1" src="https://qiniu.bms16.com/Fm4gMRmW6UOwLcU-eW8LDLNfiUJe"
  86. mode='aspectFill'>
  87. </image>线上选择用车方案生成待支付订单
  88. </view>
  89. <view class="step-tip-text">
  90. <image class="step-num-2" src="https://qiniu.bms16.com/FvYN7SxOYIhXEqSAJZrQIBQuTx79"
  91. mode='aspectFill'>
  92. </image>导航到店向商家支付订单金额
  93. </view>
  94. <view class="step-tip-text">
  95. <image class="step-num-3" src="https://qiniu.bms16.com/FhZ7w0X8iVuxFPdetEF9C3YYkJ7Z"
  96. mode='aspectFill'>
  97. </image>支付完成后直接现场取车
  98. </view>
  99. </view>
  100. </view>
  101. <!-- <view class="unit-type-view">
  102. <view @click="status = 0;modelListsFn()" class="unit-type " :class="{'unit-type-i' : status == 0}">短租
  103. </view>
  104. <view @click="status = 1;modelListsFn()" class="unit-type" :class="{'unit-type-i' : status == 1}">长租
  105. </view>
  106. <view @click="status = 2;modelListsFn()" class="unit-type " :class="{'unit-type-i' : status == 2}">出售
  107. </view>
  108. </view> -->
  109. <view class="unit-type-view">
  110. <view v-for="(item,index) of tagList" :key="index" @click="tagId = item.value;modelListsFn()"
  111. class="unit-type " :class="{'unit-type-i' : item.value == tagId}">{{item.label}}
  112. </view>
  113. </view>
  114. <view class="car-info-list-view">
  115. <view v-for="(item,index) of modelListsFn()" @click="srcFn(`/pages/carDetail/carDetail?model_id=${item.model_id}`)" :key="index" class="car-info-view align-center flex-row">
  116. <!-- <img class="car-img" src="https://qiniu.bms16.com/FsxOysJT2V3KNYev2YWadvjyKn2j" alt=""> -->
  117. <image class="car-img" :src="item.model_images[0]" mode="aspectFill"></image>
  118. <view class="car-info">
  119. <view class="car-name flex-row">{{item.model_name}}</view>
  120. <view class="car-model-info">续航{{item.endurance}}km|重量{{item.weight}}kg</view>
  121. <view class="flex-row flex-between">
  122. <view class="unit-type-price flex-row">
  123. <text style="margin-right: 8rpx;">{{typeArrFn(tagId)}}</text>
  124. <priceTool :price="Number(item.money)" :font_size="40" />
  125. </view>
  126. <view
  127. class="lease-btn">购/租</view>
  128. </view>
  129. </view>
  130. </view>
  131. </view>
  132. </view>
  133. </view>
  134. </template>
  135. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  136. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  137. <script>
  138. var config = require('../../common/config.js');
  139. var common = require('../../common/common.js');
  140. var http = require('../../common/http.js');
  141. var storage = require('../../common/storage.js');
  142. import priceTool from '@/component/priceTool/priceTool';
  143. import {
  144. MAX_LIMITS,
  145. LEASE_TYPE_ARR
  146. } from '@/common/constant.js';
  147. // import UseGuidance from '@/component/useGuidance/useGuidance';
  148. export default {
  149. components: {
  150. priceTool,
  151. // UseGuidance
  152. },
  153. data() {
  154. return {
  155. tagId: 0,
  156. tagList: [],
  157. shop_id: 0,
  158. status: 0,
  159. shop_image: [],
  160. storeInfo: {
  161. model_list: []
  162. },
  163. isWorkTimer: null
  164. };
  165. },
  166. computed: {},
  167. /**
  168. * 生命周期函数--监听页面加载
  169. */
  170. onLoad: function(options) {
  171. console.log(options, 'options');
  172. this.shop_id = options.admin_id || ''
  173. this.locationFn()
  174. },
  175. /**
  176. * 生命周期函数--监听页面显示
  177. */
  178. onShow: function() {
  179. },
  180. methods: {
  181. modelListsFn() {
  182. let obj = []
  183. for (let index = 0; index < this.storeInfo.model_list.length; index++) {
  184. let item = this.storeInfo.model_list[index];
  185. if (this.tagId == 100 && item.sell_price && item.sell_price != 0) {
  186. obj.push({
  187. ...item,
  188. money: (item.sell_price / 100).toFixed(2)
  189. })
  190. } else if (this.tagId != 100) {
  191. for (let i = 0; i < item.price_setting.length; i++) {
  192. var items = item.price_setting[i];
  193. let money = (items.hire_price / 100).toFixed(2)
  194. if (items.hire_duration_unit == this.tagId) {
  195. obj.push({
  196. ...item,
  197. money
  198. })
  199. }
  200. }
  201. }
  202. }
  203. return obj
  204. },
  205. typeArrFn(type) {
  206. if (!type) return ''
  207. const result = LEASE_TYPE_ARR.find(v => v.value == type);
  208. return result.label
  209. },
  210. locationFn() {
  211. let _this = this
  212. _this.loadStoreDetail(_this.shop_id, this.myLocation.longitude, this.myLocation.latitude)
  213. },
  214. srcFn(url) {
  215. uni.navigateTo({
  216. url
  217. })
  218. },
  219. isWorkTimerFn() {
  220. this.storeInfo.work_end_time = ''
  221. this.storeInfo.work_end_time = ''
  222. },
  223. loadStoreDetail(shop_id, longitude, latitude) {
  224. const me = this
  225. http.postApi(config.API_NEAR_SHOP_INFO, {
  226. shop_id,
  227. longitude,
  228. latitude,
  229. }, (resp) => {
  230. if (resp.data.code === 200) {
  231. me.setData({
  232. storeInfo: resp.data.data.info
  233. })
  234. let arr = []
  235. resp.data.data.info.model_list.map(item => {
  236. console.log(item.model_images)
  237. item.model_images = item.model_images.split(',')
  238. if (item.sell_price) {
  239. arr.push(100)
  240. }
  241. item.price_setting.map(item => {
  242. arr.push(item.hire_duration_unit)
  243. })
  244. })
  245. let arrSet = Array.from(new Set(arr));
  246. let tagListArr = []
  247. arrSet.map(item=>{
  248. LEASE_TYPE_ARR.map(items=>{
  249. if(item == items.value){
  250. tagListArr.push(items)
  251. }
  252. })
  253. })
  254. tagListArr.sort((x,y)=>{
  255. return x.sort - y.sort
  256. })
  257. this.tagList = tagListArr
  258. this.tagId = this.tagList[0].value || 0
  259. this.storeInfo.distance = common.formatDistance(Number(this.storeInfo.distance))
  260. this.shop_image = resp.data.data.info.shop_image || []
  261. var cabinetInfo = resp.data.data.info
  262. this.storeInfo.work_begin_time = (cabinetInfo.work_begin_time == null ? '00:00:00' :
  263. cabinetInfo
  264. .work_begin_time)
  265. this.storeInfo.work_end_time = (cabinetInfo.work_end_time == null ? '23:59:59' :
  266. cabinetInfo
  267. .work_end_time)
  268. this.isWorkTimer = common.isWithinTimeRange(cabinetInfo.work_begin_time,
  269. cabinetInfo.work_end_time)
  270. } else {
  271. common.simpleToast(resp.data.msg)
  272. }
  273. })
  274. },
  275. tapPhone() {
  276. const me = this
  277. uni.showModal({
  278. content: `您是否要拨打电话${me.storeInfo.link_phone}?`,
  279. confirmText: '确定',
  280. success: (res) => {
  281. if (res.confirm) {
  282. me.clearTimer()
  283. uni.makePhoneCall({
  284. phoneNumber: me.storeInfo.link_phone,
  285. success() {},
  286. fail() {}
  287. })
  288. }
  289. },
  290. fail: (res) => {}
  291. })
  292. },
  293. bindToNav() {
  294. const {
  295. address,
  296. latitude,
  297. longitude,
  298. shop_name
  299. } = this.storeInfo
  300. uni.openLocation({
  301. latitude: latitude - 0,
  302. longitude: longitude - 0,
  303. scale: 15,
  304. name: shop_name,
  305. address: address,
  306. success: function(res) {},
  307. })
  308. },
  309. }
  310. };
  311. </script>
  312. <style scoped>
  313. @import './storeDetails.css';
  314. </style>