city-casereport/utils/checkutils.wxs
2023-12-06 14:22:42 +08:00

7 lines
123 B
XML

var check = function (s) {
if (s == null || s == '') {
return "未录入";
}
return s;
}
module.exports.check = check;