mode_custplan.js 430 B

123456789101112131415161718
  1. //流程模块【custplan.跟进计划】下录入页面自定义js页面,初始函数
  2. function initbodys(){
  3. }
  4. function changesubmit(d){
  5. if(d.status=='0' && !d.plandt){
  6. return '计划时间不能为空';
  7. }
  8. if(d.status=='1' && !d.findt){
  9. return '完成时间不能为空';
  10. }
  11. }
  12. function oninputblur(na){
  13. var zt = form('status').value;
  14. if((zt=='0' || zt=='5') && form('findt'))form('findt').value='';
  15. }