1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <div>
- <table class="table table-bordered tlist">
- <thead>
- <tr>
- <td colspan="6" style="text-align:center; background-color:#f5f5f5">
- <span style="color:black;"><strong>发起任务</strong></span>
- <span><button type="button" class="btn btn-link"
- style="float:right;margin-right:5%; color:black;padding:1px;" data-placement="center"
- data-animation="am-fade-and-scale"
- ng-click="ToMission()"><strong>发起</strong></button></span>
- </td>
- </tr>
- <tr>
- <th>任务类型</th>
- <th>任务描述</th>
- <th>完成时间</th>
- <th>负责人</th>
- <th>环节进度</th>
- <th>操作</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="item in items">
- <td>{{item.TaskType}}</td>
- <td style="width:25%">
- <div style='display:-webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;overflow:hidden;'
- ng-click="showDetail(item)">{{item.TaskNote}}
- </div>
- </td>
- <td>{{item.TaskLimitTime}}</td>
- <td>{{item.TaskerName}}</td>
- <td>{{item.Progress}}%</td>
- <td>
- <button ng-if="item.TaskType=='普通'&&item.FlowID==null" type="button" class="btn btn-success btn-sm"
- value="修改" ng-click="editTask(item,1)">
- <span class="glyphicon glyphicon-pencil"></span>
- </button>
- <button ng-if="item.TaskType=='普通'&&item.FlowID==null" type="button" value="删除"
- class="btn btn-danger btn-sm" ng-click="deleteTask(item.TaskbaseID)">
- <span class="glyphicon glyphicon-remove"></span>
- </button>
- <button ng-if="item.FlowID!=null" type="button" class="btn btn-success btn-sm" value="查看"
- ng-click="check(item)">
- <span class="glyphicon glyphicon-eye-open"></span>
- </button>
- </td>
- </tr>
- <tr ng-if="items.length<1">
- <td colspan="6" style="text-align:center">暂无数据</td>
- </tr>
- </tbody>
- </table>
- <pagination data-pageindex="page.pageIndex" data-pagesize="page.pageSize"
- data-ptotal="page.totalCount"></pagination>
- </div>
|