diff --git a/AddOrUpdateConfig.md b/AddOrUpdateConfig.md
new file mode 100644
index 0000000..297fe3b
--- /dev/null
+++ b/AddOrUpdateConfig.md
@@ -0,0 +1,154 @@
+# Add Or Update Dialog Configs
+
+> 通过传入合理的配置项来使用 addOrUpdate Dialog
+
+## 示例
+
+```js
+const addOrUpdateConfigs = {
+ type: 'dialog', // dialog | drawer | page
+ infoUrl: '/monitoring/product',
+ fields: [
+ 'name',
+ {
+ name: 'code',
+ api: '/monitoring/product/getCode'
+ },
+ {
+ name: 'processTime',
+ label: '加工时间',
+ placeholder: '请输入加工时间',
+ type: 'number', // type: number(input+number) | default(input) | textarea | select(options在父组件里获取) | datetime
+ required: true,
+ rules: [
+ // 除了required之外的验证规则
+ {
+ type: 'number',
+ trigger: 'blur',
+ transform: val => Number(val),
+ message: '必须输入数字'
+ }
+ ]
+ },
+ 'remark',
+ 'specifications',
+ {
+ name: 'typeDictValue',
+ rules: [{ required: true, trigger: 'blur' }],
+ label: '产品类型', // 对于非常见属性,最好自己指定label
+ type: 'select',
+ options: [
+ // 动态获取
+ ]
+ },
+ {
+ name: 'unitDictValue',
+ label: '单位',
+ type: 'select',
+ placeholder: '请选择单位',
+ options: [
+ // 动态获取
+ ]
+ }
+ ],
+ operations: [
+ // { name: 'reset', url: true },
+ { name: 'cancel', url: true, showAlways: true },
+ { name: 'save', url: '/monitoring/product', permission: '', showOnEdit: false },
+ { name: 'update', url: '/monitoring/product', permission: '', showOnEdit: true }
+ ],
+ subtable: {
+ // for i18n
+ title: '动态属性',
+ url: '/monitoring/productArrt',
+ tableConfigs: [
+ { type: 'index', name: '序号' },
+ { prop: 'createTime', name: '添加时间', filter: val => (val ? moment(val).format('YYYY-MM-DD hh:mm:ss') : '-') },
+ { prop: 'name', name: '属性名', formField: true, rules: [{ required: true, message: '必填', trigger: 'blur' }] },
+ { prop: 'code', name: '属性值', formField: true },
+ { prop: 'operations', name: '操作', fixed: 'right', width: 180, subcomponent: TableOperateComponent, options: ['edit', 'delete'] }
+ ]
+ },
+ extraComponents: [
+ {
+ name: 'CompName',
+ label: 'markdown编辑器',
+ component: () => import('xx.vue')
+ }
+ ]
+}
+```
+
+## 配置项
+
+
+
+### type
+
+类型: string
+值:dialog | drawer | page
+含义:对话框、抽屉、新页面
+
+### infoUrl
+
+类型:string
+含义:详情的接口,如 `/monitoring/product`
+
+### fields
+
+含义:设置新增、编辑时的字段
+类型:`Array`
+
+- 当类型为 string 时,默认渲染 ``
+- 当类型为 object 时,有如下选项:
+ - name: 字段名
+ - label: 字段的 label
+ - api: 如果设置了该属性,则该字段会自动从服务器获取值,一般为 code 字段需要
+ - placeholder
+ - type: 渲染何种类型的组件,默认值: 'input'
+ - options: 当上一条 type 值为 'select' 时,需要自行动态获取并加载 options 列表
+ - required: 是否是必须填写的字段(或可用过 rules 做更加具体的设定,设定方式参考 async-validator )
+ - rules: 验证规则数组,如果只有"必填"的需求,可直接用上一条
+
+### operations
+
+含义:设置对话框等组件里,需要哪些按钮
+类型:`Array