123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <titlemenu></titlemenu>
- <div class="dj-card">
- <div class="dj-body" activate-input activate-select>
- <div class="card">
- <div class="dj-formtable">
- <table class="dj-table dj-table3">
- <tr>
- <th>所属党组织</th>
- <td>{{dataModel.partyname}}</td>
- <th>会议名称</th>
- <td>{{dataModel.title}}</td>
- <th>会议时间</th>
- <td>{{dataModel.meetingdate | date:'yyyy-MM-dd'}}</td>
- </tr>
- <tr>
- <th>主持人</th>
- <td>{{dataModel.compere}}</td>
- <th>会议地址</th>
- <td colspan="3">{{dataModel.address}}</td>
- </tr>
- <tr>
- <th>“三重一大”类别</th>
- <td colspan="5">
- <div style="float: left;position: relative;display: inline-block;margin: 0px 0px 0px 5px;"
- ng-repeat="it in scydTypeList">
- <input type="checkbox" ng-model="it.checked" disabled
- id="{{pageId}}_scydcheckbox_{{it.dickey}}"/>
- <label for="{{pageId}}_scydcheckbox_{{it.dickey}}">{{it.dicvalue}}</label>
- </div>
- </td>
- </tr>
- </table>
- </div>
- <div class="dj-formtable">
- <div class="table-responsive list-table-panel">
- <div class="list-table-title">
- <div class="table-title">
- 出席人员列表({{dataModel.personnellist.length}}人)
- </div>
- </div>
- <div class="outoflow" style="max-height: 300px;">
- <table class="table table-bordered table-striped table-hover js-basic-example dataTable text-nowrap">
- <thead>
- <tr>
- <th>序号</th>
- <th>姓名</th>
- <th>是否缺勤</th>
- <th>缺勤原因</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="it in dataModel.personnellist">
- <td scope="row">{{$index+1}}</td>
- <td>{{it.xm}}</td>
- <td>{{it.isabsenteeismname}}</td>
- <td style="min-width: 150px !important;word-wrap: break-word;word-break: break-all;white-space: normal;">{{it.absenteeismcause}}</td>
- </tr>
- <tr ng-if="userList.length<=0">
- <td colspan="7" style="text-align:center">暂无数据</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </div>
- <div class="dj-formtable">
- <table class="dj-table">
- <tr>
- <th style="width: 5%;">列席人员</th>
- <td colspan="5">{{dataModel.personnel}}</td>
- </tr>
- <tr>
- <th style="width: 5%;">会议主要议程及结果</th>
- <td colspan="5">{{dataModel.result}}</td>
- </tr>
- </table>
- </div>
- <bsfiles ng-model="reqFileModel"/>
- </div>
- </div>
- </div>
|