Skip to content

JVxeTable 的JVxeTypes.image类型,无法全部删除上传图片 #530

Closed
@sfox-xg

Description

@sfox-xg
版本号:
问题描述:

JVxeTable 的JVxeTypes.image类型,无法全部删除上传图片

截图&代码:

src/components/JVxeCustom/src/hooks/useFileCell.ts 中
// 更多上传回调
function onModalChange(path) {
if (path) {
innerFile.value.path = path;
handleChangeCommon(innerFile.value);
}
}
应改为:
function onModalChange(path) {
if (path) {
innerFile.value.path = path;
handleChangeCommon(innerFile.value);
} else {
handleChangeCommon(null);
}
}

友情提示(为了提高issue处理效率):

  • 未按格式要求发帖,会被直接删掉;
  • 请自己初判问题描述是否清楚,是否方便我们调查处理;
  • 描述过于简单或模糊,导致无法处理的,会被直接删掉;

Activity

zhangdaiscott

zhangdaiscott commented on May 16, 2023

@zhangdaiscott
Member

sq

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @zhangdaiscott@sfox-xg

        Issue actions

          JVxeTable 的JVxeTypes.image类型,无法全部删除上传图片 · Issue #530 · jeecgboot/JeecgBoot-vue3