하석형 하석형 04-28
250428 하석형 갤러리형/영상형 글순번, 조회수 표기
@036c7bde2e69dbd476b96c29a31447b1e44f24d8
client/views/pages/adm/boardManagement/template/commonTemplate/CommonSelectList.vue
--- client/views/pages/adm/boardManagement/template/commonTemplate/CommonSelectList.vue
+++ client/views/pages/adm/boardManagement/template/commonTemplate/CommonSelectList.vue
@@ -150,7 +150,7 @@
   data() {
     return {
       pageRole: this.$store.state.userType,
-      colgroup: ["5%", "45%", "20%", "25%", "5"],
+      colgroup: ["5%", "45%", "20%", "25%", "5%"],
       thead: ["NO", "제목", "작성자", "작성일", "조회수"],
       tbody: [],
       search: { ...defaultSearchParams },
client/views/pages/adm/boardManagement/template/galleryTemplate/GallerySelectList.vue
--- client/views/pages/adm/boardManagement/template/galleryTemplate/GallerySelectList.vue
+++ client/views/pages/adm/boardManagement/template/galleryTemplate/GallerySelectList.vue
@@ -77,25 +77,27 @@
                     <div class="tbl-wrap">
                         <table class="tbl data cursor">
                             <colgroup>
-                                <!-- <col width="10%" /> -->
-                                <col width="60%" />
+                                <col width="5%" />
+                                <col width="50%" />
                                 <col width="15%" />
                                 <col width="15%" />
+                                <col width="5%" />
                             </colgroup>
                             <thead>
                                 <tr>
-                                    <!-- <th>NO</th> -->
+                                    <th>NO</th>
                                     <th>제목</th>
                                     <th>작성자</th>
                                     <th>작성일</th>
+                                    <th>조회수</th>
                                 </tr>
                             </thead>
                             <tbody>
                                 <template v-if="list.length > 0">
                                     <tr v-for="(item, idx) in list" :key="idx" @click="fnView(idx)">
-                                        <!-- <td>
-                           
-                                        </td> -->
+                                        <td>
+                                            {{ listCnt - idx - (search.currentPage - 1) * search.recordSize }}
+                                        </td>
                                         <td>
                                             <div class="layout">
                                                 <img :src="item.absltPath"  class="thumbnail" />
@@ -115,6 +117,9 @@
                                         <td>
                                             {{ item.regDt }}
                                         </td>
+                                        <td>
+                                            {{  item.inqCnt }}
+                                        </td>
                                     </tr>
                                 </template>
                                 <tr v-else>
client/views/pages/adm/boardManagement/template/videoTemplate/VideoSelectList.vue
--- client/views/pages/adm/boardManagement/template/videoTemplate/VideoSelectList.vue
+++ client/views/pages/adm/boardManagement/template/videoTemplate/VideoSelectList.vue
@@ -24,25 +24,27 @@
                     <div class="tbl-wrap">
                         <table class="tbl data cursor">
                             <colgroup>
-                                <!-- <col width="10%" /> -->
-                                <col width="60%" />
+                                <col width="5%" />
+                                <col width="50%" />
                                 <col width="15%" />
                                 <col width="15%" />
+                                <col width="5%" />
                             </colgroup>
                             <thead>
                                 <tr>
-                                    <!-- <th>NO</th> -->
+                                    <th>NO</th>
                                     <th>제목</th>
                                     <th>작성자</th>
                                     <th>작성일</th>
+                                    <th>조회수</th>
                                 </tr>
                             </thead>
                             <tbody>
                                 <template v-if="list.length > 0">
                                     <tr v-for="(item, idx) in list" :key="idx" @click="fnView(idx)" >
-                                        <!-- <td>
-                           
-                                        </td> -->
+                                        <td>
+                                            {{ listCnt - idx - (search.currentPage - 1) * search.recordSize }}
+                                        </td>
                                         <td>
                                             <div class="layout">
                                                 <img v-if="item.absltPath" :src="item.absltPath"  class="thumbnail"/>
@@ -63,6 +65,9 @@
                                         <td>
                                             {{ item.regDt }}
                                         </td>
+                                        <td>
+                                            {{  item.inqCnt }}
+                                        </td>
                                     </tr>
                                 </template>
                                 <tr v-else>
Add a comment
List