
--- client/views/pages/adm/main/Main.vue
+++ client/views/pages/adm/main/Main.vue
... | ... | @@ -154,7 +154,7 @@ |
154 | 154 |
if (response.data.data.popupMng.length > 0) { |
155 | 155 |
this.tbody = []; |
156 | 156 |
this.tbody = this.popupList.map((popup, idx) => ({ |
157 |
- id: 5 - idx, |
|
157 |
+ id: idx + (this.popupList.length - (2 * idx)), |
|
158 | 158 |
popupTtl: popup.popupTtl, |
159 | 159 |
useYn: |
160 | 160 |
popup.popupUseYn == "Y" |
... | ... | @@ -172,7 +172,7 @@ |
172 | 172 |
if (response.data.data.bbsCnNew.length > 0) { |
173 | 173 |
this.tbody2 = []; |
174 | 174 |
this.tbody2 = this.bbsCnList.map((bbs, idx) => ({ |
175 |
- id: 5 - idx, |
|
175 |
+ id: idx + (this.bbsCnList.length - (2 * idx)), |
|
176 | 176 |
ttl: |
177 | 177 |
bbs.type == "faq" |
178 | 178 |
? this.fnFindBbsTitle(bbs) |
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?