vipshop / ams

AMS是基于 Vue.js 和 Element组件库、通过JSON配置来快速搭建管理后台的一整套前端解决方案
Apache License 2.0
392 stars 69 forks source link

feat(operation): 支持自定义EditItemDialog.Form的props和fields #147

Closed ly525 closed 3 years ago

ly525 commented 3 years ago

使用场景:

  1. 编辑Table Item,希望对里面的某个字段禁用,不支持编辑,比如Id 等数据库自动生成的信息
  2. 支持自定义EditItemDialog.Form的相关Props,比如 label-width,防止label因为宽度不够导致换行
{
  ctx: "view",
  type: "table",
  operations: {
    "editItemDialog": {
      "type": "button",
      "label": "编辑",
      "props": {
        "icon": "el-icon-edit",
      },
      formProps: {
        "label-width": "120px"
      },
      fields: {
        uuid: false
      },
    },
  }
}