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

同上

parent 80663367
......@@ -46,7 +46,13 @@ class XiuGaiYuShouJiaViewController: BaseViewController, UITextFieldDelegate {
if (dataModel?.order_goods!.count)! > 0 {
let rowModel = dataModel?.order_goods![0]
titleLbl.text = rowModel!.goods_name
detailLbl.text = "规格:" + (rowModel?.goods_attr)!
if rowModel?.goods_attr != nil {
detailLbl.text = "规格:" + (rowModel?.goods_attr)!
}else{
detailLbl.text = "规格:" + "-"
}
dingJinTF.text = dataModel?.order_res?.sale_res?.dj_amount
weiKuanTF.text = dataModel?.order_res?.sale_res?.wk_amount
countLbl.text = "¥" + (dataModel?.order_res?.goods_amount)!
......
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