多题干bug修复

This commit is contained in:
kclf
2022-12-05 16:27:51 +08:00
parent 437ba6e7f4
commit d45635ace1
5 changed files with 1074 additions and 141 deletions

View File

@@ -53,7 +53,7 @@
{{ ballotId ? "编辑" : "创建" }}投票
</button>
<div v-if="ballotId > 0">
<a-tag closable color="processing" @close="log">
<a-tag closable color="processing" @close="handlelog">
<span style="font-size: 14px; line-height: 33px">
删除投票
</span>
@@ -438,7 +438,7 @@ export default {
const closeStem = () => {
state.addStemVisible = false;
};
const log = (e) => {
const handlelog = (e) => {
state.ballotId = null;
console.log(e);
};
@@ -454,7 +454,7 @@ export default {
closeStem,
handleChange,
beforeUpload,
log,
handlelog,
};
},
};