diff --git a/packages/coupon-cell/index.vue b/packages/coupon-cell/index.js similarity index 58% rename from packages/coupon-cell/index.vue rename to packages/coupon-cell/index.js index 64fd71699..f9e38ac9b 100644 --- a/packages/coupon-cell/index.vue +++ b/packages/coupon-cell/index.js @@ -1,21 +1,9 @@ - +import { use } from '../utils'; +import Cell from '../cell'; - diff --git a/packages/coupon-cell/index.less b/packages/coupon-cell/index.less new file mode 100644 index 000000000..10430b38d --- /dev/null +++ b/packages/coupon-cell/index.less @@ -0,0 +1,7 @@ +@import '../style/var'; + +.van-coupon-cell { + &--selected { + color: @text-color; + } +} diff --git a/packages/coupon-list/Item.vue b/packages/coupon-list/Item.vue deleted file mode 100644 index 183b07078..000000000 --- a/packages/coupon-list/Item.vue +++ /dev/null @@ -1,81 +0,0 @@ - - - diff --git a/packages/coupon-list/index.js b/packages/coupon-list/index.js new file mode 100644 index 000000000..a38e9f445 --- /dev/null +++ b/packages/coupon-list/index.js @@ -0,0 +1,207 @@ +import { use } from '../utils'; +import Tab from '../tab'; +import Tabs from '../tabs'; +import Field from '../field'; +import Button from '../button'; +import Coupon from '../coupon'; + +const [sfc, bem, t] = use('coupon-list'); +const EMPTY_IMAGE = 'https://img.yzcdn.cn/v2/image/wap/trade/new_order/empty@2x.png'; + +export default sfc({ + model: { + prop: 'code' + }, + + props: { + code: String, + coupons: Array, + disabledCoupons: Array, + closeButtonText: String, + inputPlaceholder: String, + exchangeButtonText: String, + exchangeButtonLoading: Boolean, + exchangeButtonDisabled: Boolean, + exchangeMinLength: { + type: Number, + default: 1 + }, + chosenCoupon: { + type: Number, + default: -1 + }, + displayedCouponIndex: { + type: Number, + default: -1 + }, + showExchangeBar: { + type: Boolean, + default: true + }, + showCloseButton: { + type: Boolean, + default: true + }, + currency: { + type: String, + default: '¥' + } + }, + + data() { + return { + tab: 0, + winHeight: window.innerHeight, + currentCode: this.code || '' + }; + }, + + computed: { + buttonDisabled() { + return ( + !this.exchangeButtonLoading && + (this.exchangeButtonDisabled || + !this.currentCode || + this.currentCode.length < this.exchangeMinLength) + ); + }, + + title() { + return `${t('enable')} (${this.coupons.length})`; + }, + + disabledTitle() { + return `${t('disabled')} (${this.disabledCoupons.length})`; + }, + + listStyle() { + return { + height: this.winHeight - (this.showExchangeBar ? 140 : 94) + 'px' + }; + } + }, + + watch: { + code(code) { + this.currentCode = code; + }, + + currentCode(code) { + this.$emit('input', code); + }, + + displayedCouponIndex(val) { + this.scrollToShowCoupon(val); + } + }, + + mounted() { + this.scrollToShowCoupon(this.displayedCouponIndex); + }, + + methods: { + onClickExchangeButton() { + this.$emit('exchange', this.currentCode); + + // auto clear currentCode when not use v-model + if (!this.code) { + this.currentCode = ''; + } + }, + + // scroll to show specific coupon + scrollToShowCoupon(index) { + if (index === -1) { + return; + } + + this.$nextTick(() => { + const { card, list } = this.$refs; + + /* istanbul ignore next */ + if (list && card && card[index]) { + list.scrollTop = card[index].$el.offsetTop - 100; + } + }); + } + }, + + render(h) { + const ExchangeBar = this.showExchangeBar && ( + +