|
@ -36,7 +36,7 @@
|
36
|
36
|
<el-button type="danger" icon="el-icon-delete" circle @click.stop="delet(item.articleId, index)"></el-button>
|
37
|
37
|
</div>
|
38
|
38
|
<div class="dele" v-else-if='flag === 3'>
|
39
|
|
<el-button type="primary" size="small" @click.stop.once="add(item)">{{item.addText}}</el-button>
|
|
39
|
<el-button type="primary" size="small" @click.stop="add(item)">{{item.addText}}</el-button>
|
40
|
40
|
</div>
|
41
|
41
|
</li>
|
42
|
42
|
</ul>
|
|
@ -160,7 +160,7 @@
|
160
|
160
|
this.expertList();
|
161
|
161
|
},
|
162
|
162
|
delet(id, index) {
|
163
|
|
this.$alert('确认删除该文章', '提示', {
|
|
163
|
this.$alert('确认将该文章移出【企业动态】栏目?', '提示', {
|
164
|
164
|
confirmButtonText: '确定',
|
165
|
165
|
cancelButtonText: '取消',
|
166
|
166
|
type: 'warning',
|
|
@ -200,6 +200,9 @@
|
200
|
200
|
});
|
201
|
201
|
},
|
202
|
202
|
add(item) {
|
|
203
|
if(item.addText === '已添加') {
|
|
204
|
return;
|
|
205
|
}
|
203
|
206
|
this.$axios.post(httpUrl.hQuery.orgTrends.add, {
|
204
|
207
|
pid: this.platId,
|
205
|
208
|
aid: item.articleId
|