contractSaleInvoiceList.js 640 B

12345678910111213141516171819202122232425
  1. //通用弹出式文件上传
  2. function commonUpload(){
  3. $.dialog({
  4. content: "url:contractSaleInvoiceController.do?commonUpload",
  5. lock : true,
  6. title:"文件上传",
  7. zIndex:2100,
  8. width:700,
  9. height: 200,
  10. parent:windowapi,
  11. cache:false,
  12. // ok: function(){
  13. // var iframe = this.iframe.contentWindow;
  14. // iframe.uploadCallback(function(){
  15. //
  16. // });
  17. // return true;
  18. // },
  19. cancelVal: '关闭',
  20. cancel: function(){
  21. reloadTable();
  22. }
  23. });
  24. }