*跟进时间: {{time}} *本次跟进方式: {{content.followupmode?content.followupmode:'请选择'}} *本次跟进结果: 继续跟进 成交 丢单 无效 {{text.type(content.logtype)}} 确定 module.exports.type = function (str) { var text = ''; switch (str) { case "跟进": text = '本次跟进内容:' break; case "成交": text = '添加备注:' break; case "丢单": text = '丢单原因:' break; case "无效": text = '无效原因:' break; } return text } module.exports.typeNote = function (str) { var text = ''; switch (str) { case "跟进": text = '请描述跟进情况及内容' break; case "成交": text = '请填写备注' break; case "丢单": text = '请填写丢单原因' break; case "无效": text = '请填写无效原因' break; } return text }