123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml" ng-app="app">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
- <title>书记批示</title>
- <link href="../../AFrontEnd/css/animate.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/fontawesome/css/font-awesome.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/bootstrap.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/style.css" rel="stylesheet" />
- <script>document.write("<link href='../../AFrontEnd/css/special.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
- <style>
- .download-Item {
- width: 25%;
- float: left;
- height: 30px;
- overflow: hidden;
- text-align: left;
- line-height: 30px;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .upload {
- float: left;
- overflow: hidden;
- position: relative;
- top: 2px;
- }
- .upload-btn-single {
- outline: none;
- border: 0;
- height: 28px;
- line-height: 28px;
- padding: 0 5px;
- color: #fff !important;
- background: #1c84c6;
- cursor: pointer !important;
- border-radius: 5px;
- }
- .upload-tip {
- float: left;
- width: 100%;
- margin-top: 35px;
- padding: 0 10px;
- color: #666;
- font-size: 13px !important;
- border-radius: 5px;
- display: none;
- text-align: left;
- }
- .upload-file-single {
- position: absolute;
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- opacity: 0;
- font-size: 0;
- filter: alpha(opacity=0);
- }
- .upload-loading {
- display: inline-block;
- width: 100%;
- height: 100%;
- padding: 3px;
- text-align: center;
- background: #E8E8E8;
- opacity: 0.4;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 10;
- }
- </style>
- </head>
- <body>
- <div ng-controller="detailCtrl as ctl" id="app" ng-cloak>
- <div class="wrapper wrapper-content">
- <div class="row">
- <div class="col-md-12">
- <div class="ibox float-e-margins">
- <div class="ibox-content">
- <div class="row">
- <div class="col-md-12">
- <div class="sp-box">
- <div class="sp-page-col">
- <div class="sp-page-title" style="margin:7px 0;">书记批示</div>
- </div>
- <div class="sp-pull-right">
- <a ng-click="ctl.btnSave()" class="sp-btn-gray sp-radius">
- <i class="fa fa-save sp-mr-5"></i>保 存
- </a>
- <a href="{{ctl.return}}" class="sp-btn-gray sp-radius">
- <i class="fa fa-reply sp-mr-5"></i>返 回
- </a>
- </div>
- </div>
- <div class="sp-page-center" style="width: 1000px; line-height: 30px">
- <table class="sp-table">
- <tr>
- <td width="150">来文单位</td>
- <td width="350">
- <input type="text" class="sp-input" ng-model="ctl.data.LWDW" />
- </td>
- <td width="150">文件名称</td>
- <td width="350">
- <input type="text" class="sp-input" ng-model="ctl.data.WJMC" />
- </td>
- </tr>
- <tr>
- <td>书记批示</td>
- <td>
- <input type="text" class="sp-input" ng-model="ctl.data.SJPS" />
- </td>
- <td>签批时间</td>
- <td>
- <input type="text" class="sp-input laydate-logo" sp-laydate ng-model="ctl.data.QPSJ" />
- </td>
- </tr>
- <tr>
- <td>办理进度</td>
- <td colspan="3">
- <textarea class="sp-textarea" rows="5" style="resize:none" ng-model="ctl.data.BLJD"></textarea>
- </td>
- </tr>
- <tr>
- <td>督办提醒单位</td>
- <td>
- <input type="text" class="sp-input" ng-model="ctl.data.DBTX" />
- </td>
- <td>督办提醒日期</td>
- <td>
- <input type="text" class="sp-input laydate-logo" sp-laydate ng-model="ctl.data.DBTXTIME" />
- </td>
- </tr>
- <tr>
- <td>备注</td>
- <td colspan="3">
- <textarea class="sp-textarea" rows="5" style="resize:none" ng-model="ctl.data.REMARK"></textarea>
- </td>
- </tr>
- <tr>
- <td>附件</td>
- <td colspan="3">
- <div class="download-Item" ng-repeat="item in ctl.arrayFile track by $index ">
- <a ng-click="ctl.download(item)">
- <i class="fa fa-download sp-color-red">下载</i>
- </a>
- <a ng-click="ctl.deleteFile(item)">
- <i class="fa fa-trash sp-color-red">删除</i>
- </a>
- <a ng-bind="item.FILENAMES" ng-click="ctl.seeFiles(item)" title="{{item.FILENAMES}}"></a>
- </div>
- <div class="download-Item" ng-hide="ctl.arrayFile.length==8">
- <span class="upload" ng-show="ctl.arrayFile.length<8">
- <input type="button" ng-if="ctl.arrayFile.length==0" class="upload-btn-single" ng-click="ctl.beforeUpload()" value="上传附件">
- <input type="button" ng-if="ctl.arrayFile.length>0&&ctl.arrayFile.length<8" class="upload-btn-single" ng-click="ctl.beforeUpload()" value="上传附件">
- <span class="sp-upload-tip"></span>
- <input id="fileupload" class="upload-file-single" style="left:64px" type="file" name="files[]" multiple>
- </span>
- </div>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div class="sp-layer" id="userList" style="width: 900px;">
- <div class="sp-layer-head" style="background:#2176d6">
- <div class="sp-page sp-text-center sp-font16">
- 人员列表
- <div class="sp-layer-close" title="关闭" onclick="sp.closeCenter('.sp-layer')">
- ×
- </div>
- </div>
- </div>
- <div class="sp-layer-body" ng-class="{'sp-height-400': '{{ctl.deviceType}}' =='pad'}">
- <div class="sp-page" style="height:290px;overflow:auto">
- <label class="sp-col-20">
- <input type="checkbox" style="position:relative;top:2px" ng-checked="ctl.AllChecked[ctl.filed]" ng-click="ctl.checkAllUser()" />
- 全选
- </label>
- <div class="sp-page" ng-repeat="item in ctl.UserList[ctl.filed]">
- <h4 style="background:#409EFF" class="sp-color-white sp-pl-10" ng-if="item.USER">
- <input type="checkbox" style="position:relative;top:2px" ng-checked="item.checked" ng-click="ctl.checkUserItem(item)" />
- {{item.SECTION}}
- </h4>
- <label ng-repeat="item1 in item.USER" class="sp-col-20" title="{{item1.USHOWNAME}}">
- <input type="checkbox" style="position:relative;top:2px" ng-checked="item1.checked" ng-click="ctl.checkUser(item1,item)" />
- {{item1.USHOWNAME2}}
- </label>
- <div class="sp-page" ng-repeat="item1 in item.CHILD_DATA">
- <h4 style="background:#409EFF" class="sp-color-white sp-pl-10" ng-if="item1.USER">
- <input type="checkbox" style="position:relative;top:2px" ng-checked="item1.checked" ng-click="ctl.checkUserItem(item1)" />
- {{item1.SECTION}}
- </h4>
- <label ng-repeat="item2 in item1.USER" class="sp-col-20" title="{{item2.USHOWNAME}}">
- <input type="checkbox" style="position:relative;top:2px" ng-checked="item2.checked" ng-click="ctl.checkUser(item2,item1)" />
- {{item2.USHOWNAME2}}
- </label>
- <div class="sp-page" ng-repeat="item2 in item1.CHILD_DATA">
- <h4 style="background:#409EFF" class="sp-color-white sp-pl-10" ng-if="item2.USER">
- <input type="checkbox" style="position:relative;top:2px" ng-checked="item2.checked" ng-click="ctl.checkUserItem(item2)" />
- {{item2.SECTION}}
- </h4>
- <label ng-repeat="item3 in item2.USER" class="sp-col-20" title="{{item3.USHOWNAME}}">
- <input type="checkbox" style="position:relative;top:2px" ng-checked="item3.checked" ng-click="ctl.checkUser(item3,item2)" />
- {{item3.USHOWNAME2}}
- </label>
- </div>
- </div>
- </div>
- </div>
- <div class="sp-page sp-text-center sp-pt-10">
- <a class="sp-btn-blue sp-radius" ng-click="ctl.submitUserList(0)"><i class="fa fa-check sp-mr-5"></i>确 定</a>
- <a class="sp-btn-blue sp-radius" onclick="sp.layerhide()"><i class="fa fa-close sp-mr-5"></i>取 消</a>
- </div>
- </div>
- </div>
- </div>
- <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
- <script src="../../AFrontEnd/js/laydate/laydate.js"></script>
- <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
- <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
- <script src="../../apiurljs.js"></script>
- <script src="../../js/sm4.js"></script>
- <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
- <script>document.write('<scri' + 'pt src="js/detail.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
- <!--<script src="../../js/watermark.js"></script>-->
- <script src="../../AFrontEnd/js/special/spng.js"></script>
- <script src="../../AFrontEnd/js/special/spngvld.js"></script>
- <!--附件-->
- <script src="../../AFrontEnd/plugins/js.fileupload/vendor/jquery.ui.widget.js"></script>
- <script src="../../AFrontEnd/plugins/js.fileupload/jquery.iframe-transport.js"></script>
- <script src="../../AFrontEnd/plugins/js.fileupload/jquery.fileupload.js"></script>
- </body>
- </html>
|