import Base from './base'
|
class ProDetails extends Base {
|
constructor (attr) {
|
super(attr)
|
this.fileUrl = attr.fileUrl || null
|
this.fileId = attr.fileId || null
|
this.content = attr.content || null
|
this.spuId = attr.spuId || null
|
this.shopSpuId = attr.shopSpuId || null
|
this.fixedPosition = attr.fixedPosition || false
|
this.closeBtn = attr.closeBtn || false
|
}
|
}
|
export default ProDetails
|