修改我的收藏的问题知识库
This commit is contained in:
+4
-4
@@ -710,13 +710,13 @@
|
|||||||
/*max-width: 198px;*/
|
/*max-width: 198px;*/
|
||||||
height: 32px;
|
height: 32px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
text-align: center;
|
text-align: left;
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
/*background: #EFF1F3;*/
|
/*background: #EFF1F3;*/
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
text-overflow: ellipsis;
|
/*text-overflow: ellipsis;*/
|
||||||
white-space: nowrap;
|
/*white-space: nowrap;*/
|
||||||
overflow: hidden;
|
/*overflow: hidden;*/
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
color: #040B29;
|
color: #040B29;
|
||||||
|
|||||||
+494
-167
@@ -1,145 +1,217 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="box">
|
<div>
|
||||||
<div class="collection-search-wrapper">
|
<div class="search-detail-wrap">
|
||||||
<div class="collection-search-header">
|
<div class="box-content-left">
|
||||||
<div class="table-page-search-wrapper">
|
<div class="classification">{{$t('classification')}}:</div>
|
||||||
<a-form layout="inline" @keyup.enter.native="searchQuery">
|
<template v-for="tag in tagList">
|
||||||
<a-row :gutter="24">
|
<a-checkable-tag
|
||||||
<a-col :md="6" :sm="8">
|
:key="tag.id"
|
||||||
<div class="box-title-text">
|
:title="tag.problemLabel"
|
||||||
<div class="title-text" :title="$t('title')">
|
:checked="selectedTags.indexOf(tag.id) > -1"
|
||||||
<span>{{$t('title')}}</span>
|
@change="checked => handleChange(tag.id, checked)"
|
||||||
</div>
|
>
|
||||||
<j-input class="box-input" :placeholder="$t('PleaseEnter')+$t('title')"
|
{{ tag.problemLabel }}
|
||||||
v-model="queryParams.title"></j-input>
|
</a-checkable-tag>
|
||||||
</div>
|
</template>
|
||||||
</a-col>
|
</div>
|
||||||
<span style="float: right;overflow: hidden;margin-right: 11px"
|
<a-form layout="inline" @keyup.enter.native="onSearch">
|
||||||
class="table-page-search-submitButtons">
|
<div class="box-title-text">
|
||||||
<a-col :md="6" :sm="24">
|
<!-- <div class="title-text" :title="$t('searchContent')">-->
|
||||||
<a-button class="box-button" type="primary" @click="searchQuery">{{$t('query')}}</a-button>
|
<!-- <span>{{$t('searchContent')}}</span>-->
|
||||||
<a-button class="box-button" style="margin-left: 8px" @click="searchReset">{{$t('reset')}}</a-button>
|
<!-- </div>-->
|
||||||
</a-col>
|
<a-input-search class="box-input" :placeholder="$t('PleaseEnter')+$t('searchContent')"
|
||||||
</span>
|
allowClear
|
||||||
</a-row>
|
@search="onSearch"
|
||||||
</a-form>
|
v-model="searchStr"></a-input-search>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</a-form>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-operator">
|
<div v-if="isTrue">
|
||||||
<div class="operator-text" @click="handleBatCancel">
|
<div v-if="conList.length > 0" style="margin-top: 16px;height: calc(100vh - 260px);overflow:auto;">
|
||||||
<a-icon type="delete"/>
|
<div class="content-box" v-for="(item,index) in conList" :key="index">
|
||||||
{{ $t('BatchCancel') }}
|
<div class="content-box-top" @click="detailClcik(item)">
|
||||||
</div>
|
<span class="content-box-top-text">
|
||||||
</div>
|
{{ item.title }}
|
||||||
<div class="box-content">
|
</span>
|
||||||
<a-checkbox-group style="width: 100%" :defaultChecked="checkboxText"
|
<span class="content-box-top-color"
|
||||||
@change="checkboxTextChange" v-model="checkboxText">
|
v-if="item.problemTypeNameList && item.problemTypeNameList.length > 0"
|
||||||
<div v-for="item in conList" :key="item.collectEO.id">
|
:title="val"
|
||||||
<div style="margin-bottom: 10px;position: relative">
|
v-for="val in item.problemTypeNameList">
|
||||||
<a-checkbox :value="item.collectEO.id" class="checkbox-left"></a-checkbox>
|
{{val}}
|
||||||
<div class="text-text-right"
|
</span>
|
||||||
@click="checkedClick(item)"
|
</div>
|
||||||
:class="{ 'null-input':item.checked }">
|
<div class="content-box-content">
|
||||||
<div class="text-header">
|
<div class="content-box-content-top" @click="detailClcik(item)"
|
||||||
<a-tooltip placement="topLeft" overlayClassName="tooltip-index" :mouseEnterDelay="0.5">
|
v-html="item.contentOne">
|
||||||
<template slot="title">
|
|
||||||
<span v-html="item.title"></span>
|
|
||||||
</template>
|
|
||||||
<div class="text-header-text" style="cursor: pointer" v-html="item.title">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</a-tooltip>
|
|
||||||
</div>
|
|
||||||
<!-- <a-tooltip placement="topLeft" overlayClassName="tooltip-index" :mouseEnterDelay="0.5">-->
|
|
||||||
<!-- <template slot="title">-->
|
|
||||||
<!-- <span v-html="item.content"></span>-->
|
|
||||||
<!-- </template>-->
|
|
||||||
<div class="text-content" v-html="item.content"
|
|
||||||
>
|
|
||||||
</div>
|
|
||||||
<!-- </a-tooltip>-->
|
|
||||||
</div>
|
</div>
|
||||||
<div @click="CancelCollectionClick(item)"
|
<div class="content-box-content-botton">
|
||||||
:title="$t('CancelCollection')"
|
<div class="content-box-content-botton-text"
|
||||||
class="text-text-right-text">{{$t('CancelCollection')}}
|
v-if="item.accessoryFileNameList && item.accessoryFileNameList.length > 0"
|
||||||
|
:title="val.fileName"
|
||||||
|
v-for="val in item.accessoryFileNameList">
|
||||||
|
<span @click="fileClick(val)">{{val.fileName}}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-box-xian" @click="detailClcik(item)"></div>
|
||||||
|
<div class="content-box-button">
|
||||||
|
<div class="content-box-button-left" @click="detailClcik(item)">
|
||||||
|
<div class="content-box-button-text">
|
||||||
|
<a-icon type="user"/>
|
||||||
|
{{item.createBy}}
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text" v-if="item.standNumber">
|
||||||
|
<a-icon type="audit"/>
|
||||||
|
{{item.standNumber}}
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text" v-if="item.targetMarket_dicText">
|
||||||
|
<img src="../../../../assets/ditu.png" style="width: 15px;margin-top: -3px" alt="">
|
||||||
|
{{item.targetMarket_dicText}}
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text" v-if="item.showPermissions_dicText">
|
||||||
|
<a-icon type="eye"/>
|
||||||
|
{{item.showPermissions_dicText}}
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text">
|
||||||
|
<a-icon type="history"/>
|
||||||
|
{{item.createTime}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-right">
|
||||||
|
<div class="content-box-button-text">
|
||||||
|
<a-icon type="clock-circle" />
|
||||||
|
{{item.collectEO.createTime}}
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text"
|
||||||
|
:class="{'icon-active':item.collectEO && item.collectEO.collectStatus == 'Collect' ? true : false}"
|
||||||
|
@click="cancelCollection(item)">
|
||||||
|
<a-icon class="icon" type="star"/>
|
||||||
|
{{$t('CancelCollection')}}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a-checkbox-group>
|
</div>
|
||||||
</div>
|
<div class="noData" v-else>
|
||||||
<div class="page" v-if="conList && conList.length > 0">
|
{{$t('noData')}}
|
||||||
<a-pagination
|
</div>
|
||||||
:show-total="total => $t('total')+` ${total} `+$t('strip')"
|
<div class="page" v-if="conList.length > 0">
|
||||||
show-quick-jumper
|
<a-pagination
|
||||||
show-size-changer
|
:show-total="total => $t('total')+` ${total} `+$t('strip')"
|
||||||
:page-size.sync="pageSize"
|
show-quick-jumper
|
||||||
:total="total"
|
show-size-changer
|
||||||
:current="pageNo"
|
:page-size.sync="pageSize"
|
||||||
@change="pageOnChange"
|
:total="total"
|
||||||
@showSizeChange="SizeChange"
|
:current="pageNo"
|
||||||
/>
|
@change="pageOnChange"
|
||||||
|
@showSizeChange="SizeChange"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<problemKnowledgeBaseListView ref="problemKnowledgeBaseListViewRef"
|
||||||
|
@problemKnowledgeBase="problemKnowledgeBase" v-else/>
|
||||||
<JLoading :loading="loading">{{$t('dataLoading')}}</JLoading>
|
<JLoading :loading="loading">{{$t('dataLoading')}}</JLoading>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getAction, postAction, deleteAction, putAction } from '@/api/manage'
|
import { getAction, postAction, deleteAction, putAction } from '@/api/manage'
|
||||||
|
import problemKnowledgeBaseListView from './problemKnowledgeBaseListView'
|
||||||
import { mapGetters } from 'vuex'
|
import { mapGetters } from 'vuex'
|
||||||
|
import { Base64 } from 'js-base64'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'problemKnowledgeBaseList',
|
name: 'problemKnowledgeBaseList',
|
||||||
|
components: {
|
||||||
|
problemKnowledgeBaseListView
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
conList: [],
|
conList: [],
|
||||||
total: 0,
|
total: 0,
|
||||||
|
searchStr:'',
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
pageNo: 1,
|
pageNo: 1,
|
||||||
|
tagList:[],
|
||||||
|
isTrue: true,
|
||||||
checkboxText: [],
|
checkboxText: [],
|
||||||
checkboxList: [],
|
checkboxList: [],
|
||||||
|
selectedTags: [],
|
||||||
loading: false,
|
loading: false,
|
||||||
queryParams: {},
|
queryParams: {},
|
||||||
url: {
|
url: {
|
||||||
getInfoList: '/problemKnowledgeBase/problemKnowledgeBaseCollectEO/queryCollectPageList',
|
getInfoList: '/problemKnowledgeBase/problemKnowledgeBaseCollectEO/queryCollectPageList',
|
||||||
deleteBatch: '/problemKnowledgeBase/problemKnowledgeBaseCollectEO/deleteBatch'
|
deleteBatch: '/problemKnowledgeBase/problemKnowledgeBaseCollectEO/deleteBatch'
|
||||||
}
|
},
|
||||||
|
downLoadFileUrl: window._CONFIG['domianPreviewURL'] + '/sys/common/download',
|
||||||
|
downLoadImgUrl: window._CONFIG['domianWebImgURL'] + '/sys/common/download'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getList()
|
this.getList()
|
||||||
|
this.replacePage()
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {},
|
||||||
checkboxText: function(value) {
|
|
||||||
this.conList.forEach(val => {
|
|
||||||
val.checked = false
|
|
||||||
})
|
|
||||||
if (value.length > 0) {
|
|
||||||
this.conList.forEach(val => {
|
|
||||||
value.forEach(res => {
|
|
||||||
if (res === val.collectEO.id) {
|
|
||||||
val.checked = true
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
this.conList = [...this.conList]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
...mapGetters(['userInfo']),
|
...mapGetters(['userInfo']),
|
||||||
searchQuery() {
|
replacePage() {
|
||||||
|
getAction('/problemKnowledgeBase/problemKnowledgeBaseClassifyEO/list', {}).then((res) => {
|
||||||
|
if (res.success) {
|
||||||
|
this.tagList = res.result
|
||||||
|
} else {
|
||||||
|
this.tagList = []
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
onSearch() {
|
||||||
|
this.isTrue = true
|
||||||
this.pageNo = 1
|
this.pageNo = 1
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
checkboxTextChange(value) {
|
handleChange(tag, checked) {
|
||||||
this.checkboxText = JSON.parse(JSON.stringify(value))
|
const { selectedTags } = this
|
||||||
if (this.checkboxList && this.checkboxList.length > 0) {
|
const nextSelectedTags = checked
|
||||||
this.checkboxList.forEach(res => {
|
? [...selectedTags, tag]
|
||||||
this.checkboxText.push(res)
|
: selectedTags.filter(t => t !== tag)
|
||||||
})
|
this.selectedTags = nextSelectedTags
|
||||||
|
this.isTrue = true
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
detailClcik(val) {
|
||||||
|
this.isTrue = false
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.problemKnowledgeBaseListViewRef.getData(JSON.parse(JSON.stringify(val)))
|
||||||
|
})
|
||||||
|
},
|
||||||
|
fileClick(fileQuery) {
|
||||||
|
let fileName = fileQuery.fileName
|
||||||
|
let index1 = fileName.lastIndexOf('.')
|
||||||
|
let index2 = fileName.length
|
||||||
|
let fileSuffix = fileName.substring(index1, index2)
|
||||||
|
if (fileSuffix == '.pdf') {
|
||||||
|
window.open('/pdf/web/viewer.html?file=' + encodeURIComponent('/jero-boot/sys/common/pdf/viewFile?id=' + fileQuery.id + '&userName=' + this.userInfo().username))
|
||||||
|
} else if (fileSuffix == '.docx' || fileSuffix == '.doc') {
|
||||||
|
let url = window._CONFIG['onlinePreviewDomainURL'] + '?url=' + Base64.encode(this.downLoadFileUrl + '/' + fileQuery.id + fileSuffix)
|
||||||
|
window.open(url, '_blank')
|
||||||
|
} else if (fileSuffix == '.xlsx' || fileSuffix == '.xls') {
|
||||||
|
let url = window._CONFIG['onlinePreviewDomainURL'] + '?url=' + Base64.encode(this.downLoadFileUrl + '/' + fileQuery.id + fileSuffix)
|
||||||
|
window.open(url, '_blank')
|
||||||
|
} else if (fileSuffix == '.png' || fileSuffix == '.jpeg' || fileSuffix == '.gif' || fileSuffix == '.jpg') {
|
||||||
|
let url = window._CONFIG['onlinePreviewDomainURL'] + '?url=' + Base64.encode(this.downLoadImgUrl + '/' + fileQuery.id + fileSuffix)
|
||||||
|
window.open(url, '_blank')
|
||||||
|
} else {
|
||||||
|
downloadFile('/sys/common/downLoadFile', fileQuery.fileName, { id: fileQuery.id })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
problemKnowledgeBase() {
|
||||||
|
this.pageNo = 1
|
||||||
|
this.isTrue = true
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
|
searchQuery() {
|
||||||
|
this.pageNo = 1
|
||||||
|
this.getList()
|
||||||
|
},
|
||||||
searchReset() {
|
searchReset() {
|
||||||
this.pageNo = 1
|
this.pageNo = 1
|
||||||
this.queryParams = {}
|
this.queryParams = {}
|
||||||
@@ -178,7 +250,7 @@
|
|||||||
this.$message.warning(this.$t('selectLeastOne'))
|
this.$message.warning(this.$t('selectLeastOne'))
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
CancelCollectionClick(val) {
|
cancelCollection(val) {
|
||||||
let _this = this
|
let _this = this
|
||||||
this.$confirm({
|
this.$confirm({
|
||||||
content: _this.$t('confirmCancelCollection'),
|
content: _this.$t('confirmCancelCollection'),
|
||||||
@@ -209,11 +281,13 @@
|
|||||||
return words
|
return words
|
||||||
},
|
},
|
||||||
getList() {
|
getList() {
|
||||||
|
let selectedTags = JSON.parse(JSON.stringify(this.selectedTags))
|
||||||
let query = {
|
let query = {
|
||||||
pageNo: this.pageNo,
|
pageNo: this.pageNo,
|
||||||
pageSize: this.pageSize,
|
pageSize: this.pageSize,
|
||||||
createBy: this.userInfo().username,
|
createBy: this.userInfo().username,
|
||||||
...this.queryParams
|
searchStr: this.searchStr,
|
||||||
|
problemTypes: selectedTags.join(','),
|
||||||
}
|
}
|
||||||
this.loading = true
|
this.loading = true
|
||||||
getAction(this.url.getInfoList, query).then((res) => {
|
getAction(this.url.getInfoList, query).then((res) => {
|
||||||
@@ -253,29 +327,26 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style scoped lang="less">
|
||||||
.checkbox-left .ant-checkbox-inner {
|
.search-detail-wrap {
|
||||||
width: 18px !important;
|
width: 100%;
|
||||||
height: 18px !important;
|
overflow: hidden;
|
||||||
line-height: 18px !important;
|
/*margin: 0 auto;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.tooltip-index {
|
|
||||||
max-width: calc(100% - 300px) !important;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<style lang="less" scoped>
|
|
||||||
@import '~@assets/less/common.less';
|
|
||||||
|
|
||||||
.box-title-text {
|
.box-title-text {
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
|
width: 360px;
|
||||||
|
float: right;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
text-align: center;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title-text {
|
.title-text {
|
||||||
width: 43px;
|
width: 110px;
|
||||||
color: #000F16;
|
color: #000F16;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
@@ -289,15 +360,88 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.box-input {
|
.box-input {
|
||||||
|
/*min-width: 200px;*/
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 38px;
|
height: 38px;
|
||||||
|
margin-right: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.box-button {
|
.box-button {
|
||||||
height: 38px;
|
height: 38px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.box-content-left {
|
||||||
|
width: calc(100% - 400px);
|
||||||
|
float: left;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #040B29;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-content-content {
|
||||||
|
float: left;
|
||||||
|
width: 150px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-content-content-index {
|
||||||
|
width: 108px;
|
||||||
|
height: 40px;
|
||||||
|
background: rgba(0, 179, 190, 0.06);
|
||||||
|
border: 1px solid #00BEBE;
|
||||||
|
border-radius: 4px;
|
||||||
|
text-align: center;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #00B3BE;
|
||||||
|
line-height: 40px;
|
||||||
|
cursor: pointer;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
padding: 0 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.classification {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 14px;
|
||||||
|
color: #000F16;
|
||||||
|
margin-right: 10px;
|
||||||
|
overflow: hidden;
|
||||||
|
margin-bottom: 7px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-content-right {
|
||||||
|
width: 100%;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: right;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.operator-text-text-index {
|
||||||
|
cursor: pointer;
|
||||||
|
margin-right: 53px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #040B29;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.operator-text-text-index:last-child {
|
||||||
|
margin-right: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-content-left-text {
|
||||||
|
margin-right: 30px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
padding: 0 0 0 18px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
.checkbox-left {
|
.checkbox-left {
|
||||||
float: left;
|
float: left;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@@ -307,50 +451,45 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.text-text-right {
|
.text-text-right {
|
||||||
width: calc(100% - 152px);
|
padding: 19px 20px;
|
||||||
display: inline-block;
|
|
||||||
padding: 19px 28px;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin-left: 38px;
|
/*margin-left: 38px;*/
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.text-text-right-text {
|
|
||||||
width: 110px;
|
|
||||||
display: inline-block;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
word-break: break-word;
|
|
||||||
text-align: center;
|
|
||||||
padding: 0 6px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: 50%;
|
|
||||||
transform: translateY(-50%);
|
|
||||||
color: #00B3BE;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.null-input {
|
.null-input {
|
||||||
background-color: #F2F4F8;
|
background-color: #F2F4F8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.search-text-title {
|
||||||
|
margin-bottom: 22px;
|
||||||
|
}
|
||||||
|
|
||||||
.text-header {
|
.text-header {
|
||||||
margin-bottom: 11px;
|
margin-bottom: 11px;
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
.text-header-text {
|
.text-header-text {
|
||||||
|
margin-right: 52px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #040B29;
|
color: #040B29;
|
||||||
width: 100%;
|
display: inline-block;
|
||||||
|
max-width: calc(100% - 180px);
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
word-break: break-word;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*span {*/
|
||||||
|
/* margin-right: 52px;*/
|
||||||
|
/* font-size: 16px;*/
|
||||||
|
/* font-weight: bold;*/
|
||||||
|
/* color: #040B29;*/
|
||||||
|
/* display: inline-block;*/
|
||||||
|
/* max-width: 500px;*/
|
||||||
|
/* text-overflow: ellipsis;*/
|
||||||
|
/* white-space: nowrap;*/
|
||||||
|
/* overflow: hidden;*/
|
||||||
|
/*}*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-content {
|
.text-content {
|
||||||
@@ -366,12 +505,7 @@
|
|||||||
-webkit-line-clamp: 4;
|
-webkit-line-clamp: 4;
|
||||||
/*! autoprefixer: on;*/
|
/*! autoprefixer: on;*/
|
||||||
text-justify: inter-ideograph;
|
text-justify: inter-ideograph;
|
||||||
word-break: break-all
|
word-break: break-all;
|
||||||
}
|
|
||||||
|
|
||||||
.box-content {
|
|
||||||
padding: 0 0 0 8px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.page {
|
.page {
|
||||||
@@ -379,20 +513,17 @@
|
|||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-operation {
|
.noData {
|
||||||
margin-right: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.submitButtons {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fileText {
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
cursor: pointer;
|
text-align: center;
|
||||||
white-space: nowrap;
|
line-height: 10;
|
||||||
overflow: hidden;
|
}
|
||||||
text-overflow: ellipsis;
|
|
||||||
|
::v-deep .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
|
||||||
|
background: #00B3BE;
|
||||||
|
border: 1px solid #00BEBE;
|
||||||
|
color: #fff;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep p {
|
::v-deep p {
|
||||||
@@ -400,21 +531,217 @@
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selectText {
|
::v-deep .ant-input {
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
padding: 24px 24px 16px 24px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
border: 1px solid #E6E6E9;
|
||||||
|
border-radius: 4px;
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
|
||||||
|
.content-box-top {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
|
||||||
|
.content-box-top-text {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #040B29;
|
||||||
|
cursor: pointer;
|
||||||
|
overflow: hidden;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-top-color {
|
||||||
|
font-size: 12px;
|
||||||
|
cursor: pointer;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #00BEBE;
|
||||||
|
padding: 0 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: inline-block;
|
||||||
|
height: 22px;
|
||||||
|
line-height: 22px;
|
||||||
|
background: #DBF2F3;
|
||||||
|
border-radius: 3px;
|
||||||
|
margin-left: 6px;
|
||||||
|
max-width: 140px;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-content {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
margin-top: 16px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
|
||||||
|
.content-box-content-top {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #040B29;
|
||||||
|
display: -webkit-box;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
/*! autoprefixer: off */
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
/*! autoprefixer: on;*/
|
||||||
|
text-justify: inter-ideograph;
|
||||||
|
word-break: break-all;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-content-botton {
|
||||||
|
width: 100%;
|
||||||
|
margin-top: 10px;
|
||||||
|
|
||||||
|
.content-box-content-botton-text {
|
||||||
|
/*max-width: 198px;*/
|
||||||
|
height: 32px;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: left;
|
||||||
|
line-height: 32px;
|
||||||
|
/*background: #EFF1F3;*/
|
||||||
|
border-radius: 4px;
|
||||||
|
/*text-overflow: ellipsis;*/
|
||||||
|
/*white-space: nowrap;*/
|
||||||
|
/*word-break: break-all;*/
|
||||||
|
/*overflow: hidden;*/
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #040B29;
|
||||||
|
margin-right: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-xian {
|
||||||
|
width: 100%;
|
||||||
|
position: absolute;
|
||||||
|
border-bottom: 1px #EFF1F3 solid;
|
||||||
|
left: 0;
|
||||||
|
/*margin-top: 10px;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-button {
|
||||||
|
width: 100%;
|
||||||
|
margin-top: 26px;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
.content-box-button-left {
|
||||||
|
width: 50%;
|
||||||
|
float: left;
|
||||||
|
|
||||||
|
.content-box-button-text {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 30px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #6F7385;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-button-right {
|
||||||
|
width: 50%;
|
||||||
|
float: left;
|
||||||
|
text-align: right;
|
||||||
|
|
||||||
|
.content-box-button-text {
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 30px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #040B29;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-title-text-index {
|
||||||
|
line-height: 1.4;
|
||||||
|
display: flex;
|
||||||
|
/*align-items: center;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
.title-text-index {
|
||||||
|
width: 88px;
|
||||||
|
text-align: right;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 14px;
|
||||||
|
margin-right: 16px;
|
||||||
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
height: 42px;
|
||||||
word-break: break-word;
|
line-height: 48px;
|
||||||
|
color: #000F16;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .ant-select-selection--single {
|
.box-input-index {
|
||||||
height: 32px !important;
|
display: inline-block;
|
||||||
|
height: 38px;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
::v-deep .ant-select-selection__rendered {
|
.itemModel {
|
||||||
height: 32px !important;
|
width: 100%;
|
||||||
line-height: 32px !important;
|
display: inline-block;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Required {
|
||||||
|
color: red;
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-active {
|
||||||
|
color: #00B3BE !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text {
|
||||||
|
min-width: 16px;
|
||||||
|
text-align: left;
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 3px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<style>
|
||||||
|
.box-content-left .ant-tag {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #040B29;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-content-left .ant-tag-checkable {
|
||||||
|
padding: 9px 10px;
|
||||||
|
display: inline-block;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background: #fff;
|
||||||
|
background: rgba(4, 11, 41, 0.06);
|
||||||
|
color: #363C54;
|
||||||
|
max-width: 280px;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-content-left .ant-tag-checkable-checked {
|
||||||
|
background: #00B3BE;
|
||||||
|
border: 1px solid #00BEBE;
|
||||||
|
color: #fff;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
+790
@@ -0,0 +1,790 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<div class="content-box" style="margin-top: 16px">
|
||||||
|
<div class="content-box-top">
|
||||||
|
<a-icon type="arrow-left" @click="back" class="icon-left"/>
|
||||||
|
<span class="content-box-top-text">
|
||||||
|
{{ queryForm.title }}
|
||||||
|
</span>
|
||||||
|
<span class="content-box-top-color"
|
||||||
|
v-if="queryForm.problemTypeNameList && queryForm.problemTypeNameList.length > 0"
|
||||||
|
:title="val"
|
||||||
|
v-for="val in queryForm.problemTypeNameList">
|
||||||
|
{{val}}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="content-box-content">
|
||||||
|
<div class="content-box-content-top ql-editor" v-html="queryForm.content">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="content-box-content-botton">
|
||||||
|
<div class="content-box-content-botton-text"
|
||||||
|
v-if="queryForm.accessoryFileNameList && queryForm.accessoryFileNameList.length > 0"
|
||||||
|
v-for="item in queryForm.accessoryFileNameList">
|
||||||
|
<span @click="pdfPreview(item)" :title="item.fileName" class="file-text">{{item.fileName}}</span>
|
||||||
|
<a-icon @click="download(item)" type="download" class="icon-text"/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-box-xian"></div>
|
||||||
|
<div class="content-box-button">
|
||||||
|
<div class="content-box-button-left">
|
||||||
|
<div class="content-box-button-text">
|
||||||
|
<a-icon type="user"/>
|
||||||
|
{{queryForm.createBy}}
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text" v-if="queryForm.standNumber">
|
||||||
|
<div class="content-box-button-text" v-for="(value,key) in queryForm.standNumber.split(',')">
|
||||||
|
<a-icon type="file-markdown"/>
|
||||||
|
<span style='text-decoration: underline;cursor:pointer;' @click='detailClick(queryForm,key)'>{{value}}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text" v-if="queryForm.targetMarket_dicText">
|
||||||
|
<img src="../../../../assets/ditu.png" style="width: 15px;margin-top: -3px" alt="">
|
||||||
|
{{queryForm.targetMarket_dicText}}
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text" v-if="queryForm.showPermissions_dicText">
|
||||||
|
<a-icon type="eye" />
|
||||||
|
{{queryForm.showPermissions_dicText}}
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text">
|
||||||
|
<a-icon type="history"/>
|
||||||
|
{{queryForm.createTime}}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-right">
|
||||||
|
<div class="content-box-button-text" @click="forwardClick(queryForm)">
|
||||||
|
<a-icon type="logout"/>
|
||||||
|
{{$t('forward')}}
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text">
|
||||||
|
<a-icon type="eye"/>
|
||||||
|
<span class="text">{{queryForm.browsingHistoryCount}}</span>
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text"
|
||||||
|
:class="{'icon-active':this.isCollect}"
|
||||||
|
@click="starClick()"
|
||||||
|
>
|
||||||
|
<a-icon class="icon" type="star"/>
|
||||||
|
<span class="text">{{queryForm.collectCount}}</span>
|
||||||
|
</div>
|
||||||
|
<div class="content-box-button-text"
|
||||||
|
:class="{'icon-active':this.isPraise}"
|
||||||
|
@click="likeClick()">
|
||||||
|
<a-icon type="like"/>
|
||||||
|
<span class="text">{{queryForm.praiseCount}}</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="content-box-comment">
|
||||||
|
<div class="content-box-comment-text">
|
||||||
|
{{$t('comment')}}
|
||||||
|
</div>
|
||||||
|
<a-form-model :model="formInline" class="formAdd" :rules="rules" ref="ruleForm">
|
||||||
|
<a-row :gutter="24">
|
||||||
|
<a-col :span="24">
|
||||||
|
<div class="box-title-text">
|
||||||
|
<a-form-model-item class="itemModel" prop="commentContent">
|
||||||
|
<a-textarea :placeholder="$t('pleaseEnter')+$t('comment')"
|
||||||
|
v-model.trim="formInline.commentContent"
|
||||||
|
:rows="1"/>
|
||||||
|
</a-form-model-item>
|
||||||
|
<a-button class="header-btn submit"
|
||||||
|
:loading="loading" @click="release"
|
||||||
|
type="primary">{{$t('release')}}
|
||||||
|
</a-button>
|
||||||
|
</div>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</a-form-model>
|
||||||
|
<div class="commentContent-text" v-for="(item,index) in releaseList" :key="index">
|
||||||
|
<div class="commentContent-header">
|
||||||
|
<span class="commentContent-yuan"></span>
|
||||||
|
<span class="commentContent-title">{{item.createBy}}</span>
|
||||||
|
<span class="commentContent-time">{{item.createTime}}</span>
|
||||||
|
</div>
|
||||||
|
<div class="commentContent-content">
|
||||||
|
{{item.commentContent}}
|
||||||
|
</div>
|
||||||
|
<div class="answer-text-index"
|
||||||
|
style="margin-bottom: 14px">
|
||||||
|
<span class="answer-text" @click="messageClick(item)">
|
||||||
|
{{$t('answer')}}
|
||||||
|
</span>
|
||||||
|
<span class="answer-text"
|
||||||
|
v-if="administrators || item.createBy == userInfoQuery.username"
|
||||||
|
@click="deleteClick(item)">
|
||||||
|
{{$t('delete')}}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="commentContent-text-one" v-for="(val,index1) in item.problemKnowledgeBaseCommentVOList"
|
||||||
|
v-if="item.problemKnowledgeBaseCommentVOList && item.problemKnowledgeBaseCommentVOList.length > 0">
|
||||||
|
<div class="commentContent-header">
|
||||||
|
<!-- <span class="commentContent-yuan"></span>-->
|
||||||
|
<span class="commentContent-title">{{val.createBy}}</span>
|
||||||
|
<span class="commentContent-time">{{val.createTime}}</span>
|
||||||
|
</div>
|
||||||
|
<div class="commentContent-content">
|
||||||
|
{{val.commentContent}}
|
||||||
|
</div>
|
||||||
|
<div class="answer-text-index">
|
||||||
|
<span class="answer-text" @click="messageClick(item)">
|
||||||
|
{{$t('answer')}}
|
||||||
|
</span>
|
||||||
|
<span class="answer-text"
|
||||||
|
v-if="administrators || val.createBy == userInfoQuery.username"
|
||||||
|
@click="deleteClick(val)">
|
||||||
|
{{$t('delete')}}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<SelectedBy ref="SelectedByRef" :title="$t('forward')" @SelectedByForm="SelectedByForm"></SelectedBy>
|
||||||
|
</div>
|
||||||
|
<a-modal
|
||||||
|
:title="$t('replyToComments')"
|
||||||
|
:width="700"
|
||||||
|
:visible="visibleComment"
|
||||||
|
:confirm-loading="confirmLoading"
|
||||||
|
:maskClosable="false"
|
||||||
|
@ok="handleOkComment"
|
||||||
|
@cancel="handleCancelComment"
|
||||||
|
>
|
||||||
|
<a-form-model :model="formInlineComment" class="formAdd" :rules="rulesComment" ref="ruleFormComment">
|
||||||
|
<a-row :gutter="24">
|
||||||
|
<a-col :span="24">
|
||||||
|
<div class="box-title-text">
|
||||||
|
<div class="title-text">
|
||||||
|
<span class="Required">*</span>
|
||||||
|
<span class="title-text-text" :title="$t('replyToComments')">{{$t('replyToComments')}}</span>
|
||||||
|
</div>
|
||||||
|
<a-form-model-item class="itemModel" :prop="'replyContent'">
|
||||||
|
<a-textarea
|
||||||
|
:placeholder="$t('PleaseEnter')+$t('replyToComments')"
|
||||||
|
:disabled="false"
|
||||||
|
v-model.trim="formInlineComment.replyContent" :rows="4"/>
|
||||||
|
</a-form-model-item>
|
||||||
|
</div>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</a-form-model>
|
||||||
|
</a-modal>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getAction, postAction, downloadFile, putAction } from '@/api/manage'
|
||||||
|
import 'quill/dist/quill.core.css'
|
||||||
|
import 'quill/dist/quill.snow.css'
|
||||||
|
import 'quill/dist/quill.bubble.css'
|
||||||
|
import { quillEditor } from 'vue-quill-editor'
|
||||||
|
import SelectedBy from '@/components/SelectedBy/index'
|
||||||
|
import { mapGetters } from 'vuex'
|
||||||
|
import { Base64 } from 'js-base64'
|
||||||
|
import { deleteAction } from '../../../../api/manage'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'problemKnowledgeBaseListView',
|
||||||
|
components: {
|
||||||
|
SelectedBy
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
visibleComment: false,
|
||||||
|
administrators: false,
|
||||||
|
userInfoQuery: {},
|
||||||
|
releaseList: [],
|
||||||
|
loading: false,
|
||||||
|
formInline: {},
|
||||||
|
confirmLoading: false,
|
||||||
|
formInlineComment: {},
|
||||||
|
rulesComment: {
|
||||||
|
replyContent: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: this.$t('replyToComments') + this.$t('cannotEmpty'),
|
||||||
|
trigger: 'blur'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
max: 300,
|
||||||
|
message: this.$t('replyToComments') + this.$t('cannotExceed') + 300 + this.$t('Characters'),
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
commentContent: [
|
||||||
|
{
|
||||||
|
max: 300,
|
||||||
|
message: this.$t('comment') + this.$t('cannotExceed') + 300 + this.$t('Characters'),
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
queryBase: {},
|
||||||
|
CommentQuery: {},
|
||||||
|
queryForm: {},
|
||||||
|
isPraise: false,
|
||||||
|
downLoadFileUrl: window._CONFIG['domianPreviewURL'] + '/sys/common/download',
|
||||||
|
downLoadImgUrl: window._CONFIG['domianWebImgURL'] + '/sys/common/download',
|
||||||
|
isCollect: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.administrators = false
|
||||||
|
this.userInfoQuery = this.userInfo()
|
||||||
|
if (this.userInfo().userRoleList && this.userInfo().userRoleList.length > 0) {
|
||||||
|
this.userInfo().userRoleList.forEach(res => {
|
||||||
|
if (res.roleCode == 'admin') {
|
||||||
|
this.administrators = true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
...mapGetters(['userInfo']),
|
||||||
|
pdfPreview(fileQuery) {
|
||||||
|
let fileName = fileQuery.fileName
|
||||||
|
let index1 = fileName.lastIndexOf('.')
|
||||||
|
let index2 = fileName.length
|
||||||
|
let fileSuffix = fileName.substring(index1, index2)
|
||||||
|
if (fileSuffix == '.pdf') {
|
||||||
|
window.open('/pdf/web/viewer.html?file=' + encodeURIComponent('/jero-boot/sys/common/pdf/viewFile?id=' + fileQuery.id + '&userName=' + this.userInfo().username))
|
||||||
|
} else if (fileSuffix == '.docx' || fileSuffix == '.doc') {
|
||||||
|
let url = window._CONFIG['onlinePreviewDomainURL'] + '?url=' + Base64.encode(this.downLoadFileUrl + '/' + fileQuery.id + fileSuffix)
|
||||||
|
window.open(url, '_blank')
|
||||||
|
} else if (fileSuffix == '.xlsx' || fileSuffix == '.xls') {
|
||||||
|
let url = window._CONFIG['onlinePreviewDomainURL'] + '?url=' + Base64.encode(this.downLoadFileUrl + '/' + fileQuery.id + fileSuffix)
|
||||||
|
window.open(url, '_blank')
|
||||||
|
} else if (fileSuffix == '.png' || fileSuffix == '.jpeg' || fileSuffix == '.gif' || fileSuffix == '.jpg') {
|
||||||
|
let url = window._CONFIG['onlinePreviewDomainURL'] + '?url=' + Base64.encode(this.downLoadImgUrl + '/' + fileQuery.id + fileSuffix)
|
||||||
|
window.open(url, '_blank')
|
||||||
|
} else {
|
||||||
|
downloadFile('/sys/common/downLoadFile', fileQuery.fileName, { id: fileQuery.id })
|
||||||
|
}
|
||||||
|
},
|
||||||
|
deleteClick(item) {
|
||||||
|
let _this = this
|
||||||
|
this.$confirm({
|
||||||
|
content: _this.$t('ConfirmDelete'),
|
||||||
|
onOk() {
|
||||||
|
let url = ''
|
||||||
|
if (item.problemKnowledgeBaseId) {
|
||||||
|
url = '/problemKnowledgeBase/problemKnowledgeBaseCommentEO/deleteBatch'
|
||||||
|
} else {
|
||||||
|
url = '/project/problemKnowledgeBaseReplyEO/deleteBatch'
|
||||||
|
}
|
||||||
|
deleteAction(url, { ids: item.id }).then((res) => {
|
||||||
|
if (res.success) {
|
||||||
|
_this.$message.success(_this.$t('OperationSuccessful'))
|
||||||
|
_this.releaseData()
|
||||||
|
} else {
|
||||||
|
_this.$message.warning(res.message)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
download(item) {
|
||||||
|
downloadFile('/sys/common/downLoadFile', item.fileName, { id: item.id, userName: this.userInfo().username })
|
||||||
|
},
|
||||||
|
getData(val) {
|
||||||
|
this.queryBase = val
|
||||||
|
this.queryById()
|
||||||
|
this.releaseData()
|
||||||
|
this.viewAdd()
|
||||||
|
},
|
||||||
|
viewAdd() {
|
||||||
|
let query = {
|
||||||
|
problemKnowledgeBaseId: this.queryBase.id,
|
||||||
|
browsingUserId: this.userInfo().id
|
||||||
|
}
|
||||||
|
postAction('/problemKnowledgeBase/problemKnowledgeBaseBrowsingHistoryEO/add', query).then((res) => {
|
||||||
|
})
|
||||||
|
},
|
||||||
|
queryById() {
|
||||||
|
let query = {
|
||||||
|
id: this.queryBase.id
|
||||||
|
}
|
||||||
|
getAction('/problemKnowledgeBase/problemKnowledgeBaseEO/queryById', query).then((res) => {
|
||||||
|
if (res.success) {
|
||||||
|
this.queryForm = res.result || {}
|
||||||
|
this.queryForm = { ...this.queryForm }
|
||||||
|
if (this.queryForm.praiseEO && this.queryForm.praiseEO.praiseStatus == 'Praise') {
|
||||||
|
this.isPraise = true
|
||||||
|
} else {
|
||||||
|
this.isPraise = false
|
||||||
|
}
|
||||||
|
if (this.queryForm.collectEO && this.queryForm.collectEO.collectStatus == 'Collect') {
|
||||||
|
this.isCollect = true
|
||||||
|
} else {
|
||||||
|
this.isCollect = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
likeClick() {
|
||||||
|
let praiseStatus = ''
|
||||||
|
this.isPraise = !this.isPraise
|
||||||
|
if (this.isPraise) {
|
||||||
|
praiseStatus = 'Praise'
|
||||||
|
this.queryForm.praiseCount = this.queryForm.praiseCount + 1
|
||||||
|
} else {
|
||||||
|
praiseStatus = 'Cancel praise'
|
||||||
|
this.queryForm.praiseCount = this.queryForm.praiseCount - 1
|
||||||
|
}
|
||||||
|
let query = {
|
||||||
|
problemKnowledgeBaseId: this.queryBase.id,
|
||||||
|
praiseUserId: this.userInfo().id,
|
||||||
|
praiseStatus: praiseStatus,
|
||||||
|
id: this.queryForm.praiseEO ? this.queryForm.praiseEO.id : undefined
|
||||||
|
}
|
||||||
|
putAction('/problemKnowledgeBase/problemKnowledgeBasePraiseEO/edit', query).then((res) => {
|
||||||
|
if (!this.queryForm.praiseEO || !this.queryForm.praiseEO.id) {
|
||||||
|
this.queryById()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
starClick() {
|
||||||
|
let collectStatus = ''
|
||||||
|
this.isCollect = !this.isCollect
|
||||||
|
if (this.isCollect) {
|
||||||
|
collectStatus = 'Collect'
|
||||||
|
this.queryForm.collectCount = this.queryForm.collectCount + 1
|
||||||
|
} else {
|
||||||
|
collectStatus = 'Cancel Collect'
|
||||||
|
this.queryForm.collectCount = this.queryForm.collectCount - 1
|
||||||
|
}
|
||||||
|
let query = {
|
||||||
|
problemKnowledgeBaseId: this.queryBase.id,
|
||||||
|
collectUserId: this.userInfo().id,
|
||||||
|
collectStatus: collectStatus,
|
||||||
|
id: this.queryForm.collectEO ? this.queryForm.collectEO.id : undefined
|
||||||
|
}
|
||||||
|
putAction('/problemKnowledgeBase/problemKnowledgeBaseCollectEO/edit', query).then((res) => {
|
||||||
|
if (!this.queryForm.collectEO || !this.queryForm.collectEO.id) {
|
||||||
|
this.queryById()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
release() {
|
||||||
|
if (!this.formInline.commentContent) {
|
||||||
|
this.$message.warning(this.$t('pleaseEnter'))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.$refs.ruleForm.validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
let query = {
|
||||||
|
problemKnowledgeBaseId: this.queryBase.id,
|
||||||
|
commentContent: this.formInline.commentContent,
|
||||||
|
commentUserId: this.userInfo().id
|
||||||
|
}
|
||||||
|
this.loading = true
|
||||||
|
postAction('/problemKnowledgeBase/problemKnowledgeBaseCommentEO/add', query).then((res) => {
|
||||||
|
if (res.success) {
|
||||||
|
this.$message.success(this.$t('OperationSuccessful'))
|
||||||
|
this.$refs.ruleForm.clearValidate()
|
||||||
|
this.releaseData()
|
||||||
|
this.formInline = {}
|
||||||
|
this.loading = false
|
||||||
|
} else {
|
||||||
|
this.$message.warning(this.$t('operationFailed'))
|
||||||
|
this.loading = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleOkComment() {
|
||||||
|
this.$refs.ruleFormComment.validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
let query = {
|
||||||
|
commentId: this.CommentQuery.id,
|
||||||
|
replyContent: this.formInlineComment.replyContent
|
||||||
|
}
|
||||||
|
this.confirmLoading = true
|
||||||
|
postAction('/project/problemKnowledgeBaseReplyEO/add', query).then((res) => {
|
||||||
|
if (res.success) {
|
||||||
|
this.$message.success(this.$t('OperationSuccessful'))
|
||||||
|
this.visibleComment = false
|
||||||
|
this.confirmLoading = false
|
||||||
|
this.releaseData()
|
||||||
|
} else {
|
||||||
|
this.confirmLoading = false
|
||||||
|
this.$message.success(this.$t('operationFailed'))
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleCancelComment() {
|
||||||
|
this.visibleComment = false
|
||||||
|
},
|
||||||
|
messageClick(val) {
|
||||||
|
this.CommentQuery = val
|
||||||
|
this.visibleComment = true
|
||||||
|
this.formInlineComment = {}
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.$refs.ruleFormComment.clearValidate()
|
||||||
|
})
|
||||||
|
},
|
||||||
|
releaseData() {
|
||||||
|
let query = {
|
||||||
|
problemKnowledgeBaseId: this.queryBase.id
|
||||||
|
}
|
||||||
|
getAction('/problemKnowledgeBase/problemKnowledgeBaseCommentEO/list', query).then((res) => {
|
||||||
|
if (res.success) {
|
||||||
|
this.releaseList = res.result || []
|
||||||
|
} else {
|
||||||
|
this.releaseList = []
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
back() {
|
||||||
|
this.$emit('problemKnowledgeBase')
|
||||||
|
},
|
||||||
|
forwardClick(row) {
|
||||||
|
this.queryForm = row
|
||||||
|
this.$refs.SelectedByRef.getPush()
|
||||||
|
},
|
||||||
|
detailClick(item,key) {
|
||||||
|
let newUrl = this.$router.resolve({
|
||||||
|
path: '/docManage/library/detail',
|
||||||
|
query: {
|
||||||
|
id: item.bussDocumentLibraryId.split(',')[key]
|
||||||
|
}
|
||||||
|
})
|
||||||
|
window.open(newUrl.href, '_blank')
|
||||||
|
},
|
||||||
|
SelectedByForm(userIds) {
|
||||||
|
let query = {
|
||||||
|
userIds: userIds,
|
||||||
|
departIds: userIds,
|
||||||
|
problemKnowledgeBaseId: this.queryForm.id,
|
||||||
|
problemKnowledgeBaseTitle: this.queryForm.title
|
||||||
|
}
|
||||||
|
postAction('/problemKnowledgeBase/problemKnowledgeBaseEO/forward', query).then((res) => {
|
||||||
|
if (res.success) {
|
||||||
|
this.$message.success(this.$t('OperationSuccessful'))
|
||||||
|
this.$refs.SelectedByRef.visible = false
|
||||||
|
this.$refs.SelectedByRef.submitLoading = false
|
||||||
|
} else {
|
||||||
|
this.$message.warning(this.$t('operationFailed'))
|
||||||
|
this.$refs.SelectedByRef.submitLoading = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="less">
|
||||||
|
.content-box {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
/*padding: 24px 24px 16px 24px;*/
|
||||||
|
/*box-sizing: border-box;*/
|
||||||
|
border: 1px solid #E6E6E9;
|
||||||
|
border-radius: 4px;
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
|
||||||
|
.content-box-top {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
padding: 20px 24px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background: #F7F7F8;
|
||||||
|
border-bottom: 1px solid #E6E6E9;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.icon-left {
|
||||||
|
font-size: 16px;
|
||||||
|
margin-right: 6px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-top-text {
|
||||||
|
font-size: 18px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #040B29;
|
||||||
|
margin-left: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-top-color {
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #00BEBE;
|
||||||
|
padding: 0 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: inline-block;
|
||||||
|
height: 22px;
|
||||||
|
line-height: 22px;
|
||||||
|
background: #DBF2F3;
|
||||||
|
border-radius: 3px;
|
||||||
|
margin-left: 12px;
|
||||||
|
max-width: 120px;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-content {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
margin-top: 16px;
|
||||||
|
padding: 0 24px;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
.content-box-content-top {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #040B29;
|
||||||
|
/*display: -webkit-box;*/
|
||||||
|
/*text-overflow: ellipsis;*/
|
||||||
|
/*!*! autoprefixer: off *!*/
|
||||||
|
/*-webkit-box-orient: vertical;*/
|
||||||
|
/*-webkit-line-clamp: 2;*/
|
||||||
|
/*!*! autoprefixer: on;*!*/
|
||||||
|
/*text-justify: inter-ideograph;*/
|
||||||
|
/*overflow: hidden;*/
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-content-botton {
|
||||||
|
width: 100%;
|
||||||
|
margin-top: 10px;
|
||||||
|
|
||||||
|
.content-box-content-botton-text {
|
||||||
|
/*max-width: 200px;*/
|
||||||
|
/*min-width: 120px;*/
|
||||||
|
height: 32px;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 32px;
|
||||||
|
/*padding: 0 10px;*/
|
||||||
|
/*background: #EFF1F3;*/
|
||||||
|
border-radius: 4px;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #040B29;
|
||||||
|
margin-right: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
.file-text {
|
||||||
|
width: calc(100% - 30px);
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-decoration: underline;
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 6px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-text {
|
||||||
|
width: 24px;
|
||||||
|
font-size: 16px;
|
||||||
|
overflow: hidden;
|
||||||
|
margin-bottom: 9px;
|
||||||
|
color: #00B3BE;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-xian {
|
||||||
|
width: 100%;
|
||||||
|
position: absolute;
|
||||||
|
border-bottom: 1px #EFF1F3 solid;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-button {
|
||||||
|
width: 100%;
|
||||||
|
margin-top: 32px;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0 24px 16px 24px;
|
||||||
|
border-bottom: 1px #EFF1F3 solid;
|
||||||
|
|
||||||
|
.content-box-button-left {
|
||||||
|
width: 50%;
|
||||||
|
float: left;
|
||||||
|
|
||||||
|
.content-box-button-text {
|
||||||
|
display: inline-block;
|
||||||
|
margin-right: 30px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #6F7385;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-button-right {
|
||||||
|
width: 50%;
|
||||||
|
float: left;
|
||||||
|
text-align: right;
|
||||||
|
|
||||||
|
.content-box-button-text {
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 30px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #040B29;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-box-comment {
|
||||||
|
width: 100%;
|
||||||
|
padding: 0 24px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
.content-box-comment-text {
|
||||||
|
height: 60px;
|
||||||
|
line-height: 60px;
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #000F16;
|
||||||
|
}
|
||||||
|
|
||||||
|
.commentContent-text {
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
|
||||||
|
.commentContent-header {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.commentContent-yuan {
|
||||||
|
display: inline-block;
|
||||||
|
width: 5px;
|
||||||
|
height: 5px;
|
||||||
|
background: #00BEBE;
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.commentContent-title {
|
||||||
|
font-size: 14px;
|
||||||
|
margin-left: 8px;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #040B29;
|
||||||
|
}
|
||||||
|
|
||||||
|
.commentContent-time {
|
||||||
|
font-size: 14px;
|
||||||
|
margin-left: 8px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #6F7385;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.commentContent-content {
|
||||||
|
width: 100%;
|
||||||
|
margin-left: 12px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #040B29;
|
||||||
|
margin-top: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.answer-text-index {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.answer-text {
|
||||||
|
display: inline-block;
|
||||||
|
padding: 3px 14px;
|
||||||
|
background: #FFFFFF;
|
||||||
|
border: 1px solid #E6E6E9;
|
||||||
|
border-radius: 3px;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #040B29;
|
||||||
|
margin-left: 12px;
|
||||||
|
margin-top: 6px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.commentContent-text-one {
|
||||||
|
width: 100%;
|
||||||
|
margin-left: 12px;
|
||||||
|
background: #F6F7FA;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 20px 20px 0 20px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.commentContent-text-one:last-child {
|
||||||
|
padding-bottom: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-title-text {
|
||||||
|
line-height: 1.4;
|
||||||
|
display: flex;
|
||||||
|
/*align-items: center;*/
|
||||||
|
}
|
||||||
|
|
||||||
|
.title-text {
|
||||||
|
width: 88px;
|
||||||
|
text-align: right;
|
||||||
|
display: inline-block;
|
||||||
|
font-weight: 500;
|
||||||
|
font-size: 14px;
|
||||||
|
margin-right: 16px;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
height: 42px;
|
||||||
|
line-height: 48px;
|
||||||
|
color: #000F16;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box-input {
|
||||||
|
display: inline-block;
|
||||||
|
height: 38px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.itemModel {
|
||||||
|
width: 100%;
|
||||||
|
display: inline-block;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header-btn {
|
||||||
|
height: 38px;
|
||||||
|
margin-left: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-active {
|
||||||
|
color: #00B3BE !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text {
|
||||||
|
min-width: 16px;
|
||||||
|
text-align: left;
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Required {
|
||||||
|
color: red;
|
||||||
|
margin-right: 4px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user