carDetail.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. <template>
  2. <view>
  3. <view class="car-detail-main">
  4. <Navigation :scroll='scrollTop'></Navigation>
  5. <view class="store-img-view">
  6. <swiper v-if="car_detail.model_images && car_detail.model_images.length!=0" class="swiper"
  7. :indicator-dots="true" :autoplay="true" :interval="2000" indicator-color="rgba(0, 0, 0, 0.3)"
  8. indicator-active-color="#000000" :duration="1000" circular>
  9. <swiper-item class="swiper-item" v-for="(item,index) in car_detail.model_images" :key="index">
  10. <image style="width: 100%;height: 100%;" class="swiper-item-img" :src="item" mode="aspectFit">
  11. </image>
  12. </swiper-item>
  13. </swiper>
  14. <image v-else class="bg-img" src="https://qiniu.bms16.com/FhRnr7rADHHsOFfpWO4duD15SgIt"
  15. mode="aspectFit">
  16. </image>
  17. </view>
  18. <view class="car-detail-model">
  19. <view class="car-detail-name">{{car_detail.car_model_name}}</view>
  20. <view class="car-detail-price">
  21. <allPrice :amount="Number(price)" />
  22. </view>
  23. <view style="flex-wrap: wrap;justify-content: flex-start;" class="flex-row car-detail-time">
  24. <view v-for="(item,index) in car_detail.rental_setting" :key="index" @click="tapSelectType(item)"
  25. :class="['time-unit',selectType==item.hire_duration_unit? 'time-unit-i':'']">
  26. <text v-if="item.hire_duration_unit==1">{{ $t('日租') }}</text>
  27. <text v-if="item.hire_duration_unit==2">{{ $t('月租') }}</text>
  28. <text v-if="item.hire_duration_unit==3">{{ $t('年租') }}</text>
  29. <text v-if="item.hire_duration_unit==4">{{ $t('时租') }}</text>
  30. <text v-if="item.hire_duration_unit==5">{{ $t('分租') }}</text>
  31. <text v-if="item.hire_duration_unit==6">{{ $t('周租') }}</text>
  32. <text v-if="item.hire_duration_unit==7">{{ $t('季租') }}</text>
  33. </view>
  34. <view v-if="car_detail.sell_price != 0"
  35. @click="tapSelectType({hire_duration_unit:100,hire_price:car_detail.sell_price})"
  36. :data-select_type="100" :data-price="car_detail.sell_price"
  37. :class="['time-unit',selectType==100? 'time-unit-i':'']">{{ $t('购买') }}</view>
  38. </view>
  39. </view>
  40. <!-- <view class="free-num-model">
  41. <view class="flex-row flex-between">
  42. <view class="free-num-view">
  43. <img style="width: 40rpx;height: 40rpx;" src="https://qiniu.bms16.com/FtlfBtBE5-TeTI5EdrciX_u8u_Sx" alt="">
  44. <text class="free-num-text">{{ $t('免费换电次数') }}</text>
  45. </view>
  46. <view class="free-num-time">1 {{ $t('次') }}/{{ $t('日') }}</view>
  47. </view>
  48. <view class="free-num-tip">{{ $t('日租享') }}1{{ $t('次免费换电数,超出后需要单独支付换电费用;') }}</view>
  49. </view> -->
  50. <useGuidance />
  51. <view class="card-car-detail">
  52. <view class="step-title-view flex-row align-center">
  53. <text class="txt-guide">{{ $t('本次消费门店') }}</text>
  54. <img style="width: 86rpx;height: 80rpx;" src="https://qiniu.bms16.com/FibAaPERzqi6m95EP2jREUKixjUi"
  55. alt="">
  56. <view class="w-bg flex-row"></view>
  57. </view>
  58. <view class="step-car-view">
  59. <view class="step-img-view"></view>
  60. <view class="flex-row flex-between" style="margin-bottom: 24rpx;">
  61. <view class="store-name-view">
  62. <view>{{car_detail.shop_name}}</view>
  63. <view class="address-txt">{{car_detail.address}}</view>
  64. </view>
  65. <view class="distance-num">{{car_detail.distance}}m</view>
  66. </view>
  67. <view class="flex-row flex-between align-center">
  68. <view class="time-view flex-row alert-center">
  69. <img class="time-icon" src="https://qiniu.bms16.com/FlGVpR2fdrD1GfeHfDgt-dUMgkOq" alt="">
  70. <text>{{car_detail.work_begin_time + '-' + car_detail.work_end_time}}</text>
  71. </view>
  72. <view class="phone-or-nav flex-row">
  73. <view @tap="tapCallPhone">
  74. <img style="width: 84rpx;height: 64rpx;margin-right: 20rpx;"
  75. src="https://qiniu.bms16.com/FkZYljvsgGtXUGnQaA0wk_sbjlUC" alt="">
  76. </view>
  77. <view @tap="navAddress">
  78. <img style="width: 112rpx;height: 64rpx;"
  79. src="https://qiniu.bms16.com/Fts38M35doVjK09GfOza5qD-wwkK" alt="">
  80. </view>
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. <view class="nodes">
  86. <rich-text v-if="car_detail.model_desc" :nodes="car_detail.model_desc"></rich-text>
  87. </view>
  88. <view style="height: 150rpx;"></view>
  89. <view class="use-car-view flex-row">
  90. <view @tap="useCarBtn" class="use-car-btn">{{ $t('我要用车') }}</view>
  91. </view>
  92. <carPlan v-if="showCarPlan" @changeSelectType="changeSelectType" @closeShowMore="closeShowMore"
  93. :params="params" :selectType="selectType" />
  94. </view>
  95. </view>
  96. </template>
  97. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  98. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  99. <script>
  100. import CarPlan from '@/component/carPlan/carPlan';
  101. import UseGuidance from '@/component/useGuidance/useGuidance';
  102. import allPrice from '@/component/allPrice/allPrice';
  103. import {
  104. LEASE_TYPE_ARR
  105. } from '@/common/constant.js'
  106. var config = require('@/common/config.js');
  107. var common = require('@/common/common.js');
  108. var http = require('@/common/http.js');
  109. var storage = require('@/common/storage.js');
  110. export default {
  111. data() {
  112. return {
  113. shop_type: 0,
  114. recommend_id: '',
  115. car_detail: {},
  116. showCarPlan: false,
  117. selectType: 1,
  118. destance: 0,
  119. price: 0,
  120. params: {}
  121. };
  122. },
  123. components: {
  124. CarPlan,
  125. UseGuidance,
  126. allPrice
  127. },
  128. onLoad: function(options) {
  129. if (options.model_id) {
  130. this.model_id = options.model_id
  131. this.locationFn()
  132. }
  133. if (options.shop_type) {
  134. this.shop_type = options.shop_type
  135. const d = {
  136. hire_duration_unit: options.shop_type,
  137. hire_price: Number(options.hire_price)
  138. }
  139. this.tapSelectType(d)
  140. }
  141. // this.loadCarInfo()
  142. // getFlatternDistance 获取直线距离
  143. },
  144. onPageScroll(e) {
  145. this.scrollTop = e.scrollTop
  146. },
  147. methods: {
  148. locationFn() {
  149. this.loadCarInfo(this.myLocation.longitude, this.myLocation.latitude)
  150. },
  151. loadCarInfo(latitude, longitude) {
  152. const me = this
  153. http.postApi(config.API_FLK_INDEX_CAR_MODEL_DETAIL, {
  154. model_id: me.model_id,
  155. latitude: latitude,
  156. longitude: longitude,
  157. }, (resp) => {
  158. if (resp.data.code === 200) {
  159. // resp.data.data.desc = resp.data.data.desc.replaceAll('/<img\b/gi, '$& style="1"'')
  160. // me.tapSelectType(resp.data.data.rental_setting[0])
  161. resp.data.data.distance = common.formatDistance(Number(resp.data.data.distance))
  162. const imgRegex = /<img([^>]*)>/gi;
  163. // 替换函数,设置 width="100%" 和 height="auto"
  164. const updatedRichText = resp.data.data.model_desc.replace(imgRegex, (match) => {
  165. // 使用正则表达式移除已有的 width 和 height 属性
  166. const cleanedMatch = match.replace(/(width|height)="[^"]*"/gi, '');
  167. // 添加新的 width="100%" 和 height="auto"
  168. return cleanedMatch.replace('<img', '<img width="100%" height="auto"');
  169. });
  170. resp.data.data.model_desc = updatedRichText
  171. me.setData({
  172. car_detail: resp.data.data,
  173. // price: ((resp.data.data.rental_setting[0]?.hire_price || 0) / 100).toFixed(2)
  174. })
  175. let rental_setting = []
  176. resp.data.data.rental_setting.map((item, index) => {
  177. if (index === 0) {
  178. if (!me.shop_type) {
  179. me.tapSelectType({
  180. hire_duration_unit: item.hire_duration_unit,
  181. hire_price: Number(item.hire_price),
  182. })
  183. }
  184. }
  185. LEASE_TYPE_ARR.map(items => {
  186. if (items.value == item.hire_duration_unit) {
  187. item.sort = items.sort
  188. rental_setting.push(item)
  189. }
  190. })
  191. })
  192. resp.data.data.rental_setting = rental_setting.sort((x, y) => {
  193. return x.sort - y.sort
  194. })
  195. } else {
  196. common.simpleToast(resp.data.msg);
  197. }
  198. })
  199. },
  200. tapSelectType(e) {
  201. const {
  202. hire_duration_unit,
  203. hire_price
  204. } = e
  205. this.setData({
  206. selectType: hire_duration_unit,
  207. price: (hire_price / 100).toFixed(2)
  208. })
  209. },
  210. tapCallPhone() {
  211. const me = this
  212. const phone = this.car_detail.link_phone
  213. // const phone = 18170410707
  214. uni.showModal({
  215. content: `${this.$t('您是否要拨打电话')+phone}?`,
  216. confirmText: this.$t('确定'),
  217. success: (res) => {
  218. if (res.confirm) {
  219. uni.makePhoneCall({
  220. phoneNumber: phone,
  221. })
  222. }
  223. },
  224. fail: (res) => {}
  225. })
  226. },
  227. navAddress() {
  228. const {
  229. address,
  230. latitude,
  231. longitude,
  232. shop_name
  233. } = this.car_detail
  234. uni.openLocation({
  235. latitude: latitude - 0,
  236. longitude: longitude - 0,
  237. scale: 15,
  238. name: shop_name,
  239. address: address,
  240. success: function(res) {},
  241. })
  242. },
  243. loadIsLogin() {
  244. uni.navigateTo({
  245. url: '/pages/loginRegister/login',
  246. })
  247. },
  248. useCarBtn() {
  249. const user_token = storage.getUserToken()
  250. if (!user_token) {
  251. this.loadIsLogin()
  252. return
  253. }
  254. const pData = {
  255. ...this.car_detail,
  256. price: this.price
  257. }
  258. this.setData({
  259. showCarPlan: true,
  260. params: pData
  261. })
  262. },
  263. changeSelectType(select_type, price) {
  264. this.setData({
  265. selectType: select_type,
  266. price: (price / 100).toFixed(2)
  267. })
  268. },
  269. closeShowMore() {
  270. this.setData({
  271. showCarPlan: false
  272. })
  273. }
  274. }
  275. };
  276. </script>
  277. <style>
  278. @import './carDetail.css';
  279. .nodes {
  280. color: #333;
  281. font-size: 28rpx;
  282. padding: 34rpx 32rpx 32rpx;
  283. }
  284. .txt-guide {
  285. font-family: PingFangSC, PingFang SC;
  286. height: 40rpx;
  287. color: #FFFFFF;
  288. font-size: 32rpx;
  289. font-weight: 600;
  290. }
  291. </style>