city-casereport/utils/checkutils.wxs

7 lines
123 B
Plaintext
Raw Normal View History

2023-12-06 14:22:42 +08:00
var check = function (s) {
if (s == null || s == '') {
return "未录入";
}
return s;
}
module.exports.check = check;