|
@@ -16,7 +16,12 @@ class WSSTemplateCollectionCell: WSSBaseCollectionCell {
|
|
didSet {
|
|
didSet {
|
|
if let m = model {
|
|
if let m = model {
|
|
coverImageView.backgroundColor = OJSColor(hexRGBValue: 0x4B4B55)
|
|
coverImageView.backgroundColor = OJSColor(hexRGBValue: 0x4B4B55)
|
|
- coverImageView.ojs_setImage(withUrl: m.cover, placeholder: R.image.home_template_cover_placeholder())
|
|
|
|
|
|
+
|
|
|
|
+ if m.isPublish {
|
|
|
|
+ coverImageView.ojs_setImage(withUrl: m.cover, placeholder: R.image.home_template_cover_placeholder())
|
|
|
|
+ } else {
|
|
|
|
+ coverImageView.image = R.image.template_unavailable()
|
|
|
|
+ }
|
|
nameLabel.text = m.name
|
|
nameLabel.text = m.name
|
|
|
|
|
|
self.tagView.setupFeeType(m.feeType, price: m.price)
|
|
self.tagView.setupFeeType(m.feeType, price: m.price)
|