|  | @@ -35,26 +35,28 @@
 | 
	
		
			
				|  |  |                                  <table class="table table-bordered">
 | 
	
		
			
				|  |  |                                      <thead>
 | 
	
		
			
				|  |  |                                      <tr>
 | 
	
		
			
				|  |  | -                                        <th>期数</th>
 | 
	
		
			
				|  |  | -                                        <th>编号</th>
 | 
	
		
			
				|  |  | -                                        <th>创建时间</th>
 | 
	
		
			
				|  |  | -                                        <th>审批进度</th>
 | 
	
		
			
				|  |  | -                                        <th>操作</th>
 | 
	
		
			
				|  |  | +                                        <th class="text-center">期数</th>
 | 
	
		
			
				|  |  | +                                        <th class="text-center">编号</th>
 | 
	
		
			
				|  |  | +                                        <th class="text-center">上报人</th>
 | 
	
		
			
				|  |  | +                                        <th class="text-center">创建时间</th>
 | 
	
		
			
				|  |  | +                                        <th class="text-center">审批进度</th>
 | 
	
		
			
				|  |  | +                                        <th class="text-center">操作</th>
 | 
	
		
			
				|  |  |                                      </tr>
 | 
	
		
			
				|  |  |                                      </thead>
 | 
	
		
			
				|  |  |                                      <tbody>
 | 
	
		
			
				|  |  |                                      <% for (const info of trDetailList) { %>
 | 
	
		
			
				|  |  |                                      <tr>
 | 
	
		
			
				|  |  | -                                        <td>第<%- info.order %>期</td>
 | 
	
		
			
				|  |  | -                                        <td><a href="/payment/<%- info.tender_id %>/detail/<%- info.id %>"><%- info.code %></a></td>
 | 
	
		
			
				|  |  | -                                        <td><%- info.s_time %></td>
 | 
	
		
			
				|  |  | +                                        <td class="text-center">第<%- info.order %>期</td>
 | 
	
		
			
				|  |  | +                                        <td class="text-center"><a href="/payment/<%- info.tender_id %>/detail/<%- info.id %>"><%- info.code %></a></td>
 | 
	
		
			
				|  |  | +                                        <td class="text-center"><%- info.user_name %></td>
 | 
	
		
			
				|  |  | +                                        <td class="text-center"><%- info.s_time %></td>
 | 
	
		
			
				|  |  |                                          <td class="<%- auditConst.auditProgressClass[info.status] %>">
 | 
	
		
			
				|  |  |                                              <% if (info.curAuditor) { %>
 | 
	
		
			
				|  |  |                                                  <a href="#sp-list" data-toggle="modal" data-target="#sp-list" m-order="<%- info.order %>"><%- info.curAuditor.name %><%if (info.curAuditor.role !== '' && info.curAuditor.role !== null) { %>-<%- info.curAuditor.role %><% } %></a>
 | 
	
		
			
				|  |  |                                              <% } %>
 | 
	
		
			
				|  |  |                                              <%- auditConst.auditProgress[info.status] %>
 | 
	
		
			
				|  |  |                                          </td>
 | 
	
		
			
				|  |  | -                                        <td>
 | 
	
		
			
				|  |  | +                                        <td class="text-center">
 | 
	
		
			
				|  |  |                                              <% if (info.status === auditConst.status.uncheck && info.uid === ctx.session.sessionUser.accountId) { %>
 | 
	
		
			
				|  |  |                                                  <a href="<%- '/payment/' + ctx.tender.id + '/detail/' + info.id %>" class="btn <%- auditConst.statusButtonClass[info.status] %> btn-sm"><%- auditConst.statusButton[info.status] %></a>
 | 
	
		
			
				|  |  |                                              <% } else if (info.status === auditConst.status.checkNo && info.curAuditor && info.uid === ctx.session.sessionUser.accountId) { %>
 |