|
@@ -413,7 +413,7 @@ export default {
|
|
const utd = { 'YUAN': '元(原价)', 'GE': '个' }
|
|
const utd = { 'YUAN': '元(原价)', 'GE': '个' }
|
|
this.setTableData = resultObj.specialDiscountList.map(item => {
|
|
this.setTableData = resultObj.specialDiscountList.map(item => {
|
|
return {
|
|
return {
|
|
- orginAmountValue: '购买满 ' + this.toThousands(item.discountScopeValue) + ' ' + utd[item.unitType],
|
|
|
|
|
|
+ orginAmountValue: '购买满 ' + (item.unitType == 'YUAN' ? this.toThousands(item.discountScopeValue) : item.discountScopeValue) + ' ' + utd[item.unitType],
|
|
unitType: item.unitType,
|
|
unitType: item.unitType,
|
|
provinceValue: item.provinceDiscountRate,
|
|
provinceValue: item.provinceDiscountRate,
|
|
cityValue: item.cityDiscountRate,
|
|
cityValue: item.cityDiscountRate,
|