This commit is contained in:
2020-07-15 23:35:13 +08:00
parent 2092e4ef94
commit 17d9f47d49
27 changed files with 790 additions and 767 deletions

View File

@@ -53,13 +53,13 @@ MyUtl.callCust = function(cust)
if attr.attrType == DBCust.FieldType.phone then
local phNo = cust.jsonStr[joinStr(attr.id, "_", attr.attrName)]
if not isNilOrEmpty(phNo) then
phones:Add(joinStr(attr.attrName, ": ", phNo))
phones:Add(joinStr(attr.attrName, ": ", MyUtl.hidePhone(phNo)))
phonesVal:Add(phNo)
end
end
end
if phones.Count > 0 then
phones:Insert(0, joinStr("默认: ", cust.phoneNo))
phones:Insert(0, joinStr("默认: ", MyUtl.hidePhone(cust.phoneNo)))
phonesVal:Insert(0, cust.phoneNo)
CLUIPopListPanel.show(
phones,