//编辑表格下的附件上传样式
.yyui-table {
  .yyui-upload {
    display: flex;
    >span{
      width: 100%;
      .ant-upload-list{
        .ant-upload-list-item-info{
          display: flex;
          align-items: center;
          .ant-upload-list-item-name{
            text-overflow: ellipsis;
            overflow:hidden;
            white-space:nowrap;
          }
        }
      }
    }
  }
}