mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-06 20:08:41 +09:00
반려 팝업 작업
This commit is contained in:
@@ -15,9 +15,11 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="(option, i) in list" v-bind:key="i">
|
<template v-for="(option, i) in list">
|
||||||
<td v-if="list.status == 'REJ'" v-html="option.content"></td>
|
<tr v-bind:key="i" v-if="option.status == 'REJ'">
|
||||||
</tr>
|
<td v-html="option.content"></td>
|
||||||
|
</tr>
|
||||||
|
</template>
|
||||||
<tr v-if="list.length === 0">
|
<tr v-if="list.length === 0">
|
||||||
<td>반려 내용이 없습니다.</td>
|
<td>반려 내용이 없습니다.</td>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -54,10 +56,8 @@ export default {
|
|||||||
try {
|
try {
|
||||||
const response = await channelMgtApi.tmpltRejectList(this.row);
|
const response = await channelMgtApi.tmpltRejectList(this.row);
|
||||||
const result = response.data;
|
const result = response.data;
|
||||||
console.log(result);
|
|
||||||
if (result != null && result.retCode == "0000") {
|
if (result != null && result.retCode == "0000") {
|
||||||
this.list = result.rjtData.list;
|
this.list = result.rjtData.list;
|
||||||
//console.log(this.list);
|
|
||||||
}
|
}
|
||||||
var dimmed = document.getElementsByClassName('modal25');
|
var dimmed = document.getElementsByClassName('modal25');
|
||||||
for (var i = 0; i < dimmed.length; i++) {
|
for (var i = 0; i < dimmed.length; i++) {
|
||||||
|
|||||||
Reference in New Issue
Block a user