feat:投票参数修改

This commit is contained in:
dongwug
2022-11-09 09:05:34 +08:00
parent 35c609b5de
commit 15210e9064
5 changed files with 47 additions and 14 deletions

View File

@@ -65,7 +65,7 @@
</button>
<div :style="{ display: creVote ? 'block' : 'none' }">
<div class="fileTigan">
<span style="color: #388be1">传过来的name</span>
<span style="color: #388be1">{{voteStemName}}</span>
<div class="delBox" @click="delBox()"></div>
</div>
</div>
@@ -197,6 +197,7 @@ export default {
ascriptionId: "",
voteStemId: "",
voteId:"",
voteStemName:"",
});
const closeDrawer = () => {
ctx.emit("update:addvoteVisible", false);
@@ -213,6 +214,7 @@ export default {
state.creVote = data.creVote;
state.ascriptionId = data.ascriptionId;
state.voteStemId = data.voteStemId;
state.voteStemName = data.voteStemName;
console.log("222", state.creVote);
console.log("333", state.ascriptionId);
};