|  | @@ -319,9 +319,9 @@ function getTenderTreeHtml () {
 | 
	
		
			
				|  |  |          const html = [];
 | 
	
		
			
				|  |  |          html.push('<table class="table table-hover table-bordered" style="margin-top: 25px">');
 | 
	
		
			
				|  |  |          html.push('<thead style="position: fixed;left:56px;top: 34px">', '<tr>');
 | 
	
		
			
				|  |  | -        html.push('<th class="text-center">', '标段名称', '</th>');
 | 
	
		
			
				|  |  | +        html.push('<th class="text-center">', '标段名称', tenderListOrder.getOrderButton('name'), '</th>');
 | 
	
		
			
				|  |  |          html.push('<th class="text-center">', '创建人', '</th>');
 | 
	
		
			
				|  |  | -        html.push('<th class="text-center">', '创建时间', '</th>');
 | 
	
		
			
				|  |  | +        html.push('<th class="text-center">', '创建时间', tenderListOrder.getOrderButton('create_time'), '</th>');
 | 
	
		
			
				|  |  |          html.push('<th class="text-center">', '计量期数', '</th>');
 | 
	
		
			
				|  |  |          html.push('<th class="text-center">', '审批状态', '</th>');
 | 
	
		
			
				|  |  |          html.push('</tr>', '</thead>');
 | 
	
	
		
			
				|  | @@ -341,6 +341,7 @@ function bindTenderUrl() {
 | 
	
		
			
				|  |  |          const tender = _.find(tenders, function (t) {
 | 
	
		
			
				|  |  |              return t.id === tenderId;
 | 
	
		
			
				|  |  |          });
 | 
	
		
			
				|  |  | +        if (!tender) return;
 | 
	
		
			
				|  |  |          if (tender.measure_type) {
 | 
	
		
			
				|  |  |              window.location.href = '/tender/' + tenderId;
 | 
	
		
			
				|  |  |          } else {
 | 
	
	
		
			
				|  | @@ -359,6 +360,7 @@ $(document).ready(() => {
 | 
	
		
			
				|  |  |      initCategoryLevelNode();
 | 
	
		
			
				|  |  |      $('.modal-body', '#add-bd').append(getCategoryHtml());
 | 
	
		
			
				|  |  |      // 初始化标段树结构
 | 
	
		
			
				|  |  | +    tenderListOrder.reOrderTenders();
 | 
	
		
			
				|  |  |      initTenderTree();
 | 
	
		
			
				|  |  |      $('.c-body').html(getTenderTreeHtml());
 | 
	
		
			
				|  |  |      bindTenderUrl();
 |