feat:讨论的编辑

This commit is contained in:
岳佳鑫
2022-11-07 17:02:25 +08:00
parent e688448cf9
commit b3f2be8b4a
3 changed files with 33 additions and 5 deletions

View File

@@ -9,7 +9,8 @@
>
<div class="drawerMain">
<div class="header">
<div class="headerTitle" >添加活动</div>
<div v-if="edit" class="headerTitle">编辑活动</div>
<div v-else class="headerTitle">添加活动</div>
<img
style="width: 29px; height: 29px; cursor: pointer"
src="../../assets/images/basicinfo/close.png"
@@ -272,6 +273,10 @@ export default {
chooseStageId: {
type: Number,
default: null,
},
edit: {
type: Boolean,
default: false,
}
},
setup(props, ctx) {
@@ -290,6 +295,7 @@ export default {
});
const closeDrawer = () => {
ctx.emit("update:addactiveVisible", false);
ctx.emit("update:edit", false);
state.radioV1 = "";
state.inputV1 = "";
state.inputV2 = "";