hookehuyr

fix

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