This commit is contained in:
@fawn-nine
2023-06-29 18:02:21 +08:00
parent cf880b0864
commit b230e61de9
7 changed files with 174 additions and 81 deletions

View File

@@ -40,7 +40,7 @@
</template>
<script>
import Vue from 'vue'
import Vue from 'vue'
export default {
props: {
talkMsgs: {
@@ -85,10 +85,15 @@
.post('api/Article/pushArticleDialog', this.msgform)
.then((res) => {
this.loading = false;
this.$message.success('Sent successfully');
this.$router.go(0);
// this.$message.success('Sent successfully');
this.$emit('talksave',true) // 传递成功信号
// setTimeout(()=>{
// this.$router.go(0);
// },1000)
});
},
}
}
</script>