Showing
3 changed files
with
15 additions
and
2 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2022-08-31 11:45:30 | 2 | * @Date: 2022-08-31 11:45:30 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2023-02-07 14:13:48 | 4 | + * @LastEditTime: 2023-02-07 15:15:00 |
| 5 | * @FilePath: /data-table/src/components/DatePickerField/index.vue | 5 | * @FilePath: /data-table/src/components/DatePickerField/index.vue |
| 6 | * @Description: 日期选择组件 | 6 | * @Description: 日期选择组件 |
| 7 | --> | 7 | --> |
| ... | @@ -132,6 +132,10 @@ const rules = [{ validator, message: validatorMessage }]; | ... | @@ -132,6 +132,10 @@ const rules = [{ validator, message: validatorMessage }]; |
| 132 | color: red; | 132 | color: red; |
| 133 | } | 133 | } |
| 134 | } | 134 | } |
| 135 | + :deep(.van-icon) { // 处理正式服务器上箭头上下位移问题 | ||
| 136 | + font-size: var(--van-cell-icon-size); | ||
| 137 | + line-height: var(--van-cell-line-height); | ||
| 138 | + } | ||
| 135 | } | 139 | } |
| 136 | 140 | ||
| 137 | :deep(.van-cell--clickable) { | 141 | :deep(.van-cell--clickable) { | ... | ... |
| ... | @@ -167,6 +167,10 @@ const rules = [{ validator, message: validatorMessage }]; | ... | @@ -167,6 +167,10 @@ const rules = [{ validator, message: validatorMessage }]; |
| 167 | color: red; | 167 | color: red; |
| 168 | } | 168 | } |
| 169 | } | 169 | } |
| 170 | + :deep(.van-icon) { // 处理正式服务器上箭头上下位移问题 | ||
| 171 | + font-size: var(--van-cell-icon-size); | ||
| 172 | + line-height: var(--van-cell-line-height); | ||
| 173 | + } | ||
| 170 | } | 174 | } |
| 171 | 175 | ||
| 172 | :deep(.van-cell--clickable) { | 176 | :deep(.van-cell--clickable) { | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2022-08-31 11:45:30 | 2 | * @Date: 2022-08-31 11:45:30 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2023-02-07 14:06:51 | 4 | + * @LastEditTime: 2023-02-07 15:14:48 |
| 5 | * @FilePath: /data-table/src/components/TimePickerField/index.vue | 5 | * @FilePath: /data-table/src/components/TimePickerField/index.vue |
| 6 | * @Description: 时间选择组件 | 6 | * @Description: 时间选择组件 |
| 7 | --> | 7 | --> |
| ... | @@ -119,6 +119,11 @@ const rules = [{ validator, message: validatorMessage }]; | ... | @@ -119,6 +119,11 @@ const rules = [{ validator, message: validatorMessage }]; |
| 119 | color: red; | 119 | color: red; |
| 120 | } | 120 | } |
| 121 | } | 121 | } |
| 122 | + | ||
| 123 | + :deep(.van-icon) { // 处理正式服务器上箭头上下位移问题 | ||
| 124 | + font-size: var(--van-cell-icon-size); | ||
| 125 | + line-height: var(--van-cell-line-height); | ||
| 126 | + } | ||
| 122 | } | 127 | } |
| 123 | 128 | ||
| 124 | :deep(.van-cell--clickable) { | 129 | :deep(.van-cell--clickable) { | ... | ... |
-
Please register or login to post a comment