|
@ -1,6 +1,7 @@ |
|
|
<template> |
|
|
<template> |
|
|
<div> |
|
|
<div> |
|
|
<base-page ref="basePage" |
|
|
<base-page |
|
|
|
|
|
ref="basePage" |
|
|
:searchParams="searchParams" |
|
|
:searchParams="searchParams" |
|
|
:tableParams="tableParams" |
|
|
:tableParams="tableParams" |
|
|
:tableUrl="tableUrl" |
|
|
:tableUrl="tableUrl" |
|
@ -18,77 +19,99 @@ |
|
|
:editElseRules="editElseRules" |
|
|
:editElseRules="editElseRules" |
|
|
:editConfig="editConfig" |
|
|
:editConfig="editConfig" |
|
|
:editParamsDiv="5" |
|
|
:editParamsDiv="5" |
|
|
:editBtnName="(item) => (!item.latitude ? '待完善' : '修改')" |
|
|
:editBtnName="(item) => '修改'" |
|
|
:formBtnFixed="true" |
|
|
:formBtnFixed="true" |
|
|
idName="articleId"> |
|
|
idName="articleId" |
|
|
|
|
|
> |
|
|
<template v-slot:editOperateSup="{ id, formType, info }"> |
|
|
<template v-slot:editOperateSup="{ id, formType, info }"> |
|
|
<el-button v-if="formType != 'watch'" |
|
|
<el-button |
|
|
|
|
|
v-if="formType == 'add'" |
|
|
type="warning" |
|
|
type="warning" |
|
|
size="small" |
|
|
size="small" |
|
|
:disabled="draftBtnDisable" |
|
|
:disabled="draftBtnDisable" |
|
|
@click="handleClickDraft(info)">存草稿</el-button> |
|
|
@click="handleClickDraft(info)" |
|
|
|
|
|
>存草稿</el-button |
|
|
|
|
|
> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<template v-slot:listBtnSup="{ item }"> |
|
|
<template v-slot:listBtnSup="{ item }"> |
|
|
<el-button v-if=" |
|
|
<el-button |
|
|
|
|
|
v-if=" |
|
|
item.statusFlag == 'published' && |
|
|
item.statusFlag == 'published' && |
|
|
item.agencyId == $store.state.user.agencyId |
|
|
item.agencyId == $store.state.user.agencyId |
|
|
" |
|
|
" |
|
|
@click="handleOfflineShow(item)" |
|
|
@click="handleOfflineShow(item)" |
|
|
type="text" |
|
|
type="text" |
|
|
size="small" |
|
|
size="small" |
|
|
style="color: #666">下线</el-button> |
|
|
style="color: #666" |
|
|
|
|
|
>下线</el-button |
|
|
|
|
|
> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
<template v-slot:listBtnbefore="{ item }"> |
|
|
<template v-slot:listBtnbefore="{ item }"> |
|
|
<el-button v-if="item.isTop == '1'" |
|
|
<el-button |
|
|
|
|
|
v-if="item.isTop == '1'" |
|
|
@click="handleCancleTopArticle(item, 'cancel_top')" |
|
|
@click="handleCancleTopArticle(item, 'cancel_top')" |
|
|
type="text" |
|
|
type="text" |
|
|
size="small" |
|
|
size="small" |
|
|
style="color: #fe6252">取消置顶</el-button> |
|
|
style="color: #fe6252" |
|
|
<el-button v-else |
|
|
>取消置顶</el-button |
|
|
|
|
|
> |
|
|
|
|
|
<el-button |
|
|
|
|
|
v-else |
|
|
@click="handleTopArticle(item, 'top')" |
|
|
@click="handleTopArticle(item, 'top')" |
|
|
type="text" |
|
|
type="text" |
|
|
size="small" |
|
|
size="small" |
|
|
style="color: #22c1c3">置顶</el-button> |
|
|
style="color: #22c1c3" |
|
|
|
|
|
>置顶</el-button |
|
|
|
|
|
> |
|
|
</template> |
|
|
</template> |
|
|
|
|
|
|
|
|
</base-page> |
|
|
</base-page> |
|
|
|
|
|
|
|
|
<el-dialog :visible.sync="offlineShowed" |
|
|
<el-dialog |
|
|
|
|
|
:visible.sync="offlineShowed" |
|
|
:close-on-click-modal="false" |
|
|
:close-on-click-modal="false" |
|
|
:close-on-press-escape="false" |
|
|
:close-on-press-escape="false" |
|
|
title="下线" |
|
|
title="下线" |
|
|
width="850px" |
|
|
width="850px" |
|
|
top="5vh" |
|
|
top="5vh" |
|
|
class="dialog-h" |
|
|
class="dialog-h" |
|
|
@closed="offlineShowed = false"> |
|
|
@closed="offlineShowed = false" |
|
|
<offline ref="offlineForm" |
|
|
> |
|
|
|
|
|
<offline |
|
|
|
|
|
ref="offlineForm" |
|
|
@close="offlineShowed = false" |
|
|
@close="offlineShowed = false" |
|
|
@afterOffline="handleOfflineSuccess"></offline> |
|
|
@afterOffline="handleOfflineSuccess" |
|
|
|
|
|
></offline> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
<el-dialog :visible.sync="showAddImage" |
|
|
<el-dialog |
|
|
|
|
|
:visible.sync="showAddImage" |
|
|
:close-on-click-modal="false" |
|
|
:close-on-click-modal="false" |
|
|
:close-on-press-escape="false" |
|
|
:close-on-press-escape="false" |
|
|
title="上传封面图片" |
|
|
title="上传封面图片" |
|
|
width="650px" |
|
|
width="650px" |
|
|
top="5vh" |
|
|
top="5vh" |
|
|
class="dialog-h" |
|
|
class="dialog-h" |
|
|
@closed="showAddImage = false"> |
|
|
@closed="showAddImage = false" |
|
|
|
|
|
> |
|
|
<div class="dialog-h-content scroll-h"> |
|
|
<div class="dialog-h-content scroll-h"> |
|
|
<!-- <span>请先上 传封面图片</span> --> |
|
|
<!-- <span>请先上 传封面图片</span> --> |
|
|
<el-form ref="ref_form" |
|
|
<el-form |
|
|
|
|
|
ref="ref_form" |
|
|
:inline="true" |
|
|
:inline="true" |
|
|
:model="formData" |
|
|
:model="formData" |
|
|
class="div_form"> |
|
|
class="div_form" |
|
|
|
|
|
> |
|
|
<div class="form_flex"> |
|
|
<div class="form_flex"> |
|
|
<div class="form_item"> |
|
|
<div class="form_item"> |
|
|
|
|
|
<el-form-item |
|
|
<el-form-item label="" |
|
|
label="" |
|
|
prop="selImgUrl" |
|
|
prop="selImgUrl" |
|
|
label-width="150px" |
|
|
label-width="150px" |
|
|
style="display: block"> |
|
|
style="display: block" |
|
|
<el-upload :headers="$getElUploadHeaders()" |
|
|
> |
|
|
|
|
|
<el-upload |
|
|
|
|
|
:headers="$getElUploadHeaders()" |
|
|
:class="['avatar-uploader', { hide: hideUploadBtn }]" |
|
|
:class="['avatar-uploader', { hide: hideUploadBtn }]" |
|
|
ref="uploadPic" |
|
|
ref="uploadPic" |
|
|
:action="uploadUlr" |
|
|
:action="uploadUlr" |
|
@ -99,23 +122,20 @@ |
|
|
:file-list="replayImgList" |
|
|
:file-list="replayImgList" |
|
|
:on-change="handleEditChange" |
|
|
:on-change="handleEditChange" |
|
|
:on-success="handleSuccess" |
|
|
:on-success="handleSuccess" |
|
|
:limit="1"> |
|
|
:limit="1" |
|
|
|
|
|
> |
|
|
<span class="font-14">选择图片</span> |
|
|
<span class="font-14">选择图片</span> |
|
|
</el-upload> |
|
|
</el-upload> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
</el-form> |
|
|
</el-form> |
|
|
</div> |
|
|
</div> |
|
|
<div class="div_btn"> |
|
|
<div class="div_btn"> |
|
|
<el-button size="small" |
|
|
<el-button size="small" @click="showAddImage = false">取 消</el-button> |
|
|
@click="showAddImage = false">取 消</el-button> |
|
|
<el-button size="small" type="primary" @click="handleAddImage" |
|
|
<el-button size="small" |
|
|
>确 定</el-button |
|
|
type="primary" |
|
|
> |
|
|
@click="handleAddImage">确 定</el-button> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
</div> |
|
|
</div> |
|
@ -246,14 +266,14 @@ export default { |
|
|
exportUrl: "", |
|
|
exportUrl: "", |
|
|
|
|
|
|
|
|
addUrl: "/gov/voice/article/addOrSaveDraft", |
|
|
addUrl: "/gov/voice/article/addOrSaveDraft", |
|
|
editUrl: "", |
|
|
editUrl: "/gov/voice/article/updateArticle", |
|
|
infoUrl: "/gov/voice/article/detailV2", |
|
|
infoUrl: "/gov/voice/article/detailV2", |
|
|
delUrl: "", |
|
|
delUrl: "/gov/voice/article/delete批量", |
|
|
editAuth(item) { |
|
|
editAuth(item) { |
|
|
return false; |
|
|
return item.statusFlagName == "已发布"; |
|
|
}, |
|
|
}, |
|
|
delAuth(item) { |
|
|
delAuth(item) { |
|
|
return false; |
|
|
return item.statusFlagName == "已下线"; |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
editParams: [ |
|
|
editParams: [ |
|
@ -532,9 +552,9 @@ export default { |
|
|
uploadUlr: window.SITE_CONFIG["apiURL"] + "/oss/file/uploadvariedfile", |
|
|
uploadUlr: window.SITE_CONFIG["apiURL"] + "/oss/file/uploadvariedfile", |
|
|
replayImgList: [], |
|
|
replayImgList: [], |
|
|
hideUploadBtn: false, |
|
|
hideUploadBtn: false, |
|
|
selType: 'top', |
|
|
selType: "top", |
|
|
selArticleId: '', |
|
|
selArticleId: "", |
|
|
selImgUrl: '' |
|
|
selImgUrl: "", |
|
|
}; |
|
|
}; |
|
|
}, |
|
|
}, |
|
|
components: { basePage, offline }, |
|
|
components: { basePage, offline }, |
|
@ -552,32 +572,29 @@ export default { |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
async handleAddImage() { |
|
|
async handleAddImage() { |
|
|
console.log('formData', this.formData) |
|
|
console.log("formData", this.formData); |
|
|
this.topArticle() |
|
|
this.topArticle(); |
|
|
}, |
|
|
}, |
|
|
async handleCancleTopArticle(item, type) { |
|
|
async handleCancleTopArticle(item, type) { |
|
|
this.selType = type |
|
|
this.selType = type; |
|
|
this.selArticleId = item.articleId |
|
|
this.selArticleId = item.articleId; |
|
|
await this.topArticle() |
|
|
await this.topArticle(); |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
async handleTopArticle(item, type) { |
|
|
async handleTopArticle(item, type) { |
|
|
|
|
|
this.selType = type; |
|
|
|
|
|
this.selArticleId = item.articleId; |
|
|
|
|
|
|
|
|
this.selType = type |
|
|
let hasImage = await this.isHasImage(); |
|
|
this.selArticleId = item.articleId |
|
|
|
|
|
|
|
|
|
|
|
let hasImage = await this.isHasImage() |
|
|
if (hasImage === "refrsh") { |
|
|
|
|
|
|
|
|
if (hasImage === 'refrsh') { |
|
|
|
|
|
this.$message.error("请求失败,请重新尝试"); |
|
|
this.$message.error("请求失败,请重新尝试"); |
|
|
|
|
|
} else if (hasImage === "no") { |
|
|
} else if (hasImage === 'no') { |
|
|
|
|
|
// this.$message.info("请先上传封面图片"); |
|
|
// this.$message.info("请先上传封面图片"); |
|
|
this.showAddImage = true |
|
|
this.showAddImage = true; |
|
|
} else { |
|
|
} else { |
|
|
await this.topArticle() |
|
|
await this.topArticle(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
|
async isHasImage() { |
|
|
async isHasImage() { |
|
@ -586,18 +603,17 @@ export default { |
|
|
|
|
|
|
|
|
const { data, code, msg } = await requestPost(url, { |
|
|
const { data, code, msg } = await requestPost(url, { |
|
|
articleId: this.selArticleId, |
|
|
articleId: this.selArticleId, |
|
|
|
|
|
|
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
if (code === 0) { |
|
|
if (code === 0) { |
|
|
// this.formData = data |
|
|
// this.formData = data |
|
|
if (data.imgUrl) { |
|
|
if (data.imgUrl) { |
|
|
return 'has' |
|
|
return "has"; |
|
|
} else { |
|
|
} else { |
|
|
return 'no' |
|
|
return "no"; |
|
|
} |
|
|
} |
|
|
} else { |
|
|
} else { |
|
|
return 'refrsh' |
|
|
return "refrsh"; |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
|
|
@ -606,16 +622,16 @@ export default { |
|
|
const { tableData } = this; |
|
|
const { tableData } = this; |
|
|
let params = { |
|
|
let params = { |
|
|
articleId: this.selArticleId, |
|
|
articleId: this.selArticleId, |
|
|
type: this.selType |
|
|
type: this.selType, |
|
|
} |
|
|
}; |
|
|
if (this.selImgUrl) { |
|
|
if (this.selImgUrl) { |
|
|
params.imgUrl = this.selImgUrl |
|
|
params.imgUrl = this.selImgUrl; |
|
|
} |
|
|
} |
|
|
const { data, code, msg } = await requestPost(url, params); |
|
|
const { data, code, msg } = await requestPost(url, params); |
|
|
|
|
|
|
|
|
if (code === 0) { |
|
|
if (code === 0) { |
|
|
this.$message.success("操作成功!"); |
|
|
this.$message.success("操作成功!"); |
|
|
this.showAddImage = false |
|
|
this.showAddImage = false; |
|
|
this.$refs.basePage.refresh(); |
|
|
this.$refs.basePage.refresh(); |
|
|
} else { |
|
|
} else { |
|
|
this.$message.success("操作失败!"); |
|
|
this.$message.success("操作失败!"); |
|
|