Commit a859f3a7 authored by lujunye's avatar lujunye

修改未确定为待接单

parent 48a7396a
...@@ -117,7 +117,7 @@ func orderStatusStrByInt(statusNumber:Int,status_d:Int) -> String? { ...@@ -117,7 +117,7 @@ func orderStatusStrByInt(statusNumber:Int,status_d:Int) -> String? {
var str = "订单完成" var str = "订单完成"
switch statusNumber { switch statusNumber {
case 0: case 0:
str = "未确定" str = "待接单"
break break
//待付款 //待付款
case 1: case 1:
......
...@@ -114,7 +114,7 @@ func orderStatusStrByIntAndBtn(leftBtn:UIButton,rightBtn:UIButton,statusNumber:I ...@@ -114,7 +114,7 @@ func orderStatusStrByIntAndBtn(leftBtn:UIButton,rightBtn:UIButton,statusNumber:I
switch statusNumber { switch statusNumber {
case 0: case 0:
str = "未确定" str = "待接单"
leftBtn.isHidden = false leftBtn.isHidden = false
rightBtn.setTitle("确认订单", for: .normal) rightBtn.setTitle("确认订单", for: .normal)
rightBtn.setTitleColor(UIColor.white, for: .normal) rightBtn.setTitleColor(UIColor.white, for: .normal)
...@@ -161,7 +161,7 @@ func orderStatusDstrByInt(statusNumber:Int) -> String? { ...@@ -161,7 +161,7 @@ func orderStatusDstrByInt(statusNumber:Int) -> String? {
switch statusNumber { switch statusNumber {
case 1: case 1:
str = "未确定" str = "待接单"
break break
//待付款 //待付款
......
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