feat: 更新控件及相关业务功能
This commit is contained in:
@@ -182,7 +182,10 @@ namespace Lskj.Control.Model
|
||||
/// 判断两个值是否相同。
|
||||
/// 优先按日期、数字进行值比较,最后再按普通字符串比较。
|
||||
/// </summary>
|
||||
private static bool IsSameValue(string oldValue, string newValue)
|
||||
/// <param name="oldValue">原始值</param>
|
||||
/// <param name="newValue">当前值</param>
|
||||
/// <returns>两个值在统一格式后是否相同</returns>
|
||||
public static bool IsSameValue(string oldValue, string newValue)
|
||||
{
|
||||
oldValue = NormalizeValue(oldValue);
|
||||
newValue = NormalizeValue(newValue);
|
||||
|
||||
Reference in New Issue
Block a user