hookehuyr

🐞 fix: 文本框字数显示控制样式优化

1 <!-- 1 <!--
2 * @Date: 2022-08-29 14:31:20 2 * @Date: 2022-08-29 14:31:20
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2022-12-29 11:25:54 4 + * @LastEditTime: 2023-03-21 18:36:51
5 * @FilePath: /data-table/src/components/TextareaField/index.vue 5 * @FilePath: /data-table/src/components/TextareaField/index.vue
6 * @Description: 多行文本输入框 6 * @Description: 多行文本输入框
7 --> 7 -->
...@@ -54,7 +54,12 @@ const HideShow = computed(() => { ...@@ -54,7 +54,12 @@ const HideShow = computed(() => {
54 } 54 }
55 } 55 }
56 56
57 -:deep(.van-field__body) { 57 +// :deep(.van-field__body) {
58 + // border: 1px solid #eaeaea;
59 + // border-radius: 0.25rem;
60 + // padding: 0.25rem 0.5rem;
61 +// }
62 +:deep(.van-cell__value) {
58 border: 1px solid #eaeaea; 63 border: 1px solid #eaeaea;
59 border-radius: 0.25rem; 64 border-radius: 0.25rem;
60 padding: 0.25rem 0.5rem; 65 padding: 0.25rem 0.5rem;
......