| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <template>
- <view class="ui-unit-discount" :style="box_style" v-if="visible">
- <span class="bold">
- <!-- 类型1 -->
- <template v-if="type == 1">
- {{ value_parse }}%<br />
- <view>OFF</view>
- </template>
- <!-- 类型2 -->
- <template v-else>
- -{{ value_parse }}%
- </template>
- </span>
- </view>
- </template>
- <script>
- export default {
- name: 'unit-discount',
- props: {
- value: {
- default: 0
- },
- config: {
- type: Object,
- required: true
- }
- },
- computed: {
- /**
- * 控制是否展示
- * 1. 装修页强制展示
- * 2. 小于0隐藏
- */
- visible() {
- let visible = true;
- visible = (this.config.discount_show === undefined || this.config.discount_show === null) ? true : Number(
- this.config.discount_show) >= 1;
- if (Number(this.value) <= 0) {
- visible = false;
- }
- return visible;
- },
- /**
- * 折扣标的类型
- * @default 2
- * @example
- * 1 = **%OFF
- * 2 = -***%
- */
- type() {
- return this.config.discount_type || 1;
- },
- /**
- * 折扣标的右边距
- */
- right() {
- return 0;
- },
- /**
- * 折扣标的上边距
- */
- top() {
- return 0;
- },
- /**
- * 整体宽度
- */
- width() {
- return 40;
- },
- /**
- * 整体高度
- */
- height() {
- return 40;
- },
- // 折扣标的自定义样式
- style_body() {
- const style = {
- width: this.width + 'px',
- height: this.height + 'px',
- right: this.right + 'px',
- top: this.top + 'px',
- color: this.config.discount_font_color || '#fff'
- };
- if (this.config.discount_bg_image) {
- style['background-image'] = `url("${this.config.discount_bg_image}")`;
- style['border-radius'] = 0;
- } else {
- style['background-color'] = this.config.discount_bg_color || '#333333';
- }
- return style;
- },
- box_style() {
- if (this.config.discount_bg_image) {
- return `
- width: ${this.width} + 'px';
- height: ${this.height} + 'px';
- right: ${this.right} + 'px';
- top: ${this.top} + 'px';
- color:${this.config.discount_font_color};
- background-image:url("${this.config.discount_bg_image}");
- border-radius = 0;
- `;
- } else {
- return `
- width: ${this.width} + 'px';
- height: ${this.height} + 'px';
- right: ${this.right} + 'px';
- top: ${this.top} + 'px';
- color:${this.config.discount_font_color};
- background-color:${this.config.discount_bg_color};
- `;
- }
- },
- // 计算值,四舍五入
- value_parse() {
- const nval = Math.round(this.value);
- if (nval <= 0) {
- return 0;
- }
- if (nval >= 100) {
- return 100;
- }
- return nval;
- }
- }
- };
- </script>
- <style lang="less" scoped>
- // 浮动折扣标
- .ui-unit-discount {
- position: absolute;
- right: 0px;
- top: 0px;
- width: 40px;
- height: 40px;
- border-radius: 100%;
- overflow: hidden;
- z-index: 1;
- background-size: 100% 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- text-align: center;
- >span {
- font-size: 12px;
- // line-height: 22 / 75rem;
- >view {
- font-size: 12px;
- font-style: normal;
- font-weight: 400;
- font-family: OpenSans-Regular, arial, serif;
- }
- }
- }
- </style>
|