import Base from './base'
|
class ProCategory extends Base {
|
constructor (attr) {
|
super(attr)
|
this.fileUrl = attr.fileUrl || null
|
this.fileId = attr.fileId || null
|
this.catId = attr.catId || null
|
this.catIdArr = attr.catIdArr || []
|
this.fixedPosition = attr.fixedPosition || false
|
this.closeBtn = attr.closeBtn || false
|
}
|
}
|
export default ProCategory
|