|
@@ -10,7 +10,7 @@ import starOn from '@/assets/icons/housemantj/onlove.png'
|
10
|
10
|
import starOff from '@/assets/icons/housemantj/景点爆赞.png'
|
11
|
11
|
import food from '@/assets/icons/ProCard/food.png'
|
12
|
12
|
import ProCard_hot from '@/assets/icons/ProCard/ProCard_hot.png'
|
13
|
|
-
|
|
13
|
+import formatPrice from "@/utils/formatPrice";
|
14
|
14
|
import { getQueryString } from '@/utils/index'
|
15
|
15
|
//入住指引--老板推荐
|
16
|
16
|
|
|
@@ -61,7 +61,7 @@ export default (props) => {
|
61
|
61
|
<view class='left-complete-one' >
|
62
|
62
|
<image className='left-image-1' src={ProCard_hot}></image>
|
63
|
63
|
<view className='left-viewText'>
|
64
|
|
- 返现¥{(item.cashback / 100)?.toFixed(2)}
|
|
64
|
+ 返现¥{formatPrice(item.cashback)}
|
65
|
65
|
</view>
|
66
|
66
|
{/* 评分 */}
|
67
|
67
|
<view className='card-box-star'>
|
|
@@ -76,7 +76,7 @@ export default (props) => {
|
76
|
76
|
<view className='Pro-title' onClick={() => { goFood() }} >
|
77
|
77
|
<view className='title-text'>{(item.description).toString().length > 25 ? (item.description).substring(0, 25) + '...' : (item.description)}</view>
|
78
|
78
|
</view>
|
79
|
|
- <text className='title-money' >¥{(item.actualPrice / 100)?.toFixed(2)}元<text className='title-money-2'>门市价{(item.standardPrice / 100)?.toFixed(2)}元</text></text>
|
|
79
|
+ <text className='title-money' >¥{formatPrice(item.actualPrice)}元<text className='title-money-2'>门市价{formatPrice(item.standardPrice)}元</text></text>
|
80
|
80
|
<view className='title-position-on'>
|
81
|
81
|
<image className='title-position' src={position} />
|
82
|
82
|
<text className='title-position-image'>{city.areaName=='南京市'?city.areaName:city.areaPName+'/'+city.areaName}</text>
|