[Improvement] CouponCell text adjust (#371)

* [Improvement] CouponCell text adjust

* fix: Coupon test cases

* [bugfix] SubmitBar i18n not work
This commit is contained in:
neverland 2017-12-04 11:32:55 +08:00 committed by GitHub
parent b50d8cd8f6
commit bbdf135724
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 19 deletions

View File

@ -1,15 +1,7 @@
<template>
<div class="van-coupon-cell">
<van-cell-group>
<van-cell :title="title" :isLink="editable" @click="$emit('click')">
<div v-if="coupons[chosenCoupon]">
<div>{{ coupons[chosenCoupon].name }}</div>
<div>{{ coupons[chosenCoupon].condition }}</div>
</div>
<template v-else>{{ guide }}</template>
</van-cell>
</van-cell-group>
</div>
<van-cell-group class="van-coupon-cell">
<van-cell :title="title || '优惠券码'" :value="value" :isLink="editable" @click="$emit('click')" />
</van-cell-group>
</template>
<script>
@ -29,10 +21,7 @@ export default {
},
props: {
title: {
type: String,
default: '优惠'
},
title: String,
coupons: {
type: Array,
default: () => []
@ -48,8 +37,13 @@ export default {
},
computed: {
guide() {
return this.coupons.length === 0 ? '使用优惠' : `您有 ${this.coupons.length} 个可用优惠`;
value() {
const { coupons } = this;
const coupon = coupons[this.chosenCoupon];
if (coupon) {
return `省¥${(coupon.value / 100).toFixed(2)}`;
}
return coupons.length === 0 ? '使用优惠' : `您有 ${coupons.length} 个可用优惠`;
}
}
};

View File

@ -21,10 +21,13 @@
<script>
import Button from '../button';
import { i18n } from '../locale';
export default {
name: 'van-submit-bar',
mixins: [i18n],
components: {
[Button.name]: Button
},

View File

@ -82,7 +82,7 @@ describe('CouponCell', () => {
DOMChecker(wrapper, {
text: {
'.van-cell__value--link div div': '新手专用优惠券'
'.van-cell__value--link span': '省¥1.50'
},
count: {
'.van-cell__right-icon': 1
@ -101,7 +101,7 @@ describe('CouponCell', () => {
DOMChecker(wrapper, {
text: {
'.van-cell__value div div': '新手专用优惠券'
'.van-cell__value span': '省¥1.50'
},
count: {
'.van-cell__right-icon': 0