baidu / amis

前端低代码框架,通过 JSON 配置就能生成各种页面。
https://baidu.github.io/amis/
Apache License 2.0
17.41k stars 2.52k forks source link

input-image组件宽高比率(aspectRatio)配置有误,小数会强制改成整数(amis-editor配置) #11121

Open xukeke520 opened 3 weeks ago

xukeke520 commented 3 weeks ago

描述问题:

input-image组件宽高比率(aspectRatio)配置有误,小数会强制给改成整数

截图或视频:

image image

如何复现(请务必完整填写下面内容):

  1. 你是如何使用 amis 的? sdk

  2. amis 版本是什么?请先在最新 beta 版本测试问题是否存在 6.8.0

  3. 粘贴有问题的完整 amis schema 代码:

    {
    "type": "page",
    "body": {
    "type": "form",
    "api": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/mock2/form/saveForm",
    "body": [
      {
        "type": "input-image",
        "name": "image",
        "label": "限制只能上传jpg图片",
        "limit": {
          "aspectRatio": 2
        },
        "accept": ".jpg",
        "receiver": "https://3xsw4ap8wah59.cfc-execute.bj.baidubce.com/api/amis-mock/upload/file"
      }
    ]
    }
    }
  4. 操作步骤 amis-editor-demo可复现