575 lines
19 KiB
Vue
575 lines
19 KiB
Vue
<template>
|
|
<internal-detail-page :title="$t('docTool.comparison.initiateComparison')" :content-padding="0" :loading="loading">
|
|
<div class="can-scroll-content">
|
|
<div class="detail-content-box">
|
|
<div class="detail-content-left">
|
|
<a-form layout="inline" @keyup.enter.native="searchQueryLeft">
|
|
<a-row>
|
|
<a-col :md="8" :sm="8">
|
|
<a-form-item :label="$t('number')" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
<a-input :placeholder="$t('pleaseEnter')+$t('number')"
|
|
v-model="queryParamLeft.serialNumber"></a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :md="8" :sm="8">
|
|
<a-form-item :label="$t('title')" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
<a-input :placeholder="$t('pleaseEnter')+$t('title')"
|
|
v-model="queryParamLeft.title"></a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<span style="text-align:right;overflow: hidden;" class="table-page-search-submitButtons">
|
|
<a-col :md="8" :sm="24">
|
|
<a-button @click="searchResetLeft">{{ $t('reset') }}</a-button>
|
|
<a-button style="margin-left: 8px" type="primary" @click="searchQueryLeft" v-has="'docComparsion:initiate:search'">
|
|
{{ $t('query') }}
|
|
</a-button>
|
|
</a-col>
|
|
</span>
|
|
</a-row>
|
|
</a-form>
|
|
<j-table
|
|
ref="table"
|
|
size="middle"
|
|
:can-drag="true"
|
|
:loading="loadingLeft"
|
|
:pagination="false"
|
|
:scroll="{x: '100%',y:340}"
|
|
rowKey="id"
|
|
:data-source="dataSourceLeft"
|
|
:row-selection="{ selectedRowKeys: selectedRowKeysLeft, onChange: onSelectChangeLeft, columnTitle:' ', type: 'radio'}"
|
|
:columns="columns"
|
|
@change="tableChangeLeft"
|
|
>
|
|
</j-table>
|
|
<div class="box-button-standard">
|
|
<span class="box-button-standard-left" :title="$t('docTool.comparison.selectedStandard')">
|
|
{{ $t('docTool.comparison.selectedStandard') }}
|
|
</span>
|
|
<span class="box-button-standard-right"
|
|
@click="selectLeftClick(selectedRowsLeft[0])"
|
|
:title="selectedRowsLeft[0]?selectedRowsLeft[0].serialNumber+' '+selectedRowsLeft[0].fileName:$t('docTool.comparison.noComparisonDocumentSelected')"
|
|
:class="{'box-button-standard-right-color':selectedRowsLeft[0]}">
|
|
{{ selectedRowsLeft[0] ? selectedRowsLeft[0].serialNumber + ' ' + selectedRowsLeft[0].fileName : $t('docTool.comparison.noComparisonDocumentSelected') }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="detail-content-right">
|
|
<a-form layout="inline" @keyup.enter.native="searchQueryRight">
|
|
<a-row>
|
|
<a-col :md="8" :sm="8">
|
|
<a-form-item :label="$t('number')" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
<a-input :placeholder="$t('pleaseEnter')+$t('number')" @change="event => event.target.value = event.target.value.trim()"
|
|
v-model="queryParamRight.serialNumber"></a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :md="8" :sm="8">
|
|
<a-form-item :label="$t('title')" :labelCol="labelCol" :wrapperCol="wrapperCol">
|
|
<a-input :placeholder="$t('pleaseEnter')+$t('title')" @change="event => event.target.value = event.target.value.trim()"
|
|
v-model="queryParamRight.title"></a-input>
|
|
</a-form-item>
|
|
</a-col>
|
|
<span style="text-align:right;overflow: hidden;" class="table-page-search-submitButtons">
|
|
<a-col :md="8" :sm="24">
|
|
<a-button @click="searchResetRight">{{ $t('reset') }}</a-button>
|
|
<a-button style="margin-left: 8px" type="primary" @click="searchQueryRight" v-has="'docComparsion:initiate:search'">
|
|
{{ $t('query') }}
|
|
</a-button>
|
|
</a-col>
|
|
</span>
|
|
</a-row>
|
|
</a-form>
|
|
<j-table
|
|
ref="table"
|
|
size="middle"
|
|
:can-drag="true"
|
|
:loading="loadingRight"
|
|
:pagination="false"
|
|
:scroll="{x: '100%',y:340}"
|
|
rowKey="id"
|
|
:data-source="dataSourceRight"
|
|
:row-selection="{ selectedRowKeys: selectedRowKeysRight, onChange: onSelectChangeRight, columnTitle:' ', type: 'radio'}"
|
|
:columns="tableColumns"
|
|
@change="tableChangeRight"
|
|
>
|
|
</j-table>
|
|
<div class="box-button-standard">
|
|
<span class="box-button-standard-left" :title="$t('docTool.comparison.selectedStandard')">
|
|
{{ $t('docTool.comparison.selectedStandard') }}
|
|
</span>
|
|
<span class="box-button-standard-right"
|
|
@click="selectLeftClick(selectedRowsRight[0])"
|
|
:title="selectedRowsRight[0]?selectedRowsRight[0].serialNumber+' '+selectedRowsRight[0].fileName:$t('docTool.comparison.noComparisonDocumentSelected')"
|
|
:class="{'box-button-standard-right-color':selectedRowsRight[0]}">
|
|
{{ selectedRowsRight[0] ? selectedRowsRight[0].serialNumber + ' ' + selectedRowsRight[0].fileName : $t('docTool.comparison.noComparisonDocumentSelected')
|
|
}}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="remarks">
|
|
<a-form-model :model="formInline" class="formAdd" :rules="rules" ref="ruleForm">
|
|
<div class="box-title-text-remarks">
|
|
<div class="title-text-remarks" :title="$t('docTool.comparison.remarkInfo')">
|
|
<span>{{ $t('docTool.comparison.remarkInfo') }}</span>
|
|
</div>
|
|
<a-form-model-item class="item-model" prop="remark">
|
|
<a-textarea :placeholder="$t('pleaseEnter')+$t('docTool.comparison.remarkInfo')"
|
|
:maxLength="500"
|
|
v-model="formInline.remark"
|
|
:rows="4" />
|
|
</a-form-model-item>
|
|
</div>
|
|
</a-form-model>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="box-button">
|
|
<!--发起文档对比-->
|
|
<a-button type="primary" @click="submit" v-has="'docComparsion:initiate:initiateComparison'">{{ $t('docTool.comparison.initiateDocumentComparison') }}</a-button>
|
|
</div>
|
|
<div id="images">
|
|
<div class="image" v-viewer="{movable: false}">
|
|
<img v-show="image" :src="imageUrl">
|
|
</div>
|
|
</div>
|
|
</internal-detail-page>
|
|
</template>
|
|
|
|
<script>
|
|
import JTable from '../../../components/jero/JTable.vue'
|
|
import { downloadFile, getFileAccessHttpUrl } from '../../../api/manage.js'
|
|
import { previewPdf } from '../../../utils/previewPdf.js'
|
|
import { Base64 } from 'js-base64'
|
|
import { mapGetters } from 'vuex'
|
|
import InternalDetailPage from '../../../components/InternalDetailPage.vue'
|
|
import { getInitComparsionPageData, submitInitComparsion } from '../../../api/documentToolApi.js'
|
|
|
|
export default {
|
|
name: 'InitiateComparison',
|
|
components: { JTable, InternalDetailPage },
|
|
data () {
|
|
return {
|
|
loading: false,
|
|
labelCol: {
|
|
span: 6
|
|
},
|
|
wrapperCol: {
|
|
span: 18
|
|
},
|
|
loadingLeft: false,
|
|
queryParamLeft: {},
|
|
ipaginationLeft: {
|
|
current: 1,
|
|
pageSize: 50,
|
|
pageSizeOptions: ['10', '50', '100', '150', '200'],
|
|
showTotal: (total, range) => {
|
|
return range[0] + '-' + range[1] + ' ' + this.$t('total') + ' ' + total + ' ' + this.$t('strip')
|
|
},
|
|
showQuickJumper: true,
|
|
showSizeChanger: true,
|
|
total: 0
|
|
},
|
|
selectedRowKeysLeft: [],
|
|
selectedRowsLeft: [],
|
|
dataSourceLeft: [],
|
|
loadingRight: false,
|
|
queryParamRight: {},
|
|
ipaginationRight: {
|
|
current: 1,
|
|
pageSize: 50,
|
|
pageSizeOptions: ['10', '50', '100', '150', '200'],
|
|
showTotal: (total, range) => {
|
|
return range[0] + '-' + range[1] + ' ' + this.$t('total') + ' ' + total + ' ' + this.$t('strip')
|
|
},
|
|
showQuickJumper: true,
|
|
showSizeChanger: true,
|
|
total: 0
|
|
},
|
|
selectedRowKeysRight: [],
|
|
dataSourceRight: [],
|
|
selectedRowsRight: [],
|
|
formInline: {},
|
|
downLoadFileUrl: window._CONFIG.domianPreviewURL + '/sys/common/download',
|
|
downLoadImgUrl: window._CONFIG.domianWebImgURL + '/sys/common/download',
|
|
rules: {
|
|
// remark: [
|
|
// {
|
|
// max: 300,
|
|
// message: this.$t('RemarkInfo') + this.$t('cannotExceed') + 300 + this.$t('Characters'),
|
|
// trigger: 'blur'
|
|
// }
|
|
// ]
|
|
},
|
|
columns: [
|
|
{
|
|
title: this.$t('number'),
|
|
width: 30,
|
|
customRender: function (t, r, index) {
|
|
return parseInt(index) + 1
|
|
}
|
|
},
|
|
{
|
|
title: this.$t('number'),
|
|
ellipsis: true,
|
|
dataIndex: 'serialNumber',
|
|
width: 100
|
|
},
|
|
{
|
|
title: this.$t('title'),
|
|
ellipsis: true,
|
|
dataIndex: 'title',
|
|
width: 100
|
|
},
|
|
{
|
|
title: this.$t('docTool.comparison.textStatus'),
|
|
ellipsis: true,
|
|
dataIndex: 'fileType_dictText',
|
|
width: 100
|
|
},
|
|
{
|
|
title: this.$t('fileName'),
|
|
ellipsis: true,
|
|
dataIndex: 'fileName',
|
|
width: 100
|
|
}
|
|
],
|
|
tableColumns: [
|
|
{
|
|
title: this.$t('number'),
|
|
width: 30,
|
|
customRender: function (t, r, index) {
|
|
return parseInt(index) + 1
|
|
}
|
|
},
|
|
{
|
|
title: this.$t('number'),
|
|
ellipsis: true,
|
|
dataIndex: 'serialNumber',
|
|
width: 100
|
|
},
|
|
{
|
|
title: this.$t('title'),
|
|
ellipsis: true,
|
|
dataIndex: 'title',
|
|
width: 100
|
|
},
|
|
{
|
|
title: this.$t('docTool.comparison.textStatus'),
|
|
ellipsis: true,
|
|
dataIndex: 'fileType_dictText',
|
|
width: 100
|
|
},
|
|
{
|
|
title: this.$t('fileName'),
|
|
ellipsis: true,
|
|
dataIndex: 'fileName',
|
|
width: 100
|
|
}
|
|
],
|
|
image: false,
|
|
imageUrl: ''
|
|
}
|
|
},
|
|
mounted () {
|
|
this.getListLeft()
|
|
this.getListRight()
|
|
document.title = this.$t('documentComparison') + ' - ' + this.$t('initiateComparison')
|
|
},
|
|
methods: {
|
|
...mapGetters(['userInfo']),
|
|
goBack () {
|
|
this.$router.push({
|
|
path: '/documentTool/documentComparison'
|
|
})
|
|
},
|
|
searchQueryLeft () {
|
|
this.ipaginationLeft.current = 1
|
|
this.getListLeft()
|
|
},
|
|
searchResetLeft () {
|
|
this.queryParamLeft = {}
|
|
this.ipaginationLeft.current = 1
|
|
this.getListLeft()
|
|
},
|
|
onSelectChangeLeft (value, record) {
|
|
this.selectedRowKeysLeft = value
|
|
// this.selectedRowsLeft = []
|
|
// if (this.selectedRowKeysLeft.length > 1) {
|
|
// this.selectedRowKeysLeft.shift()
|
|
// }
|
|
// const content = record.filter(res => {
|
|
// return res.id === this.selectedRowKeysLeft[0]
|
|
// })
|
|
this.selectedRowsLeft = record
|
|
},
|
|
tableChangeLeft (pagination) {
|
|
this.ipaginationLeft = pagination
|
|
this.getListLeft()
|
|
},
|
|
searchQueryRight () {
|
|
this.ipaginationRight.current = 1
|
|
this.getListRight()
|
|
},
|
|
searchResetRight () {
|
|
this.queryParamRight = {}
|
|
this.ipaginationRight.current = 1
|
|
this.getListRight()
|
|
},
|
|
onSelectChangeRight (value, record) {
|
|
this.selectedRowKeysRight = value
|
|
// this.selectedRowsRight = []
|
|
// if (this.selectedRowKeysRight.length > 1) {
|
|
// this.selectedRowKeysRight.shift()
|
|
// }
|
|
// const content = record.filter(res => {
|
|
// return res.id === this.selectedRowKeysRight[0]
|
|
// })
|
|
this.selectedRowsRight = record
|
|
},
|
|
tableChangeRight (pagination) {
|
|
this.ipaginationRight = pagination
|
|
this.getListRight()
|
|
},
|
|
submit () {
|
|
if (!this.selectedRowsRight[0] || !this.selectedRowsLeft[0]) {
|
|
this.$message.warning(this.$t('pleaseSelectTheDataCompared'))
|
|
return
|
|
}
|
|
this.$refs.ruleForm.validate(valid => {
|
|
if (valid) {
|
|
this.loading = true
|
|
const query = {
|
|
leftStandard: this.selectedRowsLeft[0].id,
|
|
rightStandard: this.selectedRowsRight[0].id,
|
|
remark: this.formInline.remark
|
|
}
|
|
submitInitComparsion(query).then((res) => {
|
|
if (res.success) {
|
|
console.log(res)
|
|
this.loading = false
|
|
this.$message.success(this.$t('operationSuccessful'))
|
|
this.$router.push({
|
|
path: '/documentTool/DocumentDataComparison',
|
|
query: {
|
|
id: res.result
|
|
}
|
|
})
|
|
} else {
|
|
this.loading = false
|
|
this.$message.warning(this.$t('operationFailed'))
|
|
}
|
|
})
|
|
}
|
|
})
|
|
},
|
|
getListLeft () {
|
|
const queryParam = JSON.parse(JSON.stringify(this.queryParamLeft))
|
|
Object.keys(queryParam).forEach(val => {
|
|
if (queryParam[val] instanceof Array) {
|
|
queryParam[val] = queryParam[val].join(',')
|
|
}
|
|
})
|
|
const query = {
|
|
pageNo: this.ipaginationLeft.current,
|
|
pageSize: this.ipaginationLeft.pageSize,
|
|
fileId: '1',
|
|
...queryParam
|
|
}
|
|
this.loadingLeft = true
|
|
getInitComparsionPageData(query).then((res) => {
|
|
if (res.success) {
|
|
if (res.result.current > 1 && res.result.records.length === 0) {
|
|
this.ipaginationLeft.current = 1
|
|
this.getListLeft()
|
|
return
|
|
}
|
|
this.dataSourceLeft = res.result.records || []
|
|
this.ipaginationLeft.total = res.result.total
|
|
}
|
|
}).finally(() => {
|
|
this.loadingLeft = false
|
|
})
|
|
},
|
|
selectLeftClick (fileQuery) {
|
|
if (fileQuery) {
|
|
const fileName = fileQuery.fileName
|
|
const index1 = fileName.lastIndexOf('.')
|
|
const index2 = fileName.length
|
|
const fileSuffix = fileName.substring(index1, index2)
|
|
if (fileSuffix === '.pdf') {
|
|
// window.open('/pdf/web/viewer.html?file=' + encodeURIComponent('/jero-boot/sys/common/pdf/viewFile?id=' + fileQuery.fileId + '&userName=' + this.userInfo().username))
|
|
const url = previewPdf(fileQuery.fileId)
|
|
window.open(url)
|
|
} else if (fileSuffix === '.docx' || fileSuffix === '.doc') {
|
|
const url = window._CONFIG.onlinePreviewDomainURL + '?url=' + Base64.encode(this.downLoadFileUrl + '/' + fileQuery.fileId + fileSuffix)
|
|
window.open(url, '_blank')
|
|
} else if (fileSuffix === '.xlsx' || fileSuffix === '.xls') {
|
|
const url = window._CONFIG.onlinePreviewDomainURL + '?url=' + Base64.encode(this.downLoadFileUrl + '/' + fileQuery.fileId + fileSuffix)
|
|
window.open(url, '_blank')
|
|
} else if (fileSuffix === '.png' || fileSuffix === '.jpeg' || fileSuffix === '.gif' || fileSuffix === '.jpg') {
|
|
// const url = window._CONFIG.onlinePreviewDomainURL + '?url=' + Base64.encode(this.downLoadImgUrl + '/' + fileQuery.fileId + fileSuffix)
|
|
// window.open(url, '_blank')
|
|
this.image = true
|
|
this.imageUrl = getFileAccessHttpUrl(fileQuery.fileId)
|
|
// 获取viewer实例
|
|
const viewer = this.$el.querySelector('.image').$viewer
|
|
// 调用show方法进行显示预览图
|
|
viewer.show()
|
|
} else {
|
|
downloadFile('/sys/common/downLoadFile', fileQuery.fileName, { id: fileQuery.fileId })
|
|
}
|
|
}
|
|
},
|
|
getListRight () {
|
|
const queryParam = JSON.parse(JSON.stringify(this.queryParamRight))
|
|
Object.keys(queryParam).forEach(val => {
|
|
if (queryParam[val] instanceof Array) {
|
|
queryParam[val] = queryParam[val].join(',')
|
|
}
|
|
})
|
|
const query = {
|
|
pageNo: this.ipaginationRight.current,
|
|
pageSize: this.ipaginationRight.pageSize,
|
|
fileId: '1',
|
|
...queryParam
|
|
}
|
|
this.loadingRight = true
|
|
getInitComparsionPageData(query).then((res) => {
|
|
if (res.success) {
|
|
if (res.result.current > 1 && res.result.records.length === 0) {
|
|
this.pageNoRight = 1
|
|
this.getListRight()
|
|
return
|
|
}
|
|
this.dataSourceRight = res.result.records || []
|
|
this.ipaginationRight.total = res.result.total
|
|
}
|
|
}).finally(() => {
|
|
this.loadingRight = false
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
@import '~../../../assets/less/common.less';
|
|
|
|
.can-scroll-content {
|
|
height: calc(100% - 52px);
|
|
overflow: auto;
|
|
}
|
|
|
|
.detail-content-box {
|
|
display: flex;
|
|
height: calc(100% - 152px);
|
|
}
|
|
|
|
.detail-content-left {
|
|
width: 50%;
|
|
border-right: 2px #EFF1F3 solid;
|
|
padding: 24px 32px;
|
|
box-sizing: border-box;
|
|
border-bottom: 2px #EFF1F3 solid;
|
|
height: 100%;
|
|
}
|
|
|
|
.detail-content-right {
|
|
width: 50%;
|
|
padding: 24px 32px;
|
|
box-sizing: border-box;
|
|
border-bottom: 2px #EFF1F3 solid;
|
|
height: 100%;
|
|
}
|
|
|
|
.box-title-text-remarks {
|
|
line-height: 1.4;
|
|
display: flex;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.title-text-remarks {
|
|
width: 68px;
|
|
color: #000F16;
|
|
display: inline-block;
|
|
font-weight: 500;
|
|
font-size: 14px;
|
|
margin-right: 16px;
|
|
margin-top: 6px;
|
|
text-align: right;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.box-button {
|
|
padding: 10px 24px;
|
|
text-align: right;
|
|
}
|
|
|
|
.box-button-standard {
|
|
width: 100%;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.box-button-standard-left {
|
|
width: 111px;
|
|
height: 46px;
|
|
padding: 0 6px;
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
border: 1px solid #CED0D8;
|
|
border-right: none;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
line-height: 46px;
|
|
color: #040B29;
|
|
}
|
|
|
|
.box-button-standard-right {
|
|
width: calc(100% - 111px);
|
|
height: 46px;
|
|
padding: 0 4px;
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
border: 1px solid #CED0D8;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
line-height: 46px;
|
|
color: #9B9DA9;
|
|
}
|
|
|
|
.remarks {
|
|
margin-top: 20px;
|
|
width: 50%;
|
|
padding: 0 32px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.item-model {
|
|
width: calc(100% - 232px);
|
|
}
|
|
|
|
.submit-button {
|
|
width: 100%;
|
|
height: 60px;
|
|
text-align: right;
|
|
padding: 14px 32px 0;
|
|
box-sizing: border-box;
|
|
border-top: 2px #eff1f3 solid;
|
|
background: #ffffff;
|
|
position: fixed;
|
|
bottom: 0;
|
|
}
|
|
|
|
.box-button-standard-right-color {
|
|
color: #040B29;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|