Commit 26af5b27 by guanzhenshan

增加百分比符号

parent a7bc2933
...@@ -439,7 +439,7 @@ namespace Bailun.DC.Web.Controllers ...@@ -439,7 +439,7 @@ namespace Bailun.DC.Web.Controllers
count = obj.id, count = obj.id,
amount_sales = obj.amount_sales.ToString("#0.00"), amount_sales = obj.amount_sales.ToString("#0.00"),
profit_total = obj.profit_total.ToString("#0.00"), profit_total = obj.profit_total.ToString("#0.00"),
profit_rate = (obj.profit_rate*100).ToString("#0.00"), profit_rate = (obj.profit_rate*100).ToString("#0.00")+"%",
} }
}); });
} }
......
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