flow_js.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <% String rootpath = request.getContextPath(); %>
  2. function openWinForFlowAccess(url,width,height)
  3. {
  4. var newwin = window.open(url,"_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=250,left=350,width="+width+",height="+height);
  5. }
  6. var inputObj;
  7. function setIntpuObjValue(v) {
  8. inputObj.value = v;
  9. }
  10. // function addInputObjValue(v) {
  11. //  inputObj.value += v;
  12. // }
  13. function openWinSign(obj) {
  14. inputObj = obj;
  15. openWinForFlowAccess("<%=rootpath%>/flow/macro_ctl_sign_win.jsp", 200, 10);
  16. }
  17. function openWinIdea(obj) {
  18. inputObj = obj;
  19. openWinForFlowAccess("<%=rootpath%>/flow/macro_ctl_idea_win.jsp", 400, 200);
  20. }
  21. function openWinCustomerList(obj) {
  22. inputObj = obj
  23. openWinForFlowAccess("<%=rootpath%>/sales/customer_list_sel.jsp", 520, 480);
  24. }
  25. function openWinLinkmanList(obj) {
  26. inputObj = obj
  27. openWinForFlowAccess("<%=rootpath%>/sales/linkman_list_sel.jsp", 520, 480);
  28. }
  29. function openWinProviderList(obj) {
  30. inputObj = obj
  31. openWinForFlowAccess("<%=rootpath%>/sales/provider_info_list_sel.jsp", 520, 480);
  32. }
  33. function openWinProductList(obj) {
  34. inputObj = obj
  35. openWinForFlowAccess("<%=rootpath%>/sales/product_list_sel.jsp", 520, 480);
  36. }
  37. function openWinProductServiceList(obj) {
  38. inputObj = obj
  39. openWinForFlowAccess("<%=rootpath%>/sales/product_service_list_sel.jsp", 520, 480);
  40. }