fuliqi
2024-01-24 29c1e7eb5ac16e90d8991a86c1c071bc312ec8d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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