-
+
{{$t('exportComparisonReport')}}
@@ -132,7 +286,7 @@
}
.detail-content {
- padding: 24px 32px;
+ padding: 24px 32px 0 32px;
box-sizing: border-box;
}
@@ -182,4 +336,129 @@
}
}
+ .detail-content-content {
+ width: 100%;
+ height: auto;
+ position: relative;
+ margin-bottom: 24px;
+ }
+
+ .detail-checkbox {
+ margin-left: 28px;
+ float: left;
+ position: absolute;
+ top: 50%;
+ transform: translate(-50%, -50%);
+ }
+
+ .detail-content-content-text {
+ width: calc(100% - 56px);
+ margin-left: 56px;
+ border: 1px solid #EFF1F3;
+ border-radius: 4px;
+ overflow: hidden;
+
+ .detail-content-content-text-left {
+ width: calc(100% - 128px);
+ float: left;
+ border-right: 1px solid #EFF1F3;
+ padding: 24px;
+ box-sizing: border-box;
+ overflow: hidden;
+ }
+
+ .detail-content-content-text-right {
+ width: 128px;
+ float: left;
+ height: auto;
+ text-align: center;
+
+ .text-button-one {
+ display: inline-block;
+ width: 128px;
+ position: absolute;
+ top: 50%;
+ transform: translate(-50%, -50%);
+ }
+
+ .text-button {
+ margin-right: 8px;
+
+ }
+ }
+ }
+
+ .detail-content-left {
+ width: 50%;
+ display: inline-block;
+ float: left;
+ padding-right: 24px;
+ border-right: 1px #EFF1F3 solid;
+ }
+
+ .detail-content-right {
+ width: 50%;
+ display: inline-block;
+ float: left;
+ padding-left: 24px;
+ }
+
+ .detail-content-left-top {
+ font-size: 16px;
+ font-family: Blue Sky Noto;
+ font-weight: 400;
+ color: #040B29;
+ }
+
+ .detail-content-left-button {
+ font-size: 14px;
+ font-weight: 400;
+ color: #040B29;
+ margin-top: 10px;
+ }
+
+ .detail-content-bottom {
+ width: 100%;
+ margin-top: 14px;
+ padding: 24px;
+ box-sizing: border-box;
+ background: rgba(4, 11, 41, 0.0300);
+ border-radius: 4px;
+ float: left;
+ }
+
+ .detail-content-bottom-left {
+ width: 115px;
+ font-size: 14px;
+ font-weight: 400;
+ color: #040B29;
+ float: left;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ overflow: hidden;
+ }
+
+ .detail-content-bottom-right {
+ width: calc(50% - 115px);
+ float: left;
+ font-size: 14px;
+ font-weight: 400;
+ color: #040B29;
+ }
+
+ .detail-content-content-text-left-text {
+ width: 100%;
+ font-size: 14px;
+ font-weight: 400;
+ color: #040B29;
+ overflow: hidden;
+ display: -webkit-box;
+ text-overflow: ellipsis;
+ /*! autoprefixer: off */
+ -webkit-box-orient: vertical;
+ -webkit-line-clamp: 3;
+ /*! autoprefixer: on;*/
+ text-justify: inter-ideograph;
+ word-break: break-all
+ }
\ No newline at end of file
diff --git a/jero-web/src/views/documentTools/documentComparison/index.vue b/jero-web/src/views/documentTools/documentComparison/index.vue
index 8a0f581dd..cb3f06ed6 100644
--- a/jero-web/src/views/documentTools/documentComparison/index.vue
+++ b/jero-web/src/views/documentTools/documentComparison/index.vue
@@ -106,10 +106,10 @@
//url传参严格按照当前命名
url: {
list: '',
- deleteBatch:'',
+ deleteBatch: ''
},
loading: false,
- dataSource: [],
+ dataSource: [{}],
selectedRowKeys: [],
total: 0,
pageSize: 10,
@@ -203,7 +203,7 @@
}
},
mounted() {
- this.getList()
+ // this.getList()
},
methods: {
searchQuery() {
@@ -251,21 +251,24 @@
this.selectedRowKeys = value
},
comparisonResultsClick() {
-
+ let newUrl = this.$router.resolve({
+ path: '/comparisonResults'
+ })
+ window.open(newUrl.href, '_blank')
},
subscribe() {
},
- edit(){
+ edit() {
},
- initiatingProcessClick(){
+ initiatingProcessClick() {
let newUrl = this.$router.resolve({
- path: '/comparisonResults',
+ path: '/initiateDocumentComparison'
})
window.open(newUrl.href, '_blank')
},
- deleteData(val){
+ deleteData(val) {
let _this = this
this.$confirm({
content: _this.$t('ConfirmDelete'),
@@ -280,7 +283,7 @@
})
}
})
- },
+ }
}
}