Commit 80663367 authored by 刘俊宏's avatar 刘俊宏

同上

parent 7b1f42ad
......@@ -105,7 +105,7 @@ class ChangeGoodsPriceVC: BaseViewController , UITableViewDelegate, UITableView
let rowModel = dataArr![indexPath.row]
cell.goodsImgVire.sd_setImage(with: URL(string:SERVERCE_ImageHost + rowModel.goods_thumb!))
cell.goodsNameLbl.text = rowModel.goods_name
if rowModel?.goods_attr != nil {
if rowModel.goods_attr != nil {
cell.attrrLbl.text = rowModel.goods_attr
}else{
......
......@@ -50,10 +50,10 @@ class ShowAlGoodsViewController: BaseViewController , UITableViewDelegate, UITa
let rowModel = order_goods![indexPath.row]
cell.nameLbl.text = rowModel.goods_name
if rowModel.goods_attr != nil {
cell.detailLbl.text = "规格:" + rowModel.goods_attr
cell.detailLbl.text = "规格:" + rowModel.goods_attr!
}else{
cell.detailLbl.text ="规格:" + "-"
cell.detailLbl.text = "规格:" + "-"
}
cell.priceLbl.text = "¥" + (rowModel.goods_price!)
cell.iconImg.sd_setImage(with: URL(string: SERVERCE_ImageHost + (rowModel.goods_thumb)!))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment