diff --git a/packages/common/style/var.less b/packages/common/style/var.less index 256a67ab..3f09c412 100644 --- a/packages/common/style/var.less +++ b/packages/common/style/var.less @@ -132,6 +132,23 @@ @stepper-input-disabled-color: @active-color; @stepper-border-radius: 4px; +// SubmitBar +@submit-bar-height: 50px; +@submit-bar-z-index: 100; +@submit-bar-background-color: @white; +@submit-bar-button-width: 110px; +@submit-bar-price-color: @red; +@submit-bar-price-font-size: 18px; +@submit-bar-currency-font-size: 14px; +@submit-bar-text-color: @text-color; +@submit-bar-text-font-size: 14px; +@submit-bar-tip-padding: 10px; +@submit-bar-tip-font-size: 12px; +@submit-bar-tip-line-height: 1.5; +@submit-bar-tip-color: #f56723; +@submit-bar-tip-background-color: #fff7cc; +@submit-bar-tip-icon-size: 12px; + // NavBar @nav-bar-height: 44px; diff --git a/packages/submit-bar/README.md b/packages/submit-bar/README.md index c1194464..00ea8216 100644 --- a/packages/submit-bar/README.md +++ b/packages/submit-bar/README.md @@ -78,6 +78,7 @@ es5 |-----------|-----------|-----------|-------------| | price | 价格(单位分) | `Number` | - | | label | 价格文案 | `String` | `合计:` | +| suffix-label | 价格右侧文案 | `String` | - | | button-text | 按钮文字 | `String` | - | | button-type | 按钮类型 | `String` | `danger` | | tip | 提示文案 | `String` / `Boolean` | - | @@ -100,7 +101,7 @@ es5 |-----------|-----------| | - | 自定义订单栏左侧内容 | | top | 自定义订单栏上方内容 | -| tip | 提示文案中的额外操作和说明,`tip` 不为空时才显示 | +| tip | 提示文案中的额外操作和说明 | ### 外部样式类 diff --git a/packages/submit-bar/index.less b/packages/submit-bar/index.less index 75d6354a..7924a297 100644 --- a/packages/submit-bar/index.less +++ b/packages/submit-bar/index.less @@ -1,25 +1,29 @@ @import '../common/style/var.less'; .van-submit-bar { - z-index: 100; position: fixed; bottom: 0; left: 0; + z-index: @submit-bar-z-index; width: 100%; user-select: none; &__tip { - padding: 10px; - color: #f56723; - font-size: 12px; - line-height: 18px; - background-color: #fff7cc; + padding: @submit-bar-tip-padding; + font-size: @submit-bar-tip-font-size; + line-height: @submit-bar-tip-line-height; + color: @submit-bar-tip-color; + background-color: @submit-bar-tip-background-color; + + &:empty { + display: none; + } } &__tip-icon { - width:12px; - height:12px; - margin-right:4px; + width: 12px; + height: 12px; + margin-right: 4px; vertical-align: middle; } @@ -30,10 +34,11 @@ &__bar { display: flex; + height: @submit-bar-height; + font-size: @submit-bar-text-font-size; + background-color: @submit-bar-background-color; align-items: center; - height: 50px; - background-color: @white; - font-size: 14px; + justify-content: flex-end; &--safe { padding-bottom: @safe-area-inset-bottom; @@ -41,23 +46,27 @@ } &__text { - flex: 1; - color: @text-color; + padding-right: 12px; font-weight: 500; + color: @submit-bar-text-color; + flex: 1; text-align: right; } &__price { - color: @red; - font-size: 18px; - padding-right: 12px; + font-size: @submit-bar-price-font-size; + color: @submit-bar-price-color; } &__currency { - font-size: 14px; + font-size: @submit-bar-currency-font-size; + } + + &__suffix-label { + margin-left: 5px; } &__button { - width: 110px; + width: @submit-bar-button-width; } } diff --git a/packages/submit-bar/index.ts b/packages/submit-bar/index.ts index bec82ec0..e2f1d724 100644 --- a/packages/submit-bar/index.ts +++ b/packages/submit-bar/index.ts @@ -11,10 +11,16 @@ VantComponent({ ], props: { - tip: null, + tip: { + type: null, + observer: 'updateTip' + }, tipIcon: String, type: Number, - price: null, + price: { + type: null, + observer: 'updatePrice' + }, label: String, loading: Boolean, disabled: Boolean, @@ -29,26 +35,25 @@ VantComponent({ }, decimalLength: { type: Number, - value: 2 - } - }, - - computed: { - hasPrice() { - return typeof this.data.price === 'number'; + value: 2, + observer: 'updatePrice' }, - - priceStr() { - return (this.data.price / 100).toFixed(this.data.decimalLength); - }, - - tipStr() { - const { tip } = this.data; - return typeof tip === 'string' ? tip : ''; - } + suffixLabel: String }, methods: { + updatePrice() { + const { price, decimalLength } = this.data; + this.set({ + hasPrice: typeof price === 'number', + priceStr: (price / 100).toFixed(decimalLength) + }); + }, + + updateTip() { + this.set({ hasTip: typeof this.data.tip === 'string' }); + }, + onSubmit(event: Weapp.Event) { this.$emit('submit', event.detail); } diff --git a/packages/submit-bar/index.wxml b/packages/submit-bar/index.wxml index 3b5447b6..a9c7f0e6 100644 --- a/packages/submit-bar/index.wxml +++ b/packages/submit-bar/index.wxml @@ -3,28 +3,28 @@ - + - - {{ tipStr }} + + {{ tip }} - - - {{ label || '合计:' }} - - {{ currency }} {{ priceStr }} - - + + {{ label || '合计:' }} + + {{ currency }} + {{ priceStr }} + + {{ suffixLabel }}