|
|
@@ -54,7 +54,7 @@ function TaskItemDataNew:RefreshTaskItem(_data)
|
|
|
local _needChangeEnum = self:IsNeedChangeEnum(_keyCon);
|
|
|
local _totalConStr = tostring(_totalCon);
|
|
|
if _needChangeEnum and _w <= _totalCon then
|
|
|
- _totalConStr = CommonUtil.GetPreciseDecimalFloor(_totalCon/10000, 1) .. "萬";--w
|
|
|
+ _totalConStr = CommonUtil.GetPreciseDecimalFloor(_totalCon/10000, 1) .. CommonUtil.Get_Wan_string()--"萬";--w
|
|
|
end
|
|
|
local _progress = {
|
|
|
_key = _keyCon,
|
|
|
@@ -67,7 +67,7 @@ function TaskItemDataNew:RefreshTaskItem(_data)
|
|
|
local _value, _state = self:GetProgressByKey(_progress._key, _data.progress);
|
|
|
_progress._value = _value or 0;
|
|
|
if _needChangeEnum and _w <= _progress._value then
|
|
|
- _progress._valueStr = CommonUtil.GetPreciseDecimalFloor(_progress._value/10000, 1) .. "萬";--w
|
|
|
+ _progress._valueStr = CommonUtil.GetPreciseDecimalFloor(_progress._value/10000, 1) .. CommonUtil.Get_Wan_string()--"萬";--w
|
|
|
else
|
|
|
_progress._valueStr = tostring(_progress._value)
|
|
|
end
|