|
@@ -70,27 +70,27 @@
|
|
</template>
|
|
</template>
|
|
<!-- 省级价变更后 -->
|
|
<!-- 省级价变更后 -->
|
|
<template slot="afterProvincePrice" slot-scope="text, record">
|
|
<template slot="afterProvincePrice" slot-scope="text, record">
|
|
- <span v-if="record.afterProvincePrice || record.afterProvincePrice==0" :class="record.beforeProvincePrice != record.afterProvincePrice ? 'red' : ''">{{ record.afterProvincePrice }}</span>
|
|
|
|
|
|
+ <span v-if="record.afterProvincePrice || record.afterProvincePrice==0" :class="record.beforeProvincePrice != record.afterProvincePrice ? 'red' : ''">{{ toThousands(record.afterProvincePrice) }}</span>
|
|
<span v-else>--</span>
|
|
<span v-else>--</span>
|
|
</template>
|
|
</template>
|
|
<!-- 市级价变更后 -->
|
|
<!-- 市级价变更后 -->
|
|
<template slot="afterCityPrice" slot-scope="text, record">
|
|
<template slot="afterCityPrice" slot-scope="text, record">
|
|
- <span v-if="record.afterCityPrice || record.afterCityPrice==0" :class="record.beforeCityPrice != record.afterCityPrice ? 'red' : ''">{{ record.afterCityPrice }}</span>
|
|
|
|
|
|
+ <span v-if="record.afterCityPrice || record.afterCityPrice==0" :class="record.beforeCityPrice != record.afterCityPrice ? 'red' : ''">{{ toThousands(record.afterCityPrice) }}</span>
|
|
<span v-else>--</span>
|
|
<span v-else>--</span>
|
|
</template>
|
|
</template>
|
|
<!-- 特约价变更后 -->
|
|
<!-- 特约价变更后 -->
|
|
<template slot="afterSpecialPrice" slot-scope="text, record">
|
|
<template slot="afterSpecialPrice" slot-scope="text, record">
|
|
- <span v-if="record.afterSpecialPrice || record.afterSpecialPrice==0" :class="record.beforeSpecialPrice != record.afterSpecialPrice ? 'red' : ''">{{ record.afterSpecialPrice }}</span>
|
|
|
|
|
|
+ <span v-if="record.afterSpecialPrice || record.afterSpecialPrice==0" :class="record.beforeSpecialPrice != record.afterSpecialPrice ? 'red' : ''">{{ toThousands(record.afterSpecialPrice) }}</span>
|
|
<span v-else>--</span>
|
|
<span v-else>--</span>
|
|
</template>
|
|
</template>
|
|
<!-- 终端价变更后 -->
|
|
<!-- 终端价变更后 -->
|
|
<template slot="afterTerminalPrice" slot-scope="text, record">
|
|
<template slot="afterTerminalPrice" slot-scope="text, record">
|
|
- <span v-if="record.afterTerminalPrice || record.afterTerminalPrice==0" :class="record.beforeTerminalPrice != record.afterTerminalPrice ? 'red' : ''">{{ record.afterTerminalPrice }}</span>
|
|
|
|
|
|
+ <span v-if="record.afterTerminalPrice || record.afterTerminalPrice==0" :class="record.beforeTerminalPrice != record.afterTerminalPrice ? 'red' : ''">{{ toThousands(record.afterTerminalPrice) }}</span>
|
|
<span v-else>--</span>
|
|
<span v-else>--</span>
|
|
</template>
|
|
</template>
|
|
<!-- 车主价变更后 -->
|
|
<!-- 车主价变更后 -->
|
|
<template slot="afterCarOwnersPrice" slot-scope="text, record">
|
|
<template slot="afterCarOwnersPrice" slot-scope="text, record">
|
|
- <span v-if="record.afterCarOwnersPrice || record.afterCarOwnersPrice==0" :class="record.beforeCarOwnersPrice != record.afterCarOwnersPrice ? 'red' : ''">{{ record.afterCarOwnersPrice }}</span>
|
|
|
|
|
|
+ <span v-if="record.afterCarOwnersPrice || record.afterCarOwnersPrice==0" :class="record.beforeCarOwnersPrice != record.afterCarOwnersPrice ? 'red' : ''">{{ toThousands(record.afterCarOwnersPrice) }}</span>
|
|
<span v-else>--</span>
|
|
<span v-else>--</span>
|
|
</template>
|
|
</template>
|
|
</s-table>
|
|
</s-table>
|