mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-13 12:56:43 +08:00
增加文章删除事件的处理
This commit is contained in:
@@ -1,13 +1,5 @@
|
||||
<template>
|
||||
<div>
|
||||
<Remark :fixed="false">
|
||||
<ul>
|
||||
<li>class名为problem的dom(即时间)无法直接垂直居中</li>
|
||||
<li>状态有草稿、待审核、未通过、已通过、已发布</li>
|
||||
<li>状态为已发布时才显示点赞收藏图标</li>
|
||||
<li>点击编辑时没有跳转到新页面</li>
|
||||
</ul>
|
||||
</Remark>
|
||||
<div class="article-list" v-for="(item, idx) in items" :key="idx" @click="jumpDetail(item)">
|
||||
<div class="article-info">
|
||||
<div class="article-info-title one-line-ellipsis"
|
||||
@@ -53,6 +45,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { mapGetters } from "vuex";
|
||||
import interactBar from '@/components/Portal/interactBar.vue';
|
||||
import apiArticle from '@/api/modules/article.js';
|
||||
import editItems from '@/components/Article/editItems.vue';
|
||||
@@ -60,6 +53,9 @@ export default {
|
||||
components: {
|
||||
interactBar,editItems
|
||||
},
|
||||
computed: {
|
||||
...mapGetters(["userInfo"]),
|
||||
},
|
||||
name: 'articleItems',
|
||||
props: {
|
||||
items: {
|
||||
@@ -146,26 +142,35 @@ export default {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
})
|
||||
|
||||
.then(() => {
|
||||
apiArticle
|
||||
.del(item.id)
|
||||
.then(res => {
|
||||
}).then(() => {
|
||||
apiArticle.del(item.id).then(res => {
|
||||
if (res.status == 200) {
|
||||
this.$emit('update',true)
|
||||
this.$message.success('删除成功');
|
||||
console.log('shanchushanchu')
|
||||
//发送删除事件
|
||||
let event = {
|
||||
key: "DeleteArticle",//后台的事件key 发布文章且审核通过
|
||||
title: "删除文章",//事件的标题
|
||||
parameters:"",//用户自定义参数 name:value,name:value
|
||||
content: "删除文章",//事件的内容
|
||||
source:'page',
|
||||
objId: item.id,//关联的id
|
||||
objType: "2",//关联的类型
|
||||
objInfo: item.title,
|
||||
aid: this.userInfo.aid, //当前登录人的id
|
||||
aname: this.userInfo.name,//当前人的姓名
|
||||
status: 1 //状态,直接写1
|
||||
}
|
||||
this.$store.dispatch("userTrigger", event);
|
||||
|
||||
|
||||
}else{
|
||||
this.$message.error('删除失败');
|
||||
this.$message.error('删除失败:'+res.message);
|
||||
}
|
||||
})
|
||||
.catch(err => {
|
||||
}).catch(err => {
|
||||
this.$message.error('删除失败');
|
||||
});
|
||||
})
|
||||
.catch(() => {});
|
||||
}).catch(() => {});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
<!-- </div> -->
|
||||
<div>
|
||||
<el-badge :value="userMsg" :hidden="userMsg==0" class="message-count">
|
||||
<el-link type="primary" :href="`${webBaseUrl}/message/center/index`" target="_blank" :underline="false">
|
||||
<el-link type="primary" :href="`${webBaseUrl}/message/center/index`" :underline="false">
|
||||
<svg-icon style="margin-right: 0;font-size:26px;" icon-class="messfff"></svg-icon>
|
||||
</el-link>
|
||||
</el-badge>
|
||||
@@ -126,6 +126,7 @@ export default {
|
||||
components:{InterestCollection,GuideBox},
|
||||
data() {
|
||||
return {
|
||||
isTiao:false,
|
||||
interestShow:false,
|
||||
checked:true,
|
||||
signInShow: false,
|
||||
|
||||
Reference in New Issue
Block a user