hookehuyr

fix

......@@ -78,7 +78,7 @@
</div>
</van-overlay>
<van-dialog v-model:show="show" title="温馨提示" show-cancel-button confirmButtonColor="#F9D95C" @confirm="handleAudit('enable')">
<van-dialog v-model:show="show" title="温馨提示" show-cancel-button confirmButtonColor="#F9D95C" @confirm="handleAudit('enable')" @cancel="onCancel">
<div style="padding: 1rem; text-align: center;">是否确认审核通过该视频 ?</div>
</van-dialog>
</template>
......@@ -196,6 +196,9 @@ export default {
.catch(err => {
console.error(err);
})
},
onCancel () {
this.show = false;
}
}
}
......