@ams-team/ams
Version:
Admin Materials System.
42 lines (40 loc) • 985 B
JavaScript
export const config = {
BASE: 'CONFIG_FIELD',
type: {
default: 'file'
},
default: {
type: 'text',
default: 'http://b.appsimg.com/upload/vivaadmin/2018/11/07/69/1541579376290922128.png',
props: {
placeholder: '可以设置默认值'
}
},
successUrlKey: {
type: 'text',
label: 'url字段名',
info: '调用action上传接口成功后会通过该路径去获取url值',
default: 'url'
},
tip: {
type: 'text',
label: '上传提示',
info: '固定显示的tip',
default: '',
props: {
placeholder: '固定显示的tip'
}
},
props: {
current: 'value',
info: 'action为上传接口地址',
fields: {
value: {
default: {
action: 'https://上传接口地址'
}
}
}
}
};
export const defaults = {};