This commit is contained in:
zhutianqi
2021-08-03 13:57:13 +08:00
parent fdcc5a8692
commit af7a749369
@@ -156,6 +156,17 @@ export default {
exportAll () { exportAll () {
window.open('/api/slrs/sar-public-idea-all/tuallStand?cid=' + this.$route.query.item.cid) window.open('/api/slrs/sar-public-idea-all/tuallStand?cid=' + this.$route.query.item.cid)
}, },
getIdeaKey () {
this.$http.get('slrs/sar-public-idea-all/checkIsShow', {
endTime: this.form.endTime
}, {}, res => {
if (res.message === '1') {
this.ideaKey = false
} else {
this.ideaKey = true
}
})
},
// 获取详情信息列表 // 获取详情信息列表
getList() { getList() {
this.spinShow = true this.spinShow = true
@@ -284,6 +295,7 @@ export default {
}, },
mounted () { mounted () {
this.getList() this.getList()
this.getIdeaKey()
} }
} }
</script> </script>