feat : 需求上报加上保存按钮

This commit is contained in:
dj
2024-12-13 11:51:18 +08:00
parent 54eeefd5dd
commit b41e39abbf
2 changed files with 8 additions and 2 deletions

View File

@@ -326,7 +326,7 @@
</div>
</div>
<div class="oper-page-btn">
<!-- <el-button type="info" @click="staging">为草稿</el-button>-->
<el-button color="#DED0B2" @click="staging"></el-button>
<el-button color="#DED0B2" v-if="name==='Summary/add'" @click="handleSubmit(summaryForm)">发布</el-button>
<el-button color="#DED0B2" v-else @click="handleResubmit(summaryForm)">重新发布</el-button>
<el-button @click="handleBack">返回</el-button>
@@ -741,6 +741,11 @@ onMounted(async () => {
await init()
})
const staging = async () => {
ElNotification({
title: '提示',
message: '保存成功!',
type: 'success'
})
}
</script>
<style lang="scss" scoped>