
--- client/views/pages/adm/boardManagement/template/commonTemplate/CommonSelectList.vue
+++ client/views/pages/adm/boardManagement/template/commonTemplate/CommonSelectList.vue
... | ... | @@ -150,7 +150,7 @@ |
150 | 150 |
data() { |
151 | 151 |
return { |
152 | 152 |
pageRole: this.$store.state.userType, |
153 |
- colgroup: ["5%", "45%", "20%", "25%", "5"], |
|
153 |
+ colgroup: ["5%", "45%", "20%", "25%", "5%"], |
|
154 | 154 |
thead: ["NO", "제목", "작성자", "작성일", "조회수"], |
155 | 155 |
tbody: [], |
156 | 156 |
search: { ...defaultSearchParams }, |
--- client/views/pages/adm/boardManagement/template/galleryTemplate/GallerySelectList.vue
+++ client/views/pages/adm/boardManagement/template/galleryTemplate/GallerySelectList.vue
... | ... | @@ -77,25 +77,27 @@ |
77 | 77 |
<div class="tbl-wrap"> |
78 | 78 |
<table class="tbl data cursor"> |
79 | 79 |
<colgroup> |
80 |
- <!-- <col width="10%" /> --> |
|
81 |
- <col width="60%" /> |
|
80 |
+ <col width="5%" /> |
|
81 |
+ <col width="50%" /> |
|
82 | 82 |
<col width="15%" /> |
83 | 83 |
<col width="15%" /> |
84 |
+ <col width="5%" /> |
|
84 | 85 |
</colgroup> |
85 | 86 |
<thead> |
86 | 87 |
<tr> |
87 |
- <!-- <th>NO</th> --> |
|
88 |
+ <th>NO</th> |
|
88 | 89 |
<th>제목</th> |
89 | 90 |
<th>작성자</th> |
90 | 91 |
<th>작성일</th> |
92 |
+ <th>조회수</th> |
|
91 | 93 |
</tr> |
92 | 94 |
</thead> |
93 | 95 |
<tbody> |
94 | 96 |
<template v-if="list.length > 0"> |
95 | 97 |
<tr v-for="(item, idx) in list" :key="idx" @click="fnView(idx)"> |
96 |
- <!-- <td> |
|
97 |
- |
|
98 |
- </td> --> |
|
98 |
+ <td> |
|
99 |
+ {{ listCnt - idx - (search.currentPage - 1) * search.recordSize }} |
|
100 |
+ </td> |
|
99 | 101 |
<td> |
100 | 102 |
<div class="layout"> |
101 | 103 |
<img :src="item.absltPath" class="thumbnail" /> |
... | ... | @@ -115,6 +117,9 @@ |
115 | 117 |
<td> |
116 | 118 |
{{ item.regDt }} |
117 | 119 |
</td> |
120 |
+ <td> |
|
121 |
+ {{ item.inqCnt }} |
|
122 |
+ </td> |
|
118 | 123 |
</tr> |
119 | 124 |
</template> |
120 | 125 |
<tr v-else> |
--- client/views/pages/adm/boardManagement/template/videoTemplate/VideoSelectList.vue
+++ client/views/pages/adm/boardManagement/template/videoTemplate/VideoSelectList.vue
... | ... | @@ -24,25 +24,27 @@ |
24 | 24 |
<div class="tbl-wrap"> |
25 | 25 |
<table class="tbl data cursor"> |
26 | 26 |
<colgroup> |
27 |
- <!-- <col width="10%" /> --> |
|
28 |
- <col width="60%" /> |
|
27 |
+ <col width="5%" /> |
|
28 |
+ <col width="50%" /> |
|
29 | 29 |
<col width="15%" /> |
30 | 30 |
<col width="15%" /> |
31 |
+ <col width="5%" /> |
|
31 | 32 |
</colgroup> |
32 | 33 |
<thead> |
33 | 34 |
<tr> |
34 |
- <!-- <th>NO</th> --> |
|
35 |
+ <th>NO</th> |
|
35 | 36 |
<th>제목</th> |
36 | 37 |
<th>작성자</th> |
37 | 38 |
<th>작성일</th> |
39 |
+ <th>조회수</th> |
|
38 | 40 |
</tr> |
39 | 41 |
</thead> |
40 | 42 |
<tbody> |
41 | 43 |
<template v-if="list.length > 0"> |
42 | 44 |
<tr v-for="(item, idx) in list" :key="idx" @click="fnView(idx)" > |
43 |
- <!-- <td> |
|
44 |
- |
|
45 |
- </td> --> |
|
45 |
+ <td> |
|
46 |
+ {{ listCnt - idx - (search.currentPage - 1) * search.recordSize }} |
|
47 |
+ </td> |
|
46 | 48 |
<td> |
47 | 49 |
<div class="layout"> |
48 | 50 |
<img v-if="item.absltPath" :src="item.absltPath" class="thumbnail"/> |
... | ... | @@ -63,6 +65,9 @@ |
63 | 65 |
<td> |
64 | 66 |
{{ item.regDt }} |
65 | 67 |
</td> |
68 |
+ <td> |
|
69 |
+ {{ item.inqCnt }} |
|
70 |
+ </td> |
|
66 | 71 |
</tr> |
67 | 72 |
</template> |
68 | 73 |
<tr v-else> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?