Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
tswj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2022-05-13 17:47:40 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
17c250d5922ef9c5472abbb303555aedc54acfb9
17c250d5
1 parent
248fefa4
fix
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
src/components/BVideoCard/index.vue
src/components/BVideoCard/index.vue
View file @
17c250d
...
...
@@ -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;
}
}
}
...
...
Please
register
or
login
to post a comment