[update] 文档对比的弹框拆分出来
This commit is contained in:
@@ -204,7 +204,7 @@
|
|||||||
width: calc(100% - 130px);
|
width: calc(100% - 130px);
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
height: 40px;
|
height: 100%;
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
/deep/ .ant-form-item-control-wrapper {
|
/deep/ .ant-form-item-control-wrapper {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|||||||
@@ -231,31 +231,32 @@ export default {
|
|||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
getList () {
|
getList () {
|
||||||
const queryParam = JSON.parse(JSON.stringify(this.queryParam))
|
this.dataSource = [{ id: 1, serialNumberLeft: '11' }]
|
||||||
Object.keys(queryParam).forEach(val => {
|
// const queryParam = JSON.parse(JSON.stringify(this.queryParam))
|
||||||
if (queryParam[val] instanceof Array) {
|
// Object.keys(queryParam).forEach(val => {
|
||||||
queryParam[val] = queryParam[val].join(',')
|
// if (queryParam[val] instanceof Array) {
|
||||||
}
|
// queryParam[val] = queryParam[val].join(',')
|
||||||
})
|
// }
|
||||||
const query = {
|
// })
|
||||||
pageNo: this.ipagination.current,
|
// const query = {
|
||||||
pageSize: this.ipagination.pageSize,
|
// pageNo: this.ipagination.current,
|
||||||
...queryParam
|
// pageSize: this.ipagination.pageSize,
|
||||||
}
|
// ...queryParam
|
||||||
this.loading = true
|
// }
|
||||||
getAction(this.url.list, query).then((res) => {
|
// this.loading = true
|
||||||
if (res.success) {
|
// getAction(this.url.list, query).then((res) => {
|
||||||
if (res.result.current > 1 && res.result.records.length === 0) {
|
// if (res.success) {
|
||||||
this.ipagination.current = 1
|
// if (res.result.current > 1 && res.result.records.length === 0) {
|
||||||
this.getList()
|
// this.ipagination.current = 1
|
||||||
return
|
// this.getList()
|
||||||
}
|
// return
|
||||||
this.dataSource = res.result.records || []
|
// }
|
||||||
this.ipagination.total = res.result.total
|
// this.dataSource = res.result.records || []
|
||||||
}
|
// this.ipagination.total = res.result.total
|
||||||
}).finally(() => {
|
// }
|
||||||
this.loading = false
|
// }).finally(() => {
|
||||||
})
|
// this.loading = false
|
||||||
|
// })
|
||||||
},
|
},
|
||||||
batchDelete () {
|
batchDelete () {
|
||||||
if (this.selectedRowKeys.length > 0) {
|
if (this.selectedRowKeys.length > 0) {
|
||||||
@@ -263,11 +264,11 @@ export default {
|
|||||||
content: this.$t('confirmBatchDeletion'),
|
content: this.$t('confirmBatchDeletion'),
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
const idList = []
|
const idList = []
|
||||||
const selectedRowKeysRecord = JSON.parse(JSON.stringify(this.selectedRowKeysRecord))
|
const selectedRows = JSON.parse(JSON.stringify(this.selectedRows))
|
||||||
for (let i = 0; i < selectedRowKeysRecord.length; i++) {
|
for (let i = 0; i < selectedRows.length; i++) {
|
||||||
if (selectedRowKeysRecord[i].createBy === this.userInfoQuery.username &&
|
if (selectedRows[i].createBy === this.userInfoQuery.username &&
|
||||||
selectedRowKeysRecord[i].releaseState === 'draft') {
|
selectedRows[i].releaseState === 'draft') {
|
||||||
idList.push(selectedRowKeysRecord[i].id)
|
idList.push(selectedRows[i].id)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (idList.length > 0) {
|
if (idList.length > 0) {
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
:placeholder="$t('pleaseEnter')+$t('docTool.comparison.comment')"
|
:placeholder="$t('pleaseEnter')+$t('docTool.comparison.comment')"
|
||||||
v-model="commentContent"></a-input-search>
|
v-model="commentContent"></a-input-search>
|
||||||
<a-button @click="submitQuery" style="margin-right: 8px;" type="primary">{{$t('query')}}</a-button>
|
<a-button @click="submitQuery" style="margin-right: 8px;" type="primary">{{$t('query')}}</a-button>
|
||||||
<a-button @click="handleSubmit" class="button-text" :title="$t('docTool.comparison.publishComment')" type="primary">
|
<a-button @click="handleSubmit" :title="$t('docTool.comparison.publishComment')" type="primary">
|
||||||
{{$t('docTool.comparison.publishComment')}}
|
{{$t('docTool.comparison.publishComment')}}
|
||||||
</a-button>
|
</a-button>
|
||||||
</div>
|
</div>
|
||||||
@@ -57,80 +57,28 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="comment-box-text" v-else>{{$t('docTool.comparison.noComment')}}</div>
|
<div class="comment-box-text" v-else>{{$t('docTool.comparison.noComment')}}</div>
|
||||||
</a-drawer>
|
</a-drawer>
|
||||||
<a-modal
|
<comparison-add-reply-comment ref="comparisonAddReplyComment"></comparison-add-reply-comment>
|
||||||
:title="title"
|
|
||||||
:width="500"
|
|
||||||
:visible="visibleComment"
|
|
||||||
:confirm-loading="confirmLoading"
|
|
||||||
:maskClosable="false"
|
|
||||||
@ok="handleOkComment"
|
|
||||||
@cancel="handleCancelComment"
|
|
||||||
>
|
|
||||||
<a-form-model :model="formInline" class="formAdd" :rules="rules" ref="ruleForm">
|
|
||||||
<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="title">{{title}}</span>
|
|
||||||
</div>
|
|
||||||
<a-form-model-item v-if="title === $t('docTool.comparison.replyToComments')" class="item-model" :prop="'replyContent'">
|
|
||||||
<a-textarea
|
|
||||||
:placeholder="$t('pleaseEnter')+title"
|
|
||||||
:disabled="false"
|
|
||||||
:maxLength="500"
|
|
||||||
v-model.trim="formInline.replyContent" :rows="4"/>
|
|
||||||
</a-form-model-item>
|
|
||||||
<a-form-model-item v-else-if="title === $t('docTool.comparison.publishComment')" class="item-model" :prop="'commentContent'">
|
|
||||||
<a-textarea
|
|
||||||
:placeholder="$t('pleaseEnter')+title"
|
|
||||||
:disabled="false"
|
|
||||||
:maxLength="500"
|
|
||||||
v-model.trim="formInline.commentContent" :rows="4"/>
|
|
||||||
</a-form-model-item>
|
|
||||||
</div>
|
|
||||||
</a-col>
|
|
||||||
</a-row>
|
|
||||||
</a-form-model>
|
|
||||||
</a-modal>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { getAction, postAction } from '@/api/manage'
|
import { getAction } from '@/api/manage'
|
||||||
|
// 添加评论和回复评论弹框
|
||||||
|
import ComparisonAddReplyComment from './ComparisonAddReplyComment'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CommentList',
|
name: 'CommentList',
|
||||||
|
components: { ComparisonAddReplyComment },
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
visible: false,
|
visible: false,
|
||||||
dataList: [],
|
dataList: [],
|
||||||
formInline: {},
|
|
||||||
commentContent: '',
|
commentContent: '',
|
||||||
loading: false,
|
loading: false,
|
||||||
title: this.$t('docTool.comparison.comment'),
|
|
||||||
confirmLoading: false,
|
|
||||||
visibleComment: false,
|
|
||||||
url: {
|
url: {
|
||||||
list: '/compare/sarFileCompareResComment/queryListByInfoId',
|
list: '/compare/sarFileCompareResComment/queryListByInfoId',
|
||||||
add: '/compare/sarFileCompareResComment/add',
|
add: '/compare/sarFileCompareResComment/add',
|
||||||
edit: '/compare/sarFileCompareResComment/edit'
|
edit: '/compare/sarFileCompareResComment/edit'
|
||||||
},
|
|
||||||
rules: {
|
|
||||||
commentContent: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: this.$t('docTool.comparison.publishComment') + this.$t('cannotEmpty'),
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
],
|
|
||||||
replyContent: [
|
|
||||||
{
|
|
||||||
required: true,
|
|
||||||
message: this.$t('docTool.comparison.replyToComments') + this.$t('cannotEmpty'),
|
|
||||||
trigger: 'blur'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -144,12 +92,8 @@ export default {
|
|||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
handleSubmit () {
|
handleSubmit () {
|
||||||
this.title = this.$t('docTool.comparison.publishComment')
|
this.$refs.comparisonAddReplyComment.title = this.$t('docTool.comparison.publishComment')
|
||||||
this.formInline = {}
|
this.$refs.comparisonAddReplyComment.open({})
|
||||||
this.visibleComment = true
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.ruleForm.clearValidate()
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
allowClearChange () {
|
allowClearChange () {
|
||||||
this.getList()
|
this.getList()
|
||||||
@@ -172,54 +116,11 @@ export default {
|
|||||||
this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
handleOkComment () {
|
|
||||||
this.$refs.ruleForm.validate(valid => {
|
|
||||||
if (valid) {
|
|
||||||
let url = ''
|
|
||||||
let query = {}
|
|
||||||
let Action
|
|
||||||
if (this.title === this.$t('docTool.comparison.publishComment')) {
|
|
||||||
url = this.url.add
|
|
||||||
Action = postAction
|
|
||||||
query = {
|
|
||||||
comment: this.formInline.commentContent,
|
|
||||||
infoId: this.$route.query.id
|
|
||||||
}
|
|
||||||
} else if (this.title === this.$t('docTool.comparison.replyToComments')) {
|
|
||||||
Action = postAction
|
|
||||||
url = this.url.add
|
|
||||||
query = {
|
|
||||||
comment: this.formInline.replyContent,
|
|
||||||
parentId: this.formInline.projectCommentId,
|
|
||||||
infoId: this.$route.query.id
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.confirmLoading = true
|
|
||||||
Action(url, query).then((res) => {
|
|
||||||
if (res.success) {
|
|
||||||
this.$message.success(this.$t('operationSuccessful'))
|
|
||||||
this.visibleComment = false
|
|
||||||
this.getList()
|
|
||||||
} else {
|
|
||||||
this.$message.warning(this.$t('operationFailed'))
|
|
||||||
}
|
|
||||||
}).finally(() => {
|
|
||||||
this.confirmLoading = false
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
handleCancelComment () {
|
|
||||||
this.visibleComment = false
|
|
||||||
},
|
|
||||||
messageClick (row) {
|
messageClick (row) {
|
||||||
this.formInline = {}
|
const obj = {}
|
||||||
this.formInline.projectCommentId = row.id
|
obj.projectCommentId = row.id
|
||||||
this.title = this.$t('docTool.comparison.replyToComments')
|
this.$refs.comparisonAddReplyComment.title = this.$t('docTool.comparison.replyToComments')
|
||||||
this.visibleComment = true
|
this.$refs.comparisonAddReplyComment.open(obj)
|
||||||
this.$nextTick(() => {
|
|
||||||
this.$refs.ruleForm.clearValidate()
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,77 @@
|
|||||||
|
<template>
|
||||||
|
<a-modal
|
||||||
|
:title="$t('docTool.comparison.fullTextComments')"
|
||||||
|
:width="600"
|
||||||
|
:visible="visible"
|
||||||
|
:confirm-loading="confirmLoading"
|
||||||
|
:maskClosable="false"
|
||||||
|
@cancel="visible = false"
|
||||||
|
>
|
||||||
|
<template slot="footer">
|
||||||
|
<a-button type="primary" :loading="confirmLoading" @click="fullTextCommentsSubmit">
|
||||||
|
{{$t('submit')}}
|
||||||
|
</a-button>
|
||||||
|
</template>
|
||||||
|
<a-form-model :model="formInlineText" class="formAdd" :rules="rulesText" ref="ruleFormText">
|
||||||
|
<div class="box-title-text-remarks">
|
||||||
|
<div class="title-text-remarks" :title="$t('docTool.comparison.fullTextComments')">
|
||||||
|
<span>{{$t('docTool.comparison.fullTextComments')}}</span>
|
||||||
|
</div>
|
||||||
|
<a-form-model-item class="item-model" style="width: calc(100% - 113px)" prop="comment">
|
||||||
|
<a-textarea :placeholder="$t('pleaseEnter')+' '+$t('docTool.comparison.fullTextComments')"
|
||||||
|
v-model.trim="formInlineText.comment"
|
||||||
|
:maxLength="500"
|
||||||
|
:rows="4"/>
|
||||||
|
</a-form-model-item>
|
||||||
|
</div>
|
||||||
|
</a-form-model>
|
||||||
|
</a-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { putAction } from '@/api/manage'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'ComparisonAddFullComment',
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
visible: false, // 全文评论弹框是否显示
|
||||||
|
confirmLoading: false,
|
||||||
|
formInlineText: {},
|
||||||
|
rulesText: {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
open (comments) {
|
||||||
|
this.formInlineText.comment = comments
|
||||||
|
},
|
||||||
|
// 添加全文评论弹框的提交按钮
|
||||||
|
fullTextCommentsSubmit () {
|
||||||
|
this.$refs.ruleFormText.validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
const formInlineText = Object.assign({}, this.formInlineText)
|
||||||
|
this.confirmLoading = true
|
||||||
|
const query = {
|
||||||
|
id: this.$route.query.id,
|
||||||
|
comments: formInlineText.comment
|
||||||
|
}
|
||||||
|
putAction('/compare/sarFileCompareInfo/editComments', query).then((res) => {
|
||||||
|
if (res.success) {
|
||||||
|
this.$message.success(this.$t('operationSuccessful'))
|
||||||
|
this.visible = false
|
||||||
|
} else {
|
||||||
|
this.$message.warning(this.$t('operationFailed'))
|
||||||
|
}
|
||||||
|
}).finally(() => {
|
||||||
|
this.confirmLoading = false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
@@ -0,0 +1,122 @@
|
|||||||
|
<template>
|
||||||
|
<a-modal
|
||||||
|
:title="title"
|
||||||
|
:width="500"
|
||||||
|
:visible="visible"
|
||||||
|
:confirm-loading="confirmLoading"
|
||||||
|
:maskClosable="false"
|
||||||
|
@ok="handleOkComment"
|
||||||
|
@cancel="handleCancelComment"
|
||||||
|
>
|
||||||
|
<a-form-model :model="formInline" :rules="rules" ref="ruleForm">
|
||||||
|
<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="title">{{title}}</span>
|
||||||
|
</div>
|
||||||
|
<a-form-model-item v-if="title === $t('docTool.comparison.replyToComments')" class="item-model" :prop="'replyContent'">
|
||||||
|
<a-textarea
|
||||||
|
:placeholder="$t('pleaseEnter')+title"
|
||||||
|
:disabled="false"
|
||||||
|
:maxLength="500"
|
||||||
|
v-model.trim="formInline.replyContent"
|
||||||
|
:autoSize="{ minRows: 2, maxRows: 6 }" />
|
||||||
|
</a-form-model-item>
|
||||||
|
<a-form-model-item v-else-if="title === $t('docTool.comparison.publishComment')" class="item-model" :prop="'commentContent'">
|
||||||
|
<a-textarea
|
||||||
|
:placeholder="$t('pleaseEnter')+title"
|
||||||
|
:disabled="false"
|
||||||
|
:maxLength="500"
|
||||||
|
v-model.trim="formInline.commentContent"
|
||||||
|
:autoSize="{ minRows: 2, maxRows: 6 }"/>
|
||||||
|
</a-form-model-item>
|
||||||
|
</div>
|
||||||
|
</a-col>
|
||||||
|
</a-row>
|
||||||
|
</a-form-model>
|
||||||
|
</a-modal>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { postAction } from '@/api/manage'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'ComparisonAddReplyComment',
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
title: this.$t('docTool.comparison.comment'),
|
||||||
|
visible: false,
|
||||||
|
confirmLoading: false,
|
||||||
|
formInline: {},
|
||||||
|
rules: {
|
||||||
|
commentContent: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: this.$t('docTool.comparison.publishComment') + this.$t('cannotEmpty'),
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
replyContent: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: this.$t('docTool.comparison.replyToComments') + this.$t('cannotEmpty'),
|
||||||
|
trigger: 'blur'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
open (formInLine) {
|
||||||
|
this.visible = true
|
||||||
|
this.formInline = Object.assign({}, formInLine)
|
||||||
|
},
|
||||||
|
handleOkComment () {
|
||||||
|
this.$refs.ruleForm.validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
let url = ''
|
||||||
|
let query = {}
|
||||||
|
let Action
|
||||||
|
if (this.title === this.$t('docTool.comparison.publishComment')) {
|
||||||
|
url = this.url.add
|
||||||
|
Action = postAction
|
||||||
|
query = {
|
||||||
|
comment: this.formInline.commentContent,
|
||||||
|
infoId: this.$route.query.id
|
||||||
|
}
|
||||||
|
} else if (this.title === this.$t('docTool.comparison.replyToComments')) {
|
||||||
|
Action = postAction
|
||||||
|
url = this.url.add
|
||||||
|
query = {
|
||||||
|
comment: this.formInline.replyContent,
|
||||||
|
parentId: this.formInline.projectCommentId,
|
||||||
|
infoId: this.$route.query.id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.confirmLoading = true
|
||||||
|
Action(url, query).then((res) => {
|
||||||
|
if (res.success) {
|
||||||
|
this.$message.success(this.$t('operationSuccessful'))
|
||||||
|
this.visible = false
|
||||||
|
this.getList()
|
||||||
|
} else {
|
||||||
|
this.$message.warning(this.$t('operationFailed'))
|
||||||
|
}
|
||||||
|
}).finally(() => {
|
||||||
|
this.confirmLoading = false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleCancelComment () {
|
||||||
|
this.visible = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="less">
|
||||||
|
@import'~@assets/less/common.less';
|
||||||
|
</style>
|
||||||
@@ -243,7 +243,7 @@ export default {
|
|||||||
...mapGetters(['userInfo']),
|
...mapGetters(['userInfo']),
|
||||||
goBack () {
|
goBack () {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
path: '/documentComparison'
|
path: '/documentTool/documentComparison'
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 评论按钮点击
|
// 评论按钮点击
|
||||||
|
|||||||
@@ -113,51 +113,24 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<a-modal
|
<comparison-add-full-comment ref="comparisonAddFullComment"></comparison-add-full-comment>
|
||||||
:title="$t('docTool.comparison.fullTextComments')"
|
|
||||||
:width="600"
|
|
||||||
:visible="visible"
|
|
||||||
:confirm-loading="textDataLoading"
|
|
||||||
:maskClosable="false"
|
|
||||||
@cancel="visible = false"
|
|
||||||
>
|
|
||||||
<template slot="footer">
|
|
||||||
<a-button type="primary" :loading="textDataLoading" @click="fullTextCommentsSubmit">
|
|
||||||
{{$t('submit')}}
|
|
||||||
</a-button>
|
|
||||||
</template>
|
|
||||||
<a-form-model :model="formInlineText" class="formAdd" :rules="rulesText" ref="ruleFormText">
|
|
||||||
<div class="box-title-text-remarks">
|
|
||||||
<div class="title-text-remarks" :title="$t('docTool.comparison.fullTextComments')">
|
|
||||||
<span>{{$t('docTool.comparison.fullTextComments')}}</span>
|
|
||||||
</div>
|
|
||||||
<a-form-model-item class="item-model" style="width: calc(100% - 113px)" prop="comment">
|
|
||||||
<a-textarea :placeholder="$t('pleaseEnter')+' '+$t('docTool.comparison.fullTextComments')"
|
|
||||||
v-model.trim="formInlineText.comment"
|
|
||||||
:maxLength="500"
|
|
||||||
:rows="4"/>
|
|
||||||
</a-form-model-item>
|
|
||||||
</div>
|
|
||||||
</a-form-model>
|
|
||||||
</a-modal>
|
|
||||||
</a-spin>
|
</a-spin>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { postAction, putAction, getAction } from '@/api/manage'
|
import { postAction, getAction } from '@/api/manage'
|
||||||
|
// 添加全文评论弹框
|
||||||
|
import ComparisonAddFullComment from './ComparisonAddFullComment'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'DocumentDataComparison',
|
name: 'DocumentDataComparison',
|
||||||
|
components: { ComparisonAddFullComment },
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
formInline: {},
|
formInline: {},
|
||||||
formInlineText: {},
|
|
||||||
loadingText: false,
|
loadingText: false,
|
||||||
rules: {},
|
rules: {},
|
||||||
rulesText: {},
|
|
||||||
loading: false,
|
loading: false,
|
||||||
textDataLoading: false,
|
|
||||||
visible: false, // 全文评论弹框是否显示
|
|
||||||
resultData: {},
|
resultData: {},
|
||||||
isMatching: true, // 自动匹配是否开启
|
isMatching: true, // 自动匹配是否开启
|
||||||
dataLeft: {},
|
dataLeft: {},
|
||||||
@@ -284,18 +257,13 @@ export default {
|
|||||||
},
|
},
|
||||||
// 添加全文评论按钮点击
|
// 添加全文评论按钮点击
|
||||||
addFullTextCommentClick () {
|
addFullTextCommentClick () {
|
||||||
this.visible = true
|
|
||||||
const query = {
|
const query = {
|
||||||
id: this.$route.query.id
|
id: this.$route.query.id
|
||||||
}
|
}
|
||||||
this.textDataLoading = true
|
|
||||||
postAction('/compare/sarFileCompareInfo/getComparisonDetail', query).then((res) => {
|
postAction('/compare/sarFileCompareInfo/getComparisonDetail', query).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.formInlineText.comment = res.result.comments || ''
|
this.$refs.comparisonAddFullComment.open(res.result.comments || '')
|
||||||
this.formInlineText = { ...this.formInlineText }
|
|
||||||
}
|
}
|
||||||
}).finally(() => {
|
|
||||||
this.textDataLoading = false
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 关闭自动匹配、开启自动匹配
|
// 关闭自动匹配、开启自动匹配
|
||||||
@@ -303,45 +271,20 @@ export default {
|
|||||||
this.isMatching = !this.isMatching
|
this.isMatching = !this.isMatching
|
||||||
this.$message.success(this.$t('operationSuccessful'))
|
this.$message.success(this.$t('operationSuccessful'))
|
||||||
},
|
},
|
||||||
// 添加全文评论弹框的提交按钮
|
|
||||||
fullTextCommentsSubmit () {
|
|
||||||
this.$refs.ruleFormText.validate(valid => {
|
|
||||||
if (valid) {
|
|
||||||
const formInlineText = JSON.parse(JSON.stringify(this.formInlineText))
|
|
||||||
this.textDataLoading = true
|
|
||||||
const query = {
|
|
||||||
id: this.$route.query.id,
|
|
||||||
comments: formInlineText.comment
|
|
||||||
}
|
|
||||||
putAction('/compare/sarFileCompareInfo/editComments', query).then((res) => {
|
|
||||||
if (res.success) {
|
|
||||||
this.$message.success(this.$t('operationSuccessful'))
|
|
||||||
this.visible = false
|
|
||||||
} else {
|
|
||||||
this.$message.warning(this.$t('operationFailed'))
|
|
||||||
}
|
|
||||||
}).finally(() => {
|
|
||||||
this.textDataLoading = false
|
|
||||||
})
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
// 获取文件对比详情
|
// 获取文件对比详情
|
||||||
getData () {
|
getData () {
|
||||||
const query = {
|
const query = {
|
||||||
id: this.$route.query.id
|
id: this.$route.query.id
|
||||||
}
|
}
|
||||||
// this.loading = true
|
this.loading = true
|
||||||
postAction('/compare/sarFileCompareInfo/getComparisonDetail', query).then((res) => {
|
postAction('/compare/sarFileCompareInfo/getComparisonDetail', query).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.resultData = res.result || {}
|
this.resultData = res.result || {}
|
||||||
this.formInlineText.comment = res.result.comments || ''
|
|
||||||
this.formInlineText = { ...this.formInlineText }
|
|
||||||
} else {
|
} else {
|
||||||
this.resultData = {}
|
this.resultData = {}
|
||||||
}
|
}
|
||||||
}).finally(() => {
|
}).finally(() => {
|
||||||
// this.loading = false
|
this.loading = false
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 点击左侧文档内容
|
// 点击左侧文档内容
|
||||||
@@ -514,7 +457,8 @@ export default {
|
|||||||
.detail-content {
|
.detail-content {
|
||||||
padding-top: 68px;
|
padding-top: 68px;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding-bottom: 20px;
|
padding-bottom: 30px;
|
||||||
|
overflow-y: auto;
|
||||||
&-cont {
|
&-cont {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|||||||
@@ -34,15 +34,15 @@
|
|||||||
<a-button type="primary" @click="handleSubmit" :loading="loading">{{$t('submit')}}</a-button>
|
<a-button type="primary" @click="handleSubmit" :loading="loading">{{$t('submit')}}</a-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a-modal
|
<!-- <a-modal-->
|
||||||
:title="titleItem"
|
<!-- :title="titleItem"-->
|
||||||
class="split-error"
|
<!-- class="split-error"-->
|
||||||
:visible="preErrVisible"
|
<!-- :visible="preErrVisible"-->
|
||||||
@cancel="handleErrCancel"
|
<!-- @cancel="handleErrCancel"-->
|
||||||
:footer="false"
|
<!-- :footer="false"-->
|
||||||
>
|
<!-- >-->
|
||||||
<div class="err-value" v-html="errValue"></div>
|
<!-- <div class="err-value" v-html="errValue"></div>-->
|
||||||
</a-modal>
|
<!-- </a-modal>-->
|
||||||
</a-drawer>
|
</a-drawer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -51,6 +51,7 @@ import { downloadFile, httpAction } from '@/api/manage'
|
|||||||
import Search from '@/components/customField/Search'
|
import Search from '@/components/customField/Search'
|
||||||
import TableData from '@/components/customField/TableData'
|
import TableData from '@/components/customField/TableData'
|
||||||
import SplitUpload from '@/components/splitUpload/SplitUpload'
|
import SplitUpload from '@/components/splitUpload/SplitUpload'
|
||||||
|
import { Modal } from 'ant-design-vue'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'ImportResult',
|
name: 'ImportResult',
|
||||||
@@ -73,9 +74,9 @@ export default {
|
|||||||
},
|
},
|
||||||
operationList: [],
|
operationList: [],
|
||||||
accept: 'application/x-zip-compressed,application/zip',
|
accept: 'application/x-zip-compressed,application/zip',
|
||||||
preErrVisible: false,
|
// preErrVisible: false,
|
||||||
errValue: '',
|
// errValue: '',
|
||||||
titleItem: '' // 错误标题
|
// titleItem: '' // 错误标题
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -140,9 +141,14 @@ export default {
|
|||||||
if (res.data.code === 1) {
|
if (res.data.code === 1) {
|
||||||
this.$message.error(res.data.message)
|
this.$message.error(res.data.message)
|
||||||
} else {
|
} else {
|
||||||
this.titleItem = '失败'
|
Modal.info({
|
||||||
this.preErrVisible = true
|
title: '失败',
|
||||||
this.errValue = res.data.message
|
content: res.data.message,
|
||||||
|
class: 'err-modal' // 去掉一下footer的按钮
|
||||||
|
})
|
||||||
|
// this.titleItem = '失败'
|
||||||
|
// this.preErrVisible = true
|
||||||
|
// this.errValue = res.data.message
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}).finally(() => {
|
}).finally(() => {
|
||||||
|
|||||||
@@ -294,7 +294,7 @@ export default {
|
|||||||
...mapGetters(['userInfo']),
|
...mapGetters(['userInfo']),
|
||||||
goBack () {
|
goBack () {
|
||||||
this.$router.push({
|
this.$router.push({
|
||||||
path: '/documentComparison'
|
path: '/documentTool/documentComparison'
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
searchQueryLeft () {
|
searchQueryLeft () {
|
||||||
|
|||||||
Reference in New Issue
Block a user