반응형
<!DOCTYPE html>
<html>
<head>
<title><%= title %></title>
<link rel='stylesheet' href='/stylesheets/style.css' />
<% include ./partials/head %>
</head>
<body>
<% include ./partials/nav %>
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h3 class="mt-lg-5">원주문 리스트</h3>
<table id="example" class="display" width="100%">
<thead>
<tr>
<th>No.</th>
<th>주문번호</th>
<th>발주날짜</th>
<th>제휴사명</th>
<th>상품명</th>
<th>수량</th>
<th>상태</th>
<th>비고</th>
<th>중복건수</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
</body>
<script>
$(document).ready(function() {
$('#example').DataTable( {
data: <%- JSON.stringify(order_list) %>,
columnDefs: [
{
targets: 2,
render: function(data, type, row) {
return data.substring(0, 10);
}
},
{
targets: 3,
render: function(data, type, row) {
return row.partner.name;
}
}
],
columns: [
{ data: "id" },
{ data: "order_id" },
{ data: "order_date" },
{ data: "partnerId" },
{ data: "product_name" },
{ data: "amount" },
{ data: "status" },
{ data: "note" },
{ data: "duplication_count"},
]
} );
} );
</script>
</html>
반응형
'엉터리 개발 이야기 > 개인프로젝트' 카테고리의 다른 글
datatables 참고 (0) | 2018.11.29 |
---|---|
nodemon 으로 실행 하여 debugging 하기 - vscode, intellij (0) | 2018.11.29 |
참고코드 - routes (0) | 2018.11.28 |
참고 코드 - app.js (0) | 2018.11.28 |
참고 코드 - 모델 (0) | 2018.11.28 |