uni-ui icon indicating copy to clipboard operation
uni-ui copied to clipboard

基于uni-app的、全端兼容的、高性能UI框架

Results 236 uni-ui issues
Sort by recently updated
recently updated
newest added

**问题描述**:uni-table 表头与内容未对齐 **uni-ui版本**:1.4.19 **运行平台**:飞书小程序 **图例**: ![image](https://user-images.githubusercontent.com/52823142/177943375-6e3b3c80-6f29-4b8e-8216-d40d46c6c76a.png) **复现地址**: https://github.com/Ten-K/uni-table-demo

bug

要不是我今天一时兴起来看源码,我这辈子都不知道日历还有个monthSwitch事件

使用后缀图标 或者 为密码框时 clearable 无效, 即被覆盖了, 里面字体 图标都很小,需要自己去覆盖样式 希望改进

目前的uni-forms-item无论是否有校验信息,都会有padding-bottom: 22px,导致表单间隔较大,是否可以考虑只在有校验/报错信息时,才将padding-bottom设置为22px? 页面:uni-forms-item ``` scss // uni-forms-item // line 453,注释padding .uni-forms-item__inner { // padding-bottom: 22px; } // line 544 // 当有error时,增加padding-bottom .uni-forms-item-error { .uni-forms-item__inner { padding-bottom: 22px; } } ```

![image](https://user-images.githubusercontent.com/27353058/177120442-133f2af2-aeb3-4263-bb95-7d046b33fc8b.png)

原因:modelValue 为空字符串时 "" ,自动变更为 this.value ,导致双向绑定数据变更为 undefined,会导致用户字段丢失 优化:保留空字符串

uni-datetime-picker, maskClick和close 事件没有触发

在离线打包的安卓app测试中发现,版本为 3.0.0-alpha-3041520220609002, 原因似乎是计算得到的边框过窄, border-width: 0.03125rem; 改成1px恢复正常。 补丁如下 .uni-tag { border-width: 1px!important; }