vdesign-ui 0.1.24-beta → 0.2.0-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/components/activityviews/index.vue +1 -1
  2. package/dist/components/checkbox/checkbox-group/index.vue +2 -1
  3. package/dist/components/checkbox/index.vue +19 -20
  4. package/dist/components/dialog/index.vue +15 -11
  5. package/dist/components/footer/index.vue +5 -1
  6. package/dist/components/footnav/footnav-item/index.vue +10 -37
  7. package/dist/components/footnav/index.vue +13 -27
  8. package/dist/components/headnav/index.vue +52 -35
  9. package/dist/components/icon/font/iconfont.css +16 -16
  10. package/dist/components/icon/font/iconfont.js +1 -1
  11. package/dist/components/icon/index.vue +26 -18
  12. package/dist/components/input/index.vue +84 -109
  13. package/dist/components/input/search/index.vue +18 -22
  14. package/dist/components/input/stepper/index.vue +32 -26
  15. package/dist/components/input/style.less +20 -32
  16. package/dist/components/list/index.vue +57 -69
  17. package/dist/components/list/style.less +20 -92
  18. package/dist/components/loading/index.vue +17 -8
  19. package/dist/components/pagebreak/index.vue +12 -11
  20. package/dist/components/radio/index.vue +164 -135
  21. package/dist/components/radio/radio-group/index.vue +40 -52
  22. package/dist/components/selector/style.less +4 -0
  23. package/dist/components/step-item/index.vue +2 -2
  24. package/dist/components/tabs/index.vue +55 -32
  25. package/dist/components/tabs/tab/index.vue +13 -16
  26. package/dist/components/tag/index.vue +18 -4
  27. package/dist/components/tag/style.less +2 -2
  28. package/dist/components/title/index.vue +11 -8
  29. package/dist/components/title/style.less +6 -0
  30. package/dist/vdesign-ui.common.js +954 -939
  31. package/dist/vdesign-ui.css +1 -1
  32. package/dist/vdesign-ui.umd.js +954 -939
  33. package/dist/vdesign-ui.umd.min.js +3 -3
  34. package/package.json +1 -1
@@ -2,8 +2,15 @@
2
2
  <div class="vd-stepper" :class="wrapClasses">
3
3
  <vd-button v-if="!position" :class="minusButtonClass" icon="icon_btn_reduce" size="small"
4
4
  @click="onChange('minus')"></vd-button>
5
- <input type="number" :class="inputClasses" :disabled="disabled" :value="currentValue" :placeholder="placeholder" @input="onInput"
6
- @blur="onBlur">
5
+ <input
6
+ type="number"
7
+ :class="inputClasses"
8
+ :disabled="disabled"
9
+ :value="currentValue"
10
+ :placeholder="placeholder"
11
+ @input="onInput"
12
+ @blur="onBlur"
13
+ >
7
14
  <vd-button v-if="position === 'right'" class="vd-stepper__minus" icon="icon_btn_reduce" size="small"
8
15
  @click="onChange('minus')"></vd-button>
9
16
  <vd-button :class="plusButtonClass" icon="icon_btn_add" size="small"
@@ -21,7 +28,7 @@ export default {
21
28
  props: {
22
29
  value: null,
23
30
  integer: Boolean,
24
- position: String,
31
+ position: String,
25
32
  inputCenter: Boolean,
26
33
  disabled: Boolean,
27
34
  theme: String,
@@ -37,16 +44,21 @@ export default {
37
44
  type: [String, Number],
38
45
  default: 1
39
46
  },
40
- placeholder:String
47
+ placeholder: String
41
48
  },
42
49
  data() {
43
- const value = this.range(this.isDef(this.value) ? this.value : this.defaultValue);
44
- if (value !== +this.value) {
45
- this.$emit('input', value);
50
+ let value;
51
+ if (this.isDef(this.value)) {
52
+ value = this.range(this.value);
53
+ if (value !== this.value) {
54
+ this.$emit('input', value);
55
+ }
56
+ } else {
57
+ value = '';
46
58
  }
47
59
  return {
48
60
  currentValue: value,
49
- }
61
+ };
50
62
  },
51
63
  computed: {
52
64
  inputClasses() {
@@ -60,7 +72,6 @@ export default {
60
72
  [`${prefixCls}--disabled`]: this.disabled,
61
73
  [`${prefixCls}--${this.theme}`]: this.theme,
62
74
  [`${prefixCls}--center`]: this.inputCenter
63
-
64
75
  }
65
76
  ]
66
77
  },
@@ -72,13 +83,6 @@ export default {
72
83
  const hairlineClass = this.language === 'ar' ? 'vd-hairline--right' : 'vd-hairline--left';
73
84
  return `vd-stepper__plus ${hairlineClass}`;
74
85
  }
75
- // minusDisabled() {
76
- // return this.disabled || this.currentValue <= this.min;
77
- // },
78
-
79
- // plusDisabled() {
80
- // return this.disabled || this.currentValue >= this.max;
81
- // }
82
86
  },
83
87
  watch: {
84
88
  value(val) {
@@ -86,7 +90,6 @@ export default {
86
90
  this.currentValue = this.format(val);
87
91
  }
88
92
  },
89
-
90
93
  currentValue(val) {
91
94
  this.$emit('input', val);
92
95
  this.$emit('change', val);
@@ -94,36 +97,39 @@ export default {
94
97
  },
95
98
  methods: {
96
99
  format(value) {
100
+ if (value === '' || value === null || value === undefined) {
101
+ return '';
102
+ }
97
103
  value = String(value).replace(/[^0-9.-]/g, '');
98
- return value === '' ? 0 : this.integer ? Math.floor(value) : +value;
104
+ return this.integer ? Math.floor(value) : +value;
99
105
  },
100
-
101
106
  // limit value range
102
107
  range(value) {
103
- return Math.max(Math.min(this.max, this.format(value)), this.min);
108
+ value = this.format(value);
109
+ if (value === '') {
110
+ return value;
111
+ }
112
+ return Math.max(Math.min(this.max, value), this.min);
104
113
  },
105
-
106
114
  onInput(event) {
107
115
  const { value } = event.target;
108
116
  const formatted = this.format(value);
109
- if (+value !== formatted) {
117
+ if (value !== String(formatted)) {
110
118
  event.target.value = formatted;
111
119
  }
112
120
  this.currentValue = formatted;
113
121
  },
114
-
115
122
  onChange(type) {
116
123
  if (this[`${type}Disabled`]) {
117
124
  this.$emit('overlimit', type);
118
125
  return;
119
126
  }
120
127
  const diff = type === 'minus' ? -this.step : +this.step;
121
- const value = Math.round((this.currentValue + diff) * 100) / 100;
128
+ let value = this.currentValue === '' ? 0 : this.currentValue;
129
+ value = Math.round((value + diff) * 100) / 100;
122
130
  this.currentValue = this.range(value);
123
-
124
131
  this.$emit(type);
125
132
  },
126
-
127
133
  onBlur(event) {
128
134
  this.currentValue = this.range(this.currentValue);
129
135
  this.$emit('blur', event);
@@ -106,16 +106,19 @@
106
106
  padding-block-start: calc(var(--spacing-input-textarea-padding_x) * 1px);
107
107
  padding-block-end: calc(var(--spacing-input-textarea-padding_x) * 1px);
108
108
  font-size: calc(var(--en-single-f-d-s-fontSize) * 1px);
109
-
110
- .@{input-prefix-cls}__word-limit {
111
- text-align: end;
112
- color: var(--color-input-text-default);
113
- font-size: calc(var(--en-single-f-b-r-fontSize) * 1px);
114
- font-weight: var(--en-single-f-b-r-fontWeight);
115
- margin-block-start: calc(var(--spacing-input-textarea_text-margin_down) * 1px);
116
109
 
117
- &--error {
118
- color: var(--color-input-text-wrong);
110
+ .@{input-prefix-cls}-form__right{
111
+ display: block;
112
+ .@{input-prefix-cls}__word-limit {
113
+ text-align: end;
114
+ color: var(--color-input-text-default);
115
+ font-size: calc(var(--en-single-f-b-r-fontSize) * 1px);
116
+ font-weight: var(--en-single-f-b-r-fontWeight);
117
+ margin-block-start: calc(var(--spacing-input-textarea_text-margin_down) * 1px);
118
+
119
+ &--error {
120
+ color: var(--color-input-text-wrong);
121
+ }
119
122
  }
120
123
  }
121
124
 
@@ -132,7 +135,6 @@
132
135
  color: var(--color-input-text-active);
133
136
  font-size: calc(var(--en-single-f-d-s-fontSize) * 1px);
134
137
  font-weight: var(--en-single-f-d-s-fontWeight);
135
- // margin-inline-end: calc(var(--spacing-input-form_divider-margin_y) * 1px);
136
138
  padding-inline-end: calc(var(--spacing-input-form_divider-margin_y) * 1px);
137
139
  }
138
140
 
@@ -144,7 +146,8 @@
144
146
  color: var(--color-input-text-default);
145
147
  font-size: calc(var(--en-single-f-b-r-fontSize) * 1px);
146
148
  font-weight: var(--en-single-f-b-r-fontWeight);
147
- margin-block-start: 0;
149
+ // margin-block-start: 0;
150
+ margin-inline-start: calc(var(--spacing-input-suffix_icon-margin_y) * 1px);
148
151
 
149
152
  &--error {
150
153
  color: var(--color-input-text-wrong);
@@ -154,7 +157,7 @@
154
157
 
155
158
  &__suffix {
156
159
  margin-inline-start: calc(var(--spacing-input-suffix_icon-margin_y) * 1px);
157
- margin-inline-end: calc(var(--spacing-input-suffix_icon-margin_y) * 1px);
160
+ // margin-inline-end: calc(var(--spacing-input-suffix_icon-margin_y) * 1px);
158
161
  color: var(--color-input-text-active);
159
162
  font-size: calc(var(--en-single-f-d-s-fontSize) * 1px);
160
163
  font-weight: var(--en-single-f-d-s-fontWeight);
@@ -239,9 +242,10 @@
239
242
 
240
243
  .@{input-prefix-cls} {
241
244
  &-search{
242
- padding-inline-end: 0;
243
- flex: 1;
244
- }
245
+ padding-inline-start: 0;
246
+ padding-inline-end: 0;
247
+ flex: 1;
248
+ }
245
249
  }
246
250
 
247
251
 
@@ -265,21 +269,18 @@
265
269
  font-weight: var(--en-single-f-d-s-fontWeight);
266
270
  caret-color: var(--color-input-cursor);
267
271
 
268
-
269
272
  &::-webkit-input-placeholder {
270
273
  color: var(--color-input-text-default);
271
274
  font-size: calc(var(--en-single-f-d-r-fontSize) * 1px);
272
275
  font-weight: var(--en-single-f-d-r-fontWeight);
273
276
  }
274
277
  }
275
-
276
-
277
278
  }
278
279
  }
279
280
 
280
281
  &__prefix {
281
282
  display: flex;
282
-
283
+ padding-inline-end: calc(var(--spacing-input-suffix_icon-margin_y)* 1px);
283
284
  .vd-iconfont {
284
285
  vertical-align: middle;
285
286
  color: var(--text-color-h3);
@@ -287,19 +288,6 @@
287
288
  }
288
289
  }
289
290
 
290
- &__suffix {
291
- margin-inline-start: calc(var(--spacing-input-suffix_icon-margin_y) * 1px);
292
- color: var(--color-input-text-active);
293
- font-size: calc(var(--en-single-f-d-s-fontSize) * 1px);
294
- font-weight: var(--en-single-f-d-s-fontWeight);
295
-
296
- .vd-iconfont {
297
- vertical-align: middle;
298
- color: var(--text-color-h3);
299
- font-size: calc(var(--icon-input-clean) * 1px);
300
- }
301
- }
302
-
303
291
  &__action {
304
292
  margin-inline-start: calc(var(--spacing-input-search_cancel-margin_left) * 1px);
305
293
  display: flex;
@@ -1,39 +1,46 @@
1
1
  <template>
2
- <div class="vd-list" :class="wrapClasses" @click="toggleActiveSelect">
2
+ <div class="vd-list" :class="wrapClasses" @click="handleToggleActive">
3
+ <!-- 左侧内容区域 -->
3
4
  <div class="vd-list--left" :class="listLeftClasses">
4
- <vd-icon v-if="leftCusIcon" :name="leftCusIcon" :svg="leftCusSvg" :class="leftCusIconClasses"
5
- :style="{ 'fontSize': fontSize + 'px' }"></vd-icon>
6
- <div v-if="extraSlot">
7
- <slot></slot>
8
- </div>
5
+ <!-- 通用列表和勾选列表自定义左侧图标 距离右边12px-->
6
+ <vd-icon v-if="icon" :name="icon" size="large" :class="iconClasses"></vd-icon>
9
7
  <div class="vd-list-content" :class="contentClasses">
10
- <vd-icon v-if="leftIcon" :name="leftIcon" :svg="leftSvg" :class="leftIconClasses"></vd-icon>
11
- <span class="vd-list-inner__title vd-multi-ellipsis--l2" :class="innerTitleClasses">{{ title }}</span>
12
- <vd-icon v-if="rightIcon" :name="rightIcon" :svg="rightSvg" :class="rightIconClasses"></vd-icon>
13
- <p class="vd-title__subtext vd-multi-ellipsis--l2" :class="subTextClasses" v-if="subText">{{ subText }}
8
+ <!-- 标题 -->
9
+ <span class="vd-multi-ellipsis--l2" :class="innerTitleClasses">{{ title }}</span>
10
+ <!-- 通用列表副文本 -->
11
+ <p class="vd-multi-ellipsis--l2" :class="subtitleClasses" v-if="subtitle">{{ subtitle }}
14
12
  </p>
15
13
  </div>
14
+ <!-- 信息列表右侧图标 -->
15
+ <vd-icon v-if="statusIcon" :name="statusIcon" size="small" :class="statusIconClasses"></vd-icon>
16
+ <!-- 勾选列表 额外插槽 -->
17
+ <slot name="left"></slot>
16
18
  </div>
17
- <div class="vd-list--right" v-if="guideText || arrowNext || activeSelect || $slots.default">
18
- <vd-icon class="vd-list__icon--extra" v-if="cusIcon" :name="cusIcon" :svg="cusSvg"></vd-icon>
19
- <slot name="badge">
20
- <vd-badge is-dot v-if="badge" class="vd-list-common__badge"></vd-badge>
21
- </slot>
22
- <!-- </span> -->
23
- <span v-if="guideText" :class="textRightClasses">
19
+ <!-- 右侧内容区域 -->
20
+ <div class="vd-list--right" v-if="guideText || arrowIcon || isActive || $slots.switch">
21
+ <!-- 信息列表右侧自定义图标 -->
22
+ <vd-icon class="vd-list__icon--extra" size="small" v-if="actionIcon" :name="actionIcon"></vd-icon>
23
+ <!-- 通用列表徽标插槽 左间距12 -->
24
+ <span class="vd-list-common__badge" v-if="showBadge || $slots.badge">
25
+ <slot name="badge">
26
+ <vd-badge is-dot></vd-badge>
27
+ </slot>
28
+ </span>
29
+ <!-- 右侧文本 -->
30
+ <div v-if="guideText" :class="textRightClasses">
24
31
  <p>{{ guideText }}</p>
25
32
  <p v-if="mulText" class="vd-list__multext">{{ mulText }}</p>
33
+ </div>
34
+ <!-- 右箭头 左间距4 设计师没有提供默认图标,不设置默认值-->
35
+ <span v-if="arrowIcon" class="vd-list__arrow" @click="$emit('next')">
36
+ <vd-icon :name="arrowIcon" size="small"></vd-icon>
26
37
  </span>
27
- <span v-if="arrowNext" class="vd-list-arrow" @click="$emit('back')">
28
- <vd-icon :name="arrowNext"></vd-icon>
29
- </span>
30
- <!-- <span v-if="activeSelect" class="vd-list-check__select"> -->
31
- <vd-icon v-if="activeSelect" class="vd-list-check__select" name="icon_btn_singleslt"
38
+ <!-- 勾选列表选择图标 左间距12-->
39
+ <vd-icon v-if="isActive" class="vd-list-check__select" name="icon_btn_singleslt"
32
40
  color="#1BC47D"></vd-icon>
33
- <!-- </span> -->
34
-
35
- <span v-if="curSlot" class="vd-list__switch">
36
- <slot></slot>
41
+ <!-- 通用列表自定义插槽 左间距8 -->
42
+ <span v-if="$slots.switch" class="vd-list__switch">
43
+ <slot name="switch"></slot>
37
44
  </span>
38
45
  </div>
39
46
  </div>
@@ -44,33 +51,21 @@ const prefixCls = 'vd-list';
44
51
  export default {
45
52
  name: 'vd-list',
46
53
  props: {
47
- title: String,
48
- leftIcon:String,
49
- rightIcon:String,
50
- cusIcon: String,
51
- leftCusIcon: String,
52
- arrow: Boolean,
53
- subText: String,
54
- guideText: String,
55
- mulText: String,
56
- activeSelect: Boolean,
57
- type: String,
58
- leftSvg: Boolean,
59
- rightSvg: Boolean,
60
- cusSvg: Boolean,
61
- leftCusSvg: Boolean,
62
- arrowNext: String,
63
- badge: Boolean,
64
- curSlot: Boolean,
65
- divider: Boolean,
66
- extraSlot: Boolean,
67
- fontSize: {
68
- type: [String, Number],
69
- },
54
+ title: String, // 标题文本
55
+ icon: String, // 主图标(左侧文字前)
56
+ statusIcon:String, // 状态图标(左侧文字后)
57
+ actionIcon: String, // 动作图标(右侧)
58
+ subtitle: String, // 左侧副文本
59
+ guideText: String, // 右侧引导文本
60
+ mulText: String, // 右侧额外文本
61
+ isActive: Boolean, // 是否激活选择状态
62
+ type: String, // 列表项类型 信息列表四个尺寸 L(56固定)\M(48自适应)\S(40自适应)\XS(32自适应) common(通用列表) check(勾选列表)
63
+ arrowIcon: String, // 右箭头图标名称
64
+ showBadge : Boolean, // 是否显示徽标,默认是 小点
65
+ divider: Boolean, // 是否显示分割线
70
66
  },
71
67
  data() {
72
68
  return {
73
- name: ""
74
69
  };
75
70
  },
76
71
  computed: {
@@ -78,55 +73,48 @@ export default {
78
73
  return [
79
74
  {
80
75
  [`${prefixCls}-${this.type}`]: this.type,
81
- [`${prefixCls}-${this.type}--active`]: this.activeSelect,
82
- [`${prefixCls}-${this.type}-double`]: this.subText,
76
+ [`${prefixCls}-${this.type}--active`]: this.isActive,
83
77
  'vd-hairline--bottom': this.divider,
84
78
  }
85
79
  ];
86
80
  },
87
- leftIconClasses() {
81
+ listLeftClasses() {
88
82
  return [
89
83
  {
90
- [`${prefixCls}-${this.type}__icon--left`]: this.type
84
+ [`${prefixCls}-common--left`]: this.type
91
85
  }
92
86
  ];
93
87
  },
94
- leftCusIconClasses() {
88
+ iconClasses() {
95
89
  return [
96
90
  {
97
91
  [`${prefixCls}-${this.type}__icon--leftcus`]: this.type
98
92
  }
99
93
  ];
100
94
  },
101
- listLeftClasses() {
102
- return [
103
- {
104
- [`${prefixCls}-common--left`]: this.type
105
- }
106
- ];
107
- },
108
95
  contentClasses() {
109
96
  return [
110
97
  {
111
- [`${prefixCls}-content-${this.type}`]: this.type
98
+ [`${prefixCls}-content-${this.type}`]: this.type === 'common',
112
99
  }
113
100
  ];
114
101
  },
115
102
  innerTitleClasses() {
116
103
  return [
117
104
  {
118
- [`${prefixCls}-${this.type}__title`]: this.type
105
+ [`${prefixCls}-${this.type}__title`]: this.type,
106
+ [`${prefixCls}-${this.type}__title--with-subtitle`] : this.subtitle
119
107
  }
120
108
  ];
121
109
  },
122
- subTextClasses() {
110
+ subtitleClasses() {
123
111
  return [
124
112
  {
125
- [`${prefixCls}-${this.type}__subtext`]: this.type
113
+ [`${prefixCls}-${this.type}__subtitle`]: this.type
126
114
  }
127
115
  ];
128
116
  },
129
- rightIconClasses() {
117
+ statusIconClasses() {
130
118
  return [
131
119
  {
132
120
  [`${prefixCls}-${this.type}__icon--right`]: this.type
@@ -144,8 +132,8 @@ export default {
144
132
  mounted() {
145
133
  },
146
134
  methods: {
147
- toggleActiveSelect() {
148
- this.$emit('toggle-active', !this.activeSelect);
135
+ handleToggleActive() {
136
+ this.$emit('toggle-active', !this.isActive);
149
137
  }
150
138
  },
151
139
  watch: {
@@ -23,24 +23,10 @@
23
23
  align-items: flex-start;
24
24
  }
25
25
 
26
- // &-inner__title{
27
- // color: var(--color-title-head);
28
- // }
29
-
30
- &__subtext {
31
- margin-block-start: calc(var(--spacing-title-subtitle-margin_top) * 1px);
32
- color: var(--color-title-text);
33
- }
34
-
35
- &-arrow {
36
- // color:var(--color-title-icon_arrow);
26
+ &__arrow {
37
27
  display: flex;
38
28
  margin-inline-start: calc(var(--spacing-list-info_icon-margin_y) * 1px);
39
-
40
- .vd-iconfont {
41
- font-size: calc(var(--icon-small) * 1px);
42
- color: var(--text-color-h2);
43
- }
29
+ color: var(--text-color-h2);
44
30
  }
45
31
 
46
32
  &__multext {
@@ -49,16 +35,11 @@
49
35
  color: var(--text-color-h1);
50
36
  }
51
37
 
52
- &-xs {
38
+ &-xsmall {
53
39
  padding-block-start: calc(var(--spacing-list-info_s-padding_top) * 1px);
54
40
  padding-block-end: calc(var(--spacing-list-info_s-padding_bottom) * 1px);
55
- // &__icon--left{
56
- // margin-inline-end: calc(var(--spacing-title-primary_icon-margin_y) * 1px);
57
- // font-size: calc(var(--icon-title-primary) * 1px);
58
- // }
59
41
 
60
42
  &__icon--right {
61
- font-size: 16px;
62
43
  color: var(--text-color-h2);
63
44
  }
64
45
 
@@ -74,24 +55,13 @@
74
55
  font-weight: var(--en-single-f-c-r-fontWeight);
75
56
  color: var(--text-color-h1);
76
57
  }
77
-
78
- // &__subtext{
79
- // font-size: calc(var(--en-single-f-c-r-fontSize) * 1px);
80
- // font-weight: var(--en-single-f-c-r-fontWeight);
81
- // }
82
58
  }
83
59
 
84
- &-s {
60
+ &-small {
85
61
  padding-block-start: calc(var(--spacing-list-info_m-padding_top) * 1px);
86
62
  padding-block-end: calc(var(--spacing-list-info_m-padding_bottom) * 1px);
87
63
 
88
- // &__icon--left{
89
- // margin-inline-end: calc(var(--spacing-title-secondary_icon-margin_y) * 1px);
90
- // font-size: calc(var(--icon-title-secondary) * 1px);
91
- // }
92
-
93
64
  &__icon--right {
94
- font-size: 16px;
95
65
  color: var(--text-color-h2);
96
66
  }
97
67
 
@@ -107,25 +77,13 @@
107
77
  font-weight: var(--en-single-f-c-s-fontWeight);
108
78
  color: var(--text-color-h1);
109
79
  }
110
-
111
- // &__subtext{
112
- // font-size: calc(var(--en-single-f-b-r-fontSize) * 1px);
113
- // font-weight: var(--en-single-f-b-r-fontWeight);
114
- // }
115
80
  }
116
81
 
117
- &-m {
82
+ &-medium {
118
83
  padding-block-start: calc(var(--spacing-list-info_l-padding_top) * 1px);
119
84
  padding-block-end: calc(var(--spacing-list-info_l-padding_bottom) * 1px);
120
85
 
121
- // &__icon--left{
122
- // margin-inline-end: calc(var(--spacing-title-tertiary_icon-margin_y) * 1px);
123
- // font-size: calc(var(--icon-title-tertiary) * 1px);
124
- // }
125
-
126
86
  &__icon--right {
127
- // margin-inline-start: calc(var(--spacing-title-tertiary_icon-margin_y) * 1px);
128
- font-size: 16px;
129
87
  color: var(--text-color-h2);
130
88
  }
131
89
 
@@ -142,22 +100,12 @@
142
100
  color: var(--text-color-h1);
143
101
  }
144
102
 
145
- // &__subtext{
146
- // font-size: calc(var(--en-single-f-b-r-fontSize) * 1px);
147
- // font-weight: var(--en-single-f-b-r-fontSize);
148
- // }
149
103
  }
150
104
 
151
- &-l {
105
+ &-large {
152
106
  height: calc(var(--height-super-large) * 1px);
153
107
 
154
- // &__icon--left{
155
- // margin-inline-end: calc(var(--spacing-title-quaternary_icon-margin_y) * 1px);
156
- // font-size: calc(var(--icon-title-quaternary) * 1px);
157
- // }
158
-
159
108
  &__icon--right {
160
- font-size: 16px;
161
109
  color: var(--text-color-h2);
162
110
  }
163
111
 
@@ -169,16 +117,11 @@
169
117
  }
170
118
 
171
119
  &__text--right {
172
- text-align: end;
173
120
  font-size: calc(var(--en-single-f-d-s-fontSize) * 1px);
174
121
  font-weight: var(--en-single-f-d-s-fontWeight);
175
122
  color: var(--text-color-h1);
176
123
  }
177
124
 
178
- // &__subtext{
179
- // font-size: calc(var(--en-single-f-a-r-fontSize) * 1px);
180
- // font-weight: var(--en-single-f-a-r-fontSize);
181
- // }
182
125
  }
183
126
 
184
127
  &-common {
@@ -192,50 +135,37 @@
192
135
  display: flex;
193
136
  align-items: center;
194
137
  }
195
-
196
-
197
138
  &__icon--leftcus {
198
139
  margin-inline-end: calc(var(--spacing-list-common_icon-margin_right) * 1px);
199
- font-size: calc(var(--icon-large) * 1px);
200
140
  color: var(--text-color-h2);
201
141
  }
202
142
 
203
- // &__icon--left{
204
- // margin-inline-end: calc(var(--spacing-title-quaternary_icon-margin_y) * 1px);
205
- // font-size: calc(var(--icon-title-quaternary) * 1px);
206
- // }
207
-
208
- // &__icon--right{
209
- // margin-inline-start: calc(var(--spacing-title-quaternary_icon-margin_y) * 1px);
210
- // font-size: calc(var(--icon-title-quaternary) * 1px);
211
- // }
212
-
213
143
  &__title {
214
- // word-break: break-all;
215
- // text-overflow: ellipsis;
216
- // display: -webkit-box;
217
- // -webkit-box-orient: vertical;
218
- // -webkit-line-clamp: 2; /* 超出几行省略 */
219
- // overflow: hidden;
220
144
  color: var(--color-list-title);
221
- font-size: calc(var(--en-single-f-d-s-fontSize) * 1px);
222
- font-weight: var(--en-single-f-d-s-fontWeight);
145
+ font-size: calc(var(--en-multi-f-d-s-fontSize) * 1px);
146
+ font-weight: var(--en-multi-f-d-s-fontWeight);
147
+ line-height: calc(var(--en-multi-f-d-s-lineHeight) * 1px);
148
+
149
+ &--with-subtitle{
150
+ line-height: inherit;
151
+ font-size: calc(var(--en-single-f-d-s-fontSize) * 1px);
152
+ font-weight: var(--en-single-f-d-s-fontWeight);
153
+ }
223
154
  }
224
155
 
225
156
  &__text--right {
226
- text-align: end;
227
157
  margin-inline-start: calc(var(--spacing-list-common_describe-margin_xy) * 1px);
228
158
  font-size: calc(var(--en-single-f-c-r-fontSize) * 1px);
229
159
  font-weight: var(--en-single-f-c-r-fontWeight);
230
160
  color: var(--color-list-text);
231
-
232
161
  }
233
162
 
234
- &__subtext {
235
- line-height: 21px;
163
+ &__subtitle {
164
+ margin-block-start:calc(var(--spacing-list-common_describe-margin_xy)* 1px);
236
165
  color: var(--color-list-text);
237
- font-size: calc(var(--en-single-f-c-r-fontSize) * 1px);
238
- font-weight: var(--en-single-f-c-r-fontWeight);
166
+ font-size: calc(var(--en-multi-f-c-r-fontSize) * 1px);
167
+ font-weight: var(--en-multi-f-c-r-fontWeight);
168
+ line-height: calc(var(--en-multi-f-c-r-lineHeight) * 1px);
239
169
  }
240
170
 
241
171
  &__badge {
@@ -274,13 +204,11 @@
274
204
 
275
205
  &__icon--leftcus {
276
206
  margin-inline-end: calc(var(--spacing-list-check_icon-margin_right) * 1px);
277
- font-size: calc(var(--icon-large) * 1px);
278
207
  color: var(--text-color-h2);
279
208
  }
280
209
  }
281
210
 
282
211
  &__icon--extra {
283
- font-size: 16px;
284
212
  margin-inline-end: calc(var(--spacing-list-info_icon-margin_y) * 1px);
285
213
  color: var(--text-color-h2);
286
214
  }