|
@@ -2,19 +2,35 @@
|
|
|
<div class="knowledge-box">
|
|
|
<header>
|
|
|
<div class="left-filter">
|
|
|
- <el-button type="primary" @click="$router.push({path:'/knowledgeEdit'})">添加事件</el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ @click="$router.push({path:'/knowledgeEdit',query: { source: ResourceType }})"
|
|
|
+ v-if="checkBtnAuth('add')"
|
|
|
+ >添加{{ titlePath }}</el-button>
|
|
|
<el-dropdown
|
|
|
split-button
|
|
|
type="primary"
|
|
|
@click="isImportExcelDia=true"
|
|
|
+ v-if="checkBtnAuth('import')"
|
|
|
+ @command="handleImport"
|
|
|
>
|
|
|
Excel导入
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
<el-dropdown-item command="file">文件导入</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
|
</el-dropdown>
|
|
|
- <el-button type="primary" plain @click="isOpenClassifyDia=true">分类管理</el-button>
|
|
|
- <el-button type="primary" plain @click="handleGoTagSet">标签管理</el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ @click="isOpenClassifyDia=true"
|
|
|
+ v-if="checkBtnAuth('classifyEdit')"
|
|
|
+ >分类管理</el-button>
|
|
|
+ <el-button
|
|
|
+ type="primary"
|
|
|
+ plain
|
|
|
+ @click="handleGoTagSet"
|
|
|
+ v-if="checkBtnAuth('tagEdit')"
|
|
|
+ >标签管理</el-button>
|
|
|
</div>
|
|
|
|
|
|
<div class="right-filter">
|
|
@@ -29,17 +45,20 @@
|
|
|
<div class="select-wrap">
|
|
|
<div class="select-top">
|
|
|
<h4>筛选条件</h4>
|
|
|
- <span><i class="el-icon-delete"/>清空所选条件</span>
|
|
|
+ <span @click="handleClearFilter"><i class="el-icon-delete"/>清空所选条件</span>
|
|
|
</div>
|
|
|
<div class="select-item">
|
|
|
<el-cascader
|
|
|
- :options="classifyOptions"
|
|
|
v-model="filterForm.classifys"
|
|
|
+ :options="classifyOptions"
|
|
|
:props="{
|
|
|
- value: 'Id',
|
|
|
+ value: 'ClassifyId',
|
|
|
label: 'ClassifyName',
|
|
|
- children: 'Child'
|
|
|
+ children: 'Child',
|
|
|
+ emitPath:false,
|
|
|
+ multiple:true,
|
|
|
}"
|
|
|
+ :show-all-levels="false"
|
|
|
clearable
|
|
|
placeholder="请选择分类"
|
|
|
style="width:100%;"
|
|
@@ -48,11 +67,12 @@
|
|
|
</div>
|
|
|
<div class="select-item">
|
|
|
<el-select
|
|
|
- v-model="filterForm.source"
|
|
|
+ v-model="filterForm.sources"
|
|
|
placeholder="请选择来源"
|
|
|
size="medium"
|
|
|
clearable
|
|
|
style="width:100%;"
|
|
|
+ multiple
|
|
|
@change="filterChange"
|
|
|
>
|
|
|
<el-option
|
|
@@ -76,33 +96,46 @@
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in tagsOptions"
|
|
|
- :key="item"
|
|
|
- :label="item"
|
|
|
- :value="item"
|
|
|
+ :key="item.TagId"
|
|
|
+ :label="item.TagName"
|
|
|
+ :value="item.TagId"
|
|
|
/>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
<div class="select-item">
|
|
|
- <el-cascader
|
|
|
- @change="filterChange"
|
|
|
- :options="usersOptions"
|
|
|
+ <el-select
|
|
|
v-model="filterForm.users"
|
|
|
+ placeholder="请选择用户"
|
|
|
+ size="medium"
|
|
|
clearable
|
|
|
- placeholder="请选择添加人"
|
|
|
style="width:100%;"
|
|
|
- ></el-cascader>
|
|
|
+ multiple
|
|
|
+ @change="filterChange"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in usersOptions"
|
|
|
+ :key="item.AdminId"
|
|
|
+ :label="item.AdminRealName"
|
|
|
+ :value="item.AdminId"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
</div>
|
|
|
+
|
|
|
+ <!-- <div class="select-bot">
|
|
|
+ <el-button type="primary" plain>取消</el-button>
|
|
|
+ <el-button type="primary">确认</el-button>
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
<div class="select-btn" slot="reference">
|
|
|
<img src="~@/assets/icons/filter.svg">
|
|
|
+ <span class="select-num">{{selectNum}}</span>
|
|
|
<span>筛选条件</span>
|
|
|
- <span class="select-num">+{{selectNum}}</span>
|
|
|
</div>
|
|
|
</el-popover>
|
|
|
|
|
|
<el-input
|
|
|
@input="filterChange"
|
|
|
- placeholder="名称"
|
|
|
+ placeholder="标题名称"
|
|
|
v-model="filterForm.keyWord"
|
|
|
clearable
|
|
|
style="width:300px"
|
|
@@ -135,7 +168,6 @@
|
|
|
<el-table-column
|
|
|
:label="$t('Table.column_operations')"
|
|
|
align="center"
|
|
|
- v-if="!isRise"
|
|
|
>
|
|
|
<template slot-scope="{row}">
|
|
|
<div>
|
|
@@ -160,44 +192,79 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
+ <input type="file" @change="fileSelectedImport" id="file" style="display: none;">
|
|
|
+
|
|
|
<!-- 分类管理弹窗 -->
|
|
|
<classifyDia
|
|
|
:show.sync="isOpenClassifyDia"
|
|
|
+ :ResourceType="ResourceType"
|
|
|
/>
|
|
|
|
|
|
<!-- 导入excel弹窗 -->
|
|
|
<importExcelDia
|
|
|
:show.sync="isImportExcelDia"
|
|
|
+ :ResourceType="ResourceType"
|
|
|
+ @success="getTableData"
|
|
|
+ />
|
|
|
+
|
|
|
+ <!-- 导入文件信息弹窗 -->
|
|
|
+ <importFileDia
|
|
|
+ :show.sync="isImportFileDia"
|
|
|
+ :importFileUrl="importFileUrl"
|
|
|
+ :ResourceType="ResourceType"
|
|
|
+ @confirm="getTableData"
|
|
|
/>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import { eventInterface,policyInterface,pointInterface,knowInterface } from '@/api/modules/knowledge';
|
|
|
+import { eventInterface } from '@/api/modules/knowledge';
|
|
|
import classifyDia from './components/classifyDia.vue'
|
|
|
import importExcelDia from './components/importExcelDia.vue';
|
|
|
+import importFileDia from './components/importFileDia.vue';
|
|
|
import mPage from '@/components/mPage.vue'
|
|
|
export default {
|
|
|
- components: { mPage,classifyDia,importExcelDia },
|
|
|
+ components: { mPage,classifyDia,importExcelDia,importFileDia },
|
|
|
computed: {
|
|
|
- api() {
|
|
|
+ ResourceType() {
|
|
|
const apiMap = {
|
|
|
- '/knowledge_event': eventInterface,
|
|
|
- '/knowledge_policy': policyInterface,
|
|
|
- '/knowledge_viewpoint': pointInterface,
|
|
|
- '/knowledge_know': knowInterface,
|
|
|
+ '/knowledge_event': 0,
|
|
|
+ '/knowledge_policy': 1,
|
|
|
+ '/knowledge_viewpoint': 2,
|
|
|
+ '/knowledge_know': 3,
|
|
|
}
|
|
|
|
|
|
return apiMap[this.$route.path] && apiMap[this.$route.path]
|
|
|
},
|
|
|
+ titlePath() {
|
|
|
+ const titleMap = {
|
|
|
+ '/knowledge_event': '事件',
|
|
|
+ '/knowledge_policy': '政策',
|
|
|
+ '/knowledge_viewpoint': '观点',
|
|
|
+ '/knowledge_know': '知识',
|
|
|
+ }
|
|
|
+
|
|
|
+ return titleMap[this.$route.path] && titleMap[this.$route.path]
|
|
|
+ },
|
|
|
tableColums() {
|
|
|
return [
|
|
|
- { label: '开始时间',key: 'Createtime' },
|
|
|
+ { label: '开始时间',key: 'CreateTime' },
|
|
|
{ label: '标题',key: 'Title',minwidthsty:'150px' },
|
|
|
- { label: '来源',key: 'Source' },
|
|
|
- { label: '分类',key: 'ClassifyName' },
|
|
|
- { label: '标签',key: 'Tag' },
|
|
|
- { label: '添加人',key: 'Creator' },
|
|
|
+ { label: '来源',key: 'SourceFrom' },
|
|
|
+ { label: '分类',key: 'ClassifyFullName' },
|
|
|
+ { label: '标签',key: 'TagName' },
|
|
|
+ { label: '添加人',key: 'AdminRealName' },
|
|
|
]
|
|
|
+ },
|
|
|
+
|
|
|
+ selectNum() {
|
|
|
+ let num = 0;
|
|
|
+
|
|
|
+ this.filterForm.classifys.length && num++;
|
|
|
+ this.filterForm.sources.length && num++;
|
|
|
+ this.filterForm.tags.length && num++;
|
|
|
+ this.filterForm.users.length && num++;
|
|
|
+
|
|
|
+ return num
|
|
|
}
|
|
|
},
|
|
|
data() {
|
|
@@ -205,8 +272,8 @@ export default {
|
|
|
filterForm: {
|
|
|
pageNo: 1,
|
|
|
pageSize:15,
|
|
|
- classsifys: [],
|
|
|
- source: '',
|
|
|
+ classifys: [],
|
|
|
+ sources: [],
|
|
|
tags: [],
|
|
|
users: [],
|
|
|
keyWord:"",
|
|
@@ -216,26 +283,83 @@ export default {
|
|
|
tagsOptions:[],
|
|
|
usersOptions:[],
|
|
|
total: 0,
|
|
|
- tableData: [
|
|
|
- {Title: 'dwdw',Source:'wind',ClassifyName:'分类1、分类2',Createtime:'2024/9/25',Tag:'多空',Creator:'DW'},
|
|
|
- {Title: 'dwdw',Source:'wind',ClassifyName:'分类1、分类2',Createtime:'2024/9/25',Tag:'多空',Creator:'DW'},
|
|
|
- {Title: 'dwdw',Source:'wind',ClassifyName:'分类1、分类2',Createtime:'2024/9/25',Tag:'多空',Creator:'DW'},
|
|
|
- {Title: 'dwdw',Source:'wind',ClassifyName:'分类1、分类2',Createtime:'2024/9/25',Tag:'多空',Creator:'DW'},
|
|
|
- ],
|
|
|
+ tableData: [],
|
|
|
|
|
|
//分类弹窗
|
|
|
isOpenClassifyDia: false,
|
|
|
|
|
|
//excel导入弹窗
|
|
|
isImportExcelDia: false,
|
|
|
+
|
|
|
+ //文件导入弹窗
|
|
|
+ isImportFileDia: false,
|
|
|
+ importFileUrl:''
|
|
|
}
|
|
|
},
|
|
|
mounted(){
|
|
|
-
|
|
|
+ this.getClassifyOptions();
|
|
|
+ this.getSourceOptions();
|
|
|
+ this.getTagOptions()
|
|
|
+ this.getUsersOptions()
|
|
|
+ this.getTableData()
|
|
|
},
|
|
|
methods:{
|
|
|
+ async getClassifyOptions() {
|
|
|
+ const res = await eventInterface.getClassify({
|
|
|
+ ResourceType: this.ResourceType
|
|
|
+ })
|
|
|
+ if(res.Ret !== 200) return
|
|
|
+
|
|
|
+ this.classifyOptions = res.Data.List || []
|
|
|
+ },
|
|
|
+
|
|
|
+ async getSourceOptions() {
|
|
|
+ const res = await eventInterface.getSourcesList({
|
|
|
+ ResourceType: this.ResourceType
|
|
|
+ })
|
|
|
+ if(res.Ret !== 200) return
|
|
|
+
|
|
|
+ this.sourcesOptions = res.Data.List || []
|
|
|
+ },
|
|
|
+ async getTagOptions() {
|
|
|
+ const res = await eventInterface.getTagList({ResourceType:this.ResourceType})
|
|
|
+ if(res.Ret !== 200) return
|
|
|
+
|
|
|
+ this.tagsOptions=res.Data.List || []
|
|
|
+ },
|
|
|
+
|
|
|
+ async getUsersOptions() {
|
|
|
+ const res = await eventInterface.getUsersList({ ResourceType:this.ResourceType })
|
|
|
+ if(res.Ret !== 200) return
|
|
|
+
|
|
|
+ this.usersOptions=res.Data.List || []
|
|
|
+ },
|
|
|
+
|
|
|
+
|
|
|
async getTableData() {
|
|
|
+ const { pageNo,
|
|
|
+ pageSize,
|
|
|
+ classifys,
|
|
|
+ sources,
|
|
|
+ tags,
|
|
|
+ users,
|
|
|
+ keyWord } = this.filterForm;
|
|
|
+ let params = {
|
|
|
+ PageSize:pageSize,
|
|
|
+ CurrentIndex:pageNo,
|
|
|
+ ClassifyIds:classifys.join(','),
|
|
|
+ SysUserIds:users.join(','),
|
|
|
+ TagIds:tags.join(','),
|
|
|
+ Keyword:keyWord,
|
|
|
+ SourceFrom: sources.join(','),
|
|
|
+ ResourceType: this.ResourceType
|
|
|
+ }
|
|
|
+ const res = await eventInterface.getEventList(params)
|
|
|
+
|
|
|
+ if(res.Ret !==200 ) return
|
|
|
|
|
|
+ this.tableData = res.Data.List||[]
|
|
|
+ this.total = res.Data.Paging.Totals
|
|
|
},
|
|
|
|
|
|
filterChange() {
|
|
@@ -248,35 +372,92 @@ export default {
|
|
|
this.getTableData()
|
|
|
},
|
|
|
|
|
|
+ handleClearFilter() {
|
|
|
+ this.filterForm.classifys = []
|
|
|
+ this.filterForm.sources = []
|
|
|
+ this.filterForm.tags = []
|
|
|
+ this.filterForm.users = []
|
|
|
+ this.filterChange()
|
|
|
+ },
|
|
|
+
|
|
|
lookDetailHandle(item,type) {
|
|
|
const { href } = this.$router.resolve({
|
|
|
path: type==='look'?'/knowledgeDetail':'/knowledgeEdit',
|
|
|
query: {
|
|
|
- id: item.id
|
|
|
+ id: item.KnowledgeResourceId,
|
|
|
+ source: this.ResourceType
|
|
|
}
|
|
|
})
|
|
|
|
|
|
window.open(href,'_blank')
|
|
|
},
|
|
|
|
|
|
- handleDelItem(item) {
|
|
|
+ handleDelItem({KnowledgeResourceId}) {
|
|
|
this.$confirm(
|
|
|
'确定删除该事件吗?',
|
|
|
'提示',
|
|
|
{
|
|
|
type: 'warning'
|
|
|
}).then(async() => {
|
|
|
+ const res = await eventInterface.delEvent({
|
|
|
+ KnowledgeResourceId,
|
|
|
+ ResourceType: this.ResourceType
|
|
|
+ })
|
|
|
|
|
|
+ if(res.Ret !==200) return
|
|
|
+ this.$message.success('删除成功')
|
|
|
+ this.getTableData()
|
|
|
})
|
|
|
},
|
|
|
|
|
|
handleGoTagSet() {
|
|
|
this.$router.push({
|
|
|
path: '/knowledge_tag',
|
|
|
+ query: {
|
|
|
+ source: this.ResourceType
|
|
|
+ }
|
|
|
})
|
|
|
},
|
|
|
|
|
|
+
|
|
|
+ handleImport(type) {
|
|
|
+ if(type === 'file') {
|
|
|
+ $(`#file`).click()
|
|
|
+ }
|
|
|
+ },
|
|
|
+ //选择文件上传
|
|
|
+ async fileSelectedImport(){
|
|
|
+ let file = document.getElementById('file').files[0];
|
|
|
+ let reg = new RegExp(/\.pdf|\.docx|\.pptx|\.ppt$/,'i')
|
|
|
+
|
|
|
+ if(file){
|
|
|
+ if(!reg.test(file.name)) return this.$message.warning('只能上传pdf/docx/ppt等文件');
|
|
|
+ if(file.size > 5.1*1024*1024) return this.$message.warning("上传文件大小不超过50MB");
|
|
|
+
|
|
|
+ let downloadHint = this.$message({
|
|
|
+ type:"info",
|
|
|
+ message:'上传中,请稍后······',
|
|
|
+ duration:0,
|
|
|
+ iconClass:'el-icon-loading'
|
|
|
+ })
|
|
|
+
|
|
|
+ let formData = new FormData()
|
|
|
+ formData.append('File',file)
|
|
|
+ formData.append('ResourceType',this.ResourceType)
|
|
|
+
|
|
|
+ const res = await eventInterface.fileImportUpload(formData)
|
|
|
+
|
|
|
+ downloadHint.close()
|
|
|
+ if(res.Ret !== 200) return
|
|
|
+
|
|
|
+ this.importFileUrl = res.Data.FileUrl
|
|
|
+
|
|
|
+ this.isImportFileDia = true;
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
checkBtnAuth(key) {
|
|
|
+ const {isShowBtn}=this.permissionBtn
|
|
|
const authMap = {
|
|
|
'/knowledge_event': 'event',
|
|
|
'/knowledge_policy': 'policy',
|
|
@@ -284,7 +465,9 @@ export default {
|
|
|
'/knowledge_know': 'know',
|
|
|
}
|
|
|
|
|
|
- return true
|
|
|
+ let permission_prefix = authMap[this.$route.path]&&authMap[this.$route.path]
|
|
|
+
|
|
|
+ return isShowBtn('knowledgePermission',`${permission_prefix}_${key}`)
|
|
|
}
|
|
|
},
|
|
|
}
|
|
@@ -343,6 +526,14 @@ export default {
|
|
|
.select-item{
|
|
|
margin-top:20px;
|
|
|
}
|
|
|
+ .select-bot {
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ margin-top: 20px;
|
|
|
+ .el-button{
|
|
|
+ width: 120px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|
|
|
<style lang="scss">
|