FileViewForm.cshtml 611 B

123456789101112131415161718192021222324252627282930313233
  1. @{
  2. ViewBag.Title = "查看会议详情";
  3. Layout = "~/Views/Shared/_LayoutIndex.cshtml";
  4. }
  5. <script>
  6. var file =decodeURIComponent(request('file'));
  7. $(function () {
  8. initControl();
  9. });
  10. //初始化控件
  11. function initControl() {
  12. //获取表单
  13. if (!!file) {
  14. $.SetForm({
  15. url: '../../PublicInfoManage/OfficePreview/Index',
  16. param: { file: file},
  17. success: function (data) {
  18. window.location.href = data.Data;
  19. }
  20. })
  21. }
  22. }
  23. </script>