export default {
    /**
     * 图片宽度
     * */
    width: 80,
    /**
     * 图片高度
     * */
    height: 80,
    /**
     * 上传图片icon
     * */
    uploadIcon: 'camera-fill',
    /**
     * 上传图片图标颜色
     * */
    uploadIconColor: '#D3D4D6',
    /**
     * 上传文字
     * */
    uploadText: '上传',
    /**
     * 是否自定义
     * */
    isCustom: false,
    /**
     * 是否禁用上传
     * */
    disabled: false,
    /**
     * 图片展示模式
     * 默认值：aspectFill
     * */
    imageMode: 'aspectFill',
    /**
     * 图片列表
     * {
     *     url: 图片地址,
     *     uploadStatus: 是的显示加载状态
     *     schedule: 加载时间段
     * }
     * */
    fileList: [],
    /**
     * 最大上传数量
     * */
    maxCount: 9,
    /**
     * 上传文件类型
     * */
    fileType: "image",
    /**
     * 是否预览全图
     * */
    previewFullImage: true,
}