|
@@ -3,25 +3,27 @@
|
|
<div class="content">
|
|
<div class="content">
|
|
<div class="title">{{this.knowledgeForm.bastype==1?'新增文档知识':this.knowledgeForm.bastype==2?'新增维基知识':'新增知识'}}</div>
|
|
<div class="title">{{this.knowledgeForm.bastype==1?'新增文档知识':this.knowledgeForm.bastype==2?'新增维基知识':'新增知识'}}</div>
|
|
<a-form-model ref="knowledgeRef" :rules="knowledgeRules" :model="knowledgeForm" layout="inline" >
|
|
<a-form-model ref="knowledgeRef" :rules="knowledgeRules" :model="knowledgeForm" layout="inline" >
|
|
- <a-form-model-item class="knowledgeAddUpdateLabel oneline" label="所选分类:" prop="categoryId" style="font-size:0.93vw">
|
|
|
|
- <a-cascader v-model="knowledgeForm.categoryId"
|
|
|
|
- :popupStyle="{
|
|
|
|
- maxWidth: widthVar + 'px',
|
|
|
|
- 'overflow-x': 'auto'
|
|
|
|
- }"
|
|
|
|
- @popupVisibleChange="popupVisibleChange"
|
|
|
|
- class="addItemBox scroll-ckunk"
|
|
|
|
- :getPopupContainer="triggerNode => { return triggerNode.parentNode }"
|
|
|
|
- :options="classifyList"
|
|
|
|
- :load-data="loadData"
|
|
|
|
- :fieldNames="{ label: 'name', value: 'pkId', children: 'children' }"
|
|
|
|
- placeholder="请选择"
|
|
|
|
- changeOnSelect
|
|
|
|
- popupClassName="knowledgeCascader">
|
|
|
|
- <a-icon slot="suffixIcon" type="caret-down" class="classifyIconBox"/>
|
|
|
|
- </a-cascader>
|
|
|
|
|
|
+ <a-form-model-item class="knowledgeAddUpdateLabel oneline" label="所选分类:" prop="categoryId" style="font-size:0.93vw;width:46.04vw">
|
|
|
|
+ <a-tooltip placement="top" :title="categoryName">
|
|
|
|
+ <a-cascader v-model="knowledgeForm.categoryId"
|
|
|
|
+ :popupStyle="{
|
|
|
|
+ maxWidth: widthVar + 'px',
|
|
|
|
+ 'overflow-x': 'auto'
|
|
|
|
+ }"
|
|
|
|
+ @popupVisibleChange="popupVisibleChange"
|
|
|
|
+ class="addItemBox scroll-ckunk"
|
|
|
|
+ :getPopupContainer="triggerNode => { return triggerNode.parentNode }"
|
|
|
|
+ :options="classifyList"
|
|
|
|
+ :load-data="loadData"
|
|
|
|
+ :fieldNames="{ label: 'name', value: 'pkId', children: 'children' }"
|
|
|
|
+ placeholder="请选择"
|
|
|
|
+ changeOnSelect
|
|
|
|
+ popupClassName="knowledgeCascader">
|
|
|
|
+ <a-icon slot="suffixIcon" type="caret-down" class="classifyIconBox"/>
|
|
|
|
+ </a-cascader>
|
|
|
|
+ </a-tooltip>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
- <a-form-model-item v-if="!this.knowledgeForm.bastype" class="knowledgeAddUpdateLabel oneline" label="知识类型:" prop="type" style="margin-top: -5px;">
|
|
|
|
|
|
+ <a-form-model-item v-if="!this.knowledgeForm.bastype" class="knowledgeAddUpdateLabel oneline" label="知识类型:" prop="type" style="margin-top: -5px;width:46.04vw;">
|
|
<a-select class="addItemBox" v-model="knowledgeForm.type" placeholder="请选择" :disabled="!!this.knowledgeForm.bastype">
|
|
<a-select class="addItemBox" v-model="knowledgeForm.type" placeholder="请选择" :disabled="!!this.knowledgeForm.bastype">
|
|
<a-icon slot="suffixIcon" type="caret-down" style="font-size: 1vw;"/>
|
|
<a-icon slot="suffixIcon" type="caret-down" style="font-size: 1vw;"/>
|
|
<a-select-option class="dropdownClassli" v-for="(item,index) in knowledgeList" :key="index" :value="item.value">
|
|
<a-select-option class="dropdownClassli" v-for="(item,index) in knowledgeList" :key="index" :value="item.value">
|
|
@@ -30,11 +32,13 @@
|
|
</a-select>
|
|
</a-select>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
<a-form-model-item class="knowledgeAddUpdateLabel oneline" label="知识标题:" prop="titles" style="width:46.04vw;margin-top: -5px;">
|
|
<a-form-model-item class="knowledgeAddUpdateLabel oneline" label="知识标题:" prop="titles" style="width:46.04vw;margin-top: -5px;">
|
|
- <a-input @change='titlesChange' class="addItemBox" :maxLength="60" v-model="knowledgeForm.titles" placeholder="请输入" >
|
|
|
|
- <div slot="suffix" style="color: #C0C0C0;">
|
|
|
|
- {{titlesNum}}
|
|
|
|
- </div>
|
|
|
|
- </a-input>
|
|
|
|
|
|
+ <a-tooltip placement="top" :title="knowledgeForm.titles">
|
|
|
|
+ <a-input @change='titlesChange' class="addItemBox" :maxLength="60" v-model="knowledgeForm.titles" placeholder="请输入" >
|
|
|
|
+ <div slot="suffix" style="color: #C0C0C0;">
|
|
|
|
+ {{titlesNum}}
|
|
|
|
+ </div>
|
|
|
|
+ </a-input>
|
|
|
|
+ </a-tooltip>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
<a-form-model-item class="knowledgeAddUpdateLabel oneline" label="编辑简介:" prop="summary" style="width:calc( 46.04vw );">
|
|
<a-form-model-item class="knowledgeAddUpdateLabel oneline" label="编辑简介:" prop="summary" style="width:calc( 46.04vw );">
|
|
<a-input @change='summaryChange' class="textareaBox" suffix="100" :maxLength="100" v-model="knowledgeForm.summary" type="textarea" :autosize="{minRows: 3, maxRows: 6}" placeholder="请输入" >
|
|
<a-input @change='summaryChange' class="textareaBox" suffix="100" :maxLength="100" v-model="knowledgeForm.summary" type="textarea" :autosize="{minRows: 3, maxRows: 6}" placeholder="请输入" >
|
|
@@ -91,6 +95,11 @@
|
|
<a-select class="addItemBox" style="width:100%;" v-model="authName" :showArrow="false" :open="false" placeholder="请选择您建议的权限范围"></a-select>
|
|
<a-select class="addItemBox" style="width:100%;" v-model="authName" :showArrow="false" :open="false" placeholder="请选择您建议的权限范围"></a-select>
|
|
</div>
|
|
</div>
|
|
</a-form-model-item>
|
|
</a-form-model-item>
|
|
|
|
+ <!-- <a-form-model-item label="自定义节点" class="knowledgeAddUpdateLabel oneline" style="width:calc( 46.04vw );" v-if="knowledgeForm.type==1" prop="customNodes">
|
|
|
|
+ <div @click="handleAuthNewClickshow">
|
|
|
|
+ <a-select class="addItemBox" style="width:100%;" v-model="customNodesName" :showArrow="false" :open="false" placeholder="请选择"></a-select>
|
|
|
|
+ </div>
|
|
|
|
+ </a-form-model-item> -->
|
|
<template v-if="showOnlyOffice">
|
|
<template v-if="showOnlyOffice">
|
|
<div class='qualityManual-container-office'>
|
|
<div class='qualityManual-container-office'>
|
|
<vab-only-office :option='option' />
|
|
<vab-only-office :option='option' />
|
|
@@ -100,7 +109,8 @@
|
|
<div class="button-group" style="width:100%;display:flex;justify-content:flex-end;">
|
|
<div class="button-group" style="width:100%;display:flex;justify-content:flex-end;">
|
|
<a-button style="background:#406CC4;color:#fff;margin-right: 1.25vw;" @click="handleSaveClick(1)">提交</a-button>
|
|
<a-button style="background:#406CC4;color:#fff;margin-right: 1.25vw;" @click="handleSaveClick(1)">提交</a-button>
|
|
<a-button style="margin-right: 1.25vw;" @click="handleSaveClick(0)">暂存</a-button>
|
|
<a-button style="margin-right: 1.25vw;" @click="handleSaveClick(0)">暂存</a-button>
|
|
- <a-button @click="$router.back()">取消</a-button>
|
|
|
|
|
|
+ <!-- <a-button @click="$router.back()">取消</a-button> -->
|
|
|
|
+ <a-button @click="cancle">取消</a-button>
|
|
</div>
|
|
</div>
|
|
</a-form-model>
|
|
</a-form-model>
|
|
</div>
|
|
</div>
|
|
@@ -124,7 +134,21 @@
|
|
@transCheckedTargets="transCheckedTargets"
|
|
@transCheckedTargets="transCheckedTargets"
|
|
@returnSequencesInfo="handleSequencesChange"
|
|
@returnSequencesInfo="handleSequencesChange"
|
|
@returnGradeInfo="handleGradeChange" />
|
|
@returnGradeInfo="handleGradeChange" />
|
|
- </a-modal>
|
|
|
|
|
|
+ </a-modal>
|
|
|
|
+ <!-- <a-modal
|
|
|
|
+ v-model="showAuditNewFlag"
|
|
|
|
+ class="chooseAuthor"
|
|
|
|
+ width="800"
|
|
|
|
+ title="员工选择"
|
|
|
|
+ centered
|
|
|
|
+ okText="保存"
|
|
|
|
+ @ok="handleSaveNewOk"
|
|
|
|
+ >
|
|
|
|
+ <org-people-new
|
|
|
|
+ ref="orgModalRef"
|
|
|
|
+ isOnlyOrg
|
|
|
|
+ ></org-people-new>
|
|
|
|
+ </a-modal> -->
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -134,8 +158,9 @@ import wordIcon from '@/assets/img/warehouse/wordIcon.png'
|
|
import { ACCESS_TOKEN } from '@/store/mutation-types';
|
|
import { ACCESS_TOKEN } from '@/store/mutation-types';
|
|
import editor from '../components/editor'
|
|
import editor from '../components/editor'
|
|
import orgPeople from '../components/orgPeople'
|
|
import orgPeople from '../components/orgPeople'
|
|
|
|
+import orgPeopleNew from './components/orgPeople'
|
|
import vabOnlyOffice from '../components/onlyOffice'
|
|
import vabOnlyOffice from '../components/onlyOffice'
|
|
-import { getCategoryId } from './aJs/getClassifyTree'
|
|
|
|
|
|
+import { getCategory,getCategoryId,getCategoryName } from './aJs/getClassifyTree'
|
|
import api from '@/api/knowledge/warehouseIndex'
|
|
import api from '@/api/knowledge/warehouseIndex'
|
|
import contentData from '@/api/knowledge/contentData'
|
|
import contentData from '@/api/knowledge/contentData'
|
|
export default {
|
|
export default {
|
|
@@ -143,13 +168,15 @@ export default {
|
|
components: {
|
|
components: {
|
|
editor,
|
|
editor,
|
|
vabOnlyOffice,
|
|
vabOnlyOffice,
|
|
- orgPeople
|
|
|
|
|
|
+ orgPeople,
|
|
|
|
+ orgPeopleNew
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
widthVar:'',
|
|
widthVar:'',
|
|
isShowOrg:true,
|
|
isShowOrg:true,
|
|
showAuditFlag:false,
|
|
showAuditFlag:false,
|
|
|
|
+ showAuditNewFlag: false,
|
|
loading:false,
|
|
loading:false,
|
|
api,
|
|
api,
|
|
add,
|
|
add,
|
|
@@ -172,8 +199,10 @@ export default {
|
|
organizationId: ["C0000"],
|
|
organizationId: ["C0000"],
|
|
organizationName: ["惠科集团"],
|
|
organizationName: ["惠科集团"],
|
|
organizationTree: ["惠科集团"]
|
|
organizationTree: ["惠科集团"]
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ // customNodes: []
|
|
},
|
|
},
|
|
|
|
+ customNodesName: undefined,
|
|
options: [
|
|
options: [
|
|
{
|
|
{
|
|
value: 'zhejiang',
|
|
value: 'zhejiang',
|
|
@@ -282,7 +311,10 @@ export default {
|
|
sequencesInfo: {},
|
|
sequencesInfo: {},
|
|
// 职等
|
|
// 职等
|
|
gradesInfo: {},
|
|
gradesInfo: {},
|
|
- organizationIdsInfo: {}
|
|
|
|
|
|
+ organizationIdsInfo: {},
|
|
|
|
+ categoryName: '',
|
|
|
|
+ classifyName: '',
|
|
|
|
+ timer: null
|
|
}
|
|
}
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
@@ -294,11 +326,15 @@ export default {
|
|
if(this.$route.query.categoryId&&this.$route.query.categoryId!='999') {
|
|
if(this.$route.query.categoryId&&this.$route.query.categoryId!='999') {
|
|
this.knowledgeForm.categoryId = this.$route.query.categoryId.split(',')
|
|
this.knowledgeForm.categoryId = this.$route.query.categoryId.split(',')
|
|
}
|
|
}
|
|
|
|
+ if(this.$route.query.name) {
|
|
|
|
+ this.classifyName = this.$route.query.name
|
|
|
|
+ }
|
|
let pkId = this.$route.query.pkId
|
|
let pkId = this.$route.query.pkId
|
|
if(pkId) {
|
|
if(pkId) {
|
|
this.pkId = pkId
|
|
this.pkId = pkId
|
|
api.info({pkId:pkId,isPc:1}).then(res => {
|
|
api.info({pkId:pkId,isPc:1}).then(res => {
|
|
this.knowledgeForm.categoryId = getCategoryId(res.data.knowledgeCategoryAdminVo)
|
|
this.knowledgeForm.categoryId = getCategoryId(res.data.knowledgeCategoryAdminVo)
|
|
|
|
+ this.categoryName = getCategory(res.data.knowledgeCategoryAdminVo)
|
|
this.knowledgeForm.type = res.data.type.toString()
|
|
this.knowledgeForm.type = res.data.type.toString()
|
|
this.knowledgeForm.titles = res.data.titles
|
|
this.knowledgeForm.titles = res.data.titles
|
|
this.knowledgeForm.summary = res.data.summary
|
|
this.knowledgeForm.summary = res.data.summary
|
|
@@ -330,9 +366,6 @@ export default {
|
|
this.sequencesInfo.gradeName = organizationInfo.gradeName
|
|
this.sequencesInfo.gradeName = organizationInfo.gradeName
|
|
this.gradesInfo.gradeLevelId = organizationInfo.gradeLevelId
|
|
this.gradesInfo.gradeLevelId = organizationInfo.gradeLevelId
|
|
this.gradesInfo.gradeLevelName = organizationInfo.gradeLevelName
|
|
this.gradesInfo.gradeLevelName = organizationInfo.gradeLevelName
|
|
- // console.log(this.checkedTargets)
|
|
|
|
- // console.log(this.sequencesInfo)
|
|
|
|
- // console.log(this.gradeLevelId)
|
|
|
|
this.accessAuthority = info.join('/')
|
|
this.accessAuthority = info.join('/')
|
|
this.authName = info.join('/')
|
|
this.authName = info.join('/')
|
|
}
|
|
}
|
|
@@ -368,6 +401,7 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
|
|
+ this.initDraft()
|
|
let innerWidth = window.innerWidth
|
|
let innerWidth = window.innerWidth
|
|
|
|
|
|
// 计算
|
|
// 计算
|
|
@@ -388,16 +422,56 @@ export default {
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}, 1000)*/
|
|
}, 1000)*/
|
|
-
|
|
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ initDraft() {
|
|
|
|
+ // 每隔3分钟自动存入草稿
|
|
|
|
+ let that = this
|
|
|
|
+ clearTimeout(this.timer)
|
|
|
|
+ this.timer = setTimeout(function(){
|
|
|
|
+ // 存草稿
|
|
|
|
+ that.saveDraft()
|
|
|
|
+ }, 60000*3)
|
|
|
|
+ },
|
|
|
|
+ saveDraft() {
|
|
|
|
+ let info = {
|
|
|
|
+ ...this.knowledgeForm,
|
|
|
|
+ isDraft: 0
|
|
|
|
+ }
|
|
|
|
+ if(this.knowledgeForm.categoryId.length) {
|
|
|
|
+ info.categoryId = this.knowledgeForm.categoryId.slice(-1)[0]
|
|
|
|
+ } else {
|
|
|
|
+ info.categoryId = ''
|
|
|
|
+ }
|
|
|
|
+ if(!this.pkId) {
|
|
|
|
+ api.create(info).then(res => {
|
|
|
|
+ if(res.code == 200) {
|
|
|
|
+ clearTimeout(this.timer)
|
|
|
|
+ this.pkId = res.data
|
|
|
|
+ this.initDraft()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ api.save({...info, pkId: this.pkId}).then(res => {
|
|
|
|
+ if(res.code == 200) {
|
|
|
|
+ clearTimeout(this.timer)
|
|
|
|
+ console.log(res)
|
|
|
|
+ this.initDraft()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ },
|
|
handleAuthClickshow() {
|
|
handleAuthClickshow() {
|
|
this.organizationIdsInfo = this.knowledgeForm.organizationIds
|
|
this.organizationIdsInfo = this.knowledgeForm.organizationIds
|
|
this.showAuditFlag = true
|
|
this.showAuditFlag = true
|
|
},
|
|
},
|
|
|
|
+ handleAuthNewClickshow() {
|
|
|
|
+ this.showAuditNewFlag = true
|
|
|
|
+ },
|
|
//分类修改数据
|
|
//分类修改数据
|
|
popupVisibleChange(value) {
|
|
popupVisibleChange(value) {
|
|
if(value==false){
|
|
if(value==false){
|
|
|
|
+ this.categoryName = getCategoryName(this.classifyList,this.knowledgeForm.categoryId)
|
|
this.getApprover()
|
|
this.getApprover()
|
|
}
|
|
}
|
|
},
|
|
},
|
|
@@ -450,6 +524,22 @@ export default {
|
|
}
|
|
}
|
|
this.showAuditFlag = false
|
|
this.showAuditFlag = false
|
|
},
|
|
},
|
|
|
|
+ handleSaveNewOk() {
|
|
|
|
+ let info1 = this.$refs.orgModalRef.personId
|
|
|
|
+ let info2 = this.$refs.orgModalRef.personIdArr
|
|
|
|
+ let num = this.$refs.orgModalRef.queryParam.pageNo - 1
|
|
|
|
+ info2[num] = []
|
|
|
|
+ if(info2.length) {
|
|
|
|
+ for(let i of info2) {
|
|
|
|
+ if(i && i.length) {
|
|
|
|
+ info1.push(...i)
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ this.customNodesName = info1.map(item => item.split('/')[0]).join('/')
|
|
|
|
+ this.knowledgeForm.customNodes = info1.map(item => item.split('/')[0]).join(',')
|
|
|
|
+ this.showAuditNewFlag = false
|
|
|
|
+ },
|
|
// title修改限制数量
|
|
// title修改限制数量
|
|
titlesChange(){
|
|
titlesChange(){
|
|
this.titlesNum=60-this.knowledgeForm.titles.length
|
|
this.titlesNum=60-this.knowledgeForm.titles.length
|
|
@@ -479,7 +569,31 @@ export default {
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ },
|
|
|
|
+ cancle() {
|
|
|
|
+ if(this.classifyName) {
|
|
|
|
+ let queryData = {
|
|
|
|
+ categoryName: this.classifyName,
|
|
|
|
+ isBack: 1,
|
|
|
|
+ type: this.$route.query.type,
|
|
|
|
+ tapAction: this.$route.query.tapAction,
|
|
|
|
+ }
|
|
|
|
+ if(this.knowledgeForm.categoryId[0]) {
|
|
|
|
+ queryData.parentp = this.knowledgeForm.categoryId[0]
|
|
|
|
+ if(this.knowledgeForm.categoryId[1]) {
|
|
|
|
+ queryData.parent = this.knowledgeForm.categoryId[1]
|
|
|
|
+ if(this.knowledgeForm.categoryId[2]) {
|
|
|
|
+ queryData.categoryId = this.knowledgeForm.categoryId[2]
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ this.$router.replace({
|
|
|
|
+ name: "contentData",
|
|
|
|
+ query: queryData,
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ this.$router.back()
|
|
|
|
+ }
|
|
},
|
|
},
|
|
saveData(){
|
|
saveData(){
|
|
let that = this
|
|
let that = this
|
|
@@ -491,12 +605,13 @@ export default {
|
|
this.isSubmit = true
|
|
this.isSubmit = true
|
|
api.create({...this.knowledgeForm, categoryId: this.knowledgeForm.categoryId.slice(-1)[0]}).then(res => {
|
|
api.create({...this.knowledgeForm, categoryId: this.knowledgeForm.categoryId.slice(-1)[0]}).then(res => {
|
|
if(res.code == 200) {
|
|
if(res.code == 200) {
|
|
- if(res.message.indexOf('知识失败')>-1){
|
|
|
|
|
|
+ if(res.message && res.message.indexOf('知识失败')>-1){
|
|
this.$message.error(res.message);
|
|
this.$message.error(res.message);
|
|
this.isSubmit = false
|
|
this.isSubmit = false
|
|
}else{
|
|
}else{
|
|
|
|
+ this.$message.success(res.message);
|
|
setTimeout(function(){
|
|
setTimeout(function(){
|
|
- that.$router.back();
|
|
|
|
|
|
+ that.cancle()
|
|
that.isSubmit = false;
|
|
that.isSubmit = false;
|
|
},2000)
|
|
},2000)
|
|
}
|
|
}
|
|
@@ -505,6 +620,7 @@ export default {
|
|
} else {
|
|
} else {
|
|
api.save({...this.knowledgeForm, categoryId: this.knowledgeForm.categoryId.slice(-1)[0], pkId: this.pkId}).then(res => {
|
|
api.save({...this.knowledgeForm, categoryId: this.knowledgeForm.categoryId.slice(-1)[0], pkId: this.pkId}).then(res => {
|
|
if(res.code == 200) {
|
|
if(res.code == 200) {
|
|
|
|
+ this.$message.success(res.message);
|
|
setTimeout(() =>
|
|
setTimeout(() =>
|
|
this.$router.back()
|
|
this.$router.back()
|
|
,2000)
|
|
,2000)
|
|
@@ -527,6 +643,33 @@ export default {
|
|
contentData.getAllKnowledgeCategory().then((res) =>{
|
|
contentData.getAllKnowledgeCategory().then((res) =>{
|
|
this.categoryData(res.data)
|
|
this.categoryData(res.data)
|
|
this.classifyList=res.data
|
|
this.classifyList=res.data
|
|
|
|
+ // 通过分类id获取分类名
|
|
|
|
+ if(this.knowledgeForm.categoryId && this.knowledgeForm.categoryId.length) {
|
|
|
|
+ this.categoryName = getCategoryName(this.classifyList,this.knowledgeForm.categoryId)
|
|
|
|
+ }
|
|
|
|
+ // const result = []
|
|
|
|
+ // let num = 0
|
|
|
|
+ // const _getParentCategoryName = (info) => {
|
|
|
|
+ // // if(info!=null){
|
|
|
|
+ // // result.push(info.pkId)
|
|
|
|
+ // // if(info.parents) {
|
|
|
|
+ // // _getParentCategoryName(info.parents)
|
|
|
|
+ // // }
|
|
|
|
+ // // }
|
|
|
|
+ // for(let i of info) {
|
|
|
|
+ // if(i.pkId == this.knowledgeForm.categoryId[num]) {
|
|
|
|
+ // console.log(i)
|
|
|
|
+ // result.push(i.name)
|
|
|
|
+ // num+=1
|
|
|
|
+ // if(i.children && i.children.length) {
|
|
|
|
+ // _getParentCategoryName(i.children)
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // _getParentCategoryName(res.data)
|
|
|
|
+ // this.categoryName = result.join('|')
|
|
|
|
+ // }
|
|
})
|
|
})
|
|
/*let res = await api.getKnowledgeCategory(0)
|
|
/*let res = await api.getKnowledgeCategory(0)
|
|
this.classifyList = res.data.children.map(item => {
|
|
this.classifyList = res.data.children.map(item => {
|
|
@@ -619,6 +762,9 @@ export default {
|
|
this.option.isPrint = false
|
|
this.option.isPrint = false
|
|
this.showOnlyOffice = true
|
|
this.showOnlyOffice = true
|
|
}
|
|
}
|
|
|
|
+ },
|
|
|
|
+ beforeDestroy() {
|
|
|
|
+ clearTimeout(this.timer)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
</script>
|
|
@@ -727,10 +873,10 @@ export default {
|
|
border: none;
|
|
border: none;
|
|
}
|
|
}
|
|
/deep/ .ant-table-thead > tr > th {
|
|
/deep/ .ant-table-thead > tr > th {
|
|
- padding: 20px!important;
|
|
|
|
|
|
+ height: 37.8px!important;
|
|
}
|
|
}
|
|
/deep/ .ant-table-tbody > tr > td {
|
|
/deep/ .ant-table-tbody > tr > td {
|
|
- padding: 20px!important;
|
|
|
|
|
|
+ height: 37.8px!important;
|
|
}
|
|
}
|
|
.qualityManual-container-office {
|
|
.qualityManual-container-office {
|
|
width: 100%;
|
|
width: 100%;
|
|
@@ -769,7 +915,7 @@ export default {
|
|
}
|
|
}
|
|
.addItemBox{
|
|
.addItemBox{
|
|
height: 2.7vw;
|
|
height: 2.7vw;
|
|
- width: 21.71875vw;
|
|
|
|
|
|
+ /* width: 21.71875vw; */
|
|
font-size: 0.9375vw;
|
|
font-size: 0.9375vw;
|
|
}
|
|
}
|
|
.addItemBox /deep/input{
|
|
.addItemBox /deep/input{
|
|
@@ -869,4 +1015,7 @@ export default {
|
|
/deep/ .ant-cascader-menu:last-child {
|
|
/deep/ .ant-cascader-menu:last-child {
|
|
margin-right: 0!important;
|
|
margin-right: 0!important;
|
|
}
|
|
}
|
|
|
|
+.chooseAuthor /deep/.ant-modal-body {
|
|
|
|
+ padding: 0px;
|
|
|
|
+}
|
|
</style>
|
|
</style>
|