detail3.html 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" ng-app="app">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  6. <title>稿件</title>
  7. <link href="../../AFrontEnd/css/animate.css" rel="stylesheet" />
  8. <link href="../../AFrontEnd/css/fontawesome/css/font-awesome.css" rel="stylesheet" />
  9. <link href="../../AFrontEnd/css/bootstrap.css" rel="stylesheet" />
  10. <link href="../../AFrontEnd/css/style.css" rel="stylesheet" />
  11. <script>document.write("<link href='../../AFrontEnd/css/special.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
  12. <script>document.write("<link href='../flowchart_app_imgcss/css/attachlist.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
  13. </head>
  14. <body>
  15. <div ng-controller="formeditCtrl as ctl" id="app" ng-cloak>
  16. <div class="wrapper wrapper-content">
  17. <div class="row">
  18. <div class="col-md-12">
  19. <div class="ibox float-e-margins">
  20. <div class="ibox-content">
  21. <div class="row">
  22. <div class="col-md-12">
  23. <div class="sp-box sp-bg-white">
  24. <div class="sp-page-col">
  25. <div class="sp-page-title" style="margin:7px 0;">发文稿件</div>
  26. </div>
  27. <div class="sp-page-col sp-ml-15 topPart">
  28. <a ng-repeat="item in ctl.SwenList" ng-class="{'activeSwen':ctl.Title==item.VNAME}" class="SwenBtn" href="{{item.TEMPFORM}}" title="{{item.VNAME}}">
  29. {{item.VNAME}}&nbsp;
  30. <!--<i ng-if="ctl.Title==item.VNAME" class="fa fa-check sp-color-blue"></i>-->
  31. </a>
  32. </div>
  33. <div class="sp-page-col sp-pull-right btn-box">
  34. <a href="{{ctl.return}}" class="sp-btn-gray sp-radius">
  35. <img src="../flowchart_app_imgcss/img/fh.png" height="14" />
  36. 返 回
  37. </a>
  38. <a class="sp-radius sp-btn-gray" ng-if="ctl.returnList.length!=0" ng-click="ctl.returnListShow=!ctl.returnListShow;">
  39. <span ng-if="ctl.returnListShow==true"><i class="fa fa-angle-double-up sp-fs-20 sp-mr-5" style="position:relative;top:3px"></i></span>
  40. <span ng-if="ctl.returnListShow==false"><i class="fa fa-angle-double-down sp-fs-20 sp-mr-5" style="position:relative;top:3px"></i></span>
  41. </a>
  42. </div>
  43. <div class="sp-page" style=" width: 422px; padding: 10px; border: 1px solid #c6c6c6; position: absolute; top: 35px; right: 0px; background: white; z-index: 7;" ng-if="ctl.returnListShow==true">
  44. <center class="sp-box">退回意见:{{ctl.selectReturn.BACKOPINION}}</center>
  45. <table class="sp-grid" style="width: 402px; border: 1px solid #c6c6c6">
  46. <thead>
  47. <tr>
  48. <th width="50">序号</th>
  49. <th width="150">内容</th>
  50. <th width="200">日期</th>
  51. </tr>
  52. </thead>
  53. <tbody>
  54. <tr class="pointer" ng-repeat="item in ctl.returnList" ng-click="ctl.selectReturn=item">
  55. <td ng-bind="$index+1"></td>
  56. <td ng-bind="item.BACKOPINION1"></td>
  57. <td ng-bind="item.BACKDATE"></td>
  58. </tr>
  59. </tbody>
  60. </table>
  61. </div>
  62. </div>
  63. <div class="sp-page">
  64. <div class="col-md-2">
  65. <div class="sp-page" style="padding:15px;background-color: #E9F5FC">
  66. <div class="sp-page">
  67. <div class="sp-box">成文稿</div>
  68. <div class="sp-page-mgn" style="min-height: 100px; max-height: 30px">
  69. <div class="sp-page-pad">
  70. <div class="sp-lh-22" ng-if="ctl.zhengwen.length>0" ng-repeat="item in ctl.zhengwen">
  71. <span class="sp-page-col sp-cursor-pointer" style="width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;" title="{{item.DOCNAME}}.{{item.FILEEXT}}" ng-click="ctl.browse(item)">{{item.DOCNAME}}.{{item.FILEEXT}}</span>
  72. </div>
  73. <div class="sp-lh-50 sp-text-center" ng-if="ctl.zhengwen.length<1">暂无文件</div>
  74. </div>
  75. </div>
  76. </div>
  77. </div>
  78. </div>
  79. <div class="col-md-10">
  80. <center class="sp-page" ng-if="ctl.zhengwen.length==0">
  81. <img width="500" src="../flowchart_app_imgcss/img/attachlist/default.png" />
  82. </center>
  83. <iframe id="iframe_WO" src="" width="100%" frameborder="0" class="iframe" scrolling="no" ng-if="ctl.zhengwen.length!=0"></iframe>
  84. </div>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. </div>
  92. </div>
  93. </div>
  94. <script src="../../AFrontEnd/js/jquery/jquery-1.8.3.min.js"></script>
  95. <script src="../../AFrontEnd/js/laydate/laydate.js"></script>
  96. <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
  97. <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
  98. <script src="../../apiurljs.js"></script>
  99. <script src="../../js/sm4.js"></script>
  100. <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  101. <script>document.write('<scri' + 'pt src="js/detail3.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
  102. <script src="../../AFrontEnd/js/special/spng.js"></script>
  103. <script src="../../AFrontEnd/js/special/spngvld.js"></script>
  104. </body>
  105. </html>