修改禅道已知bug

This commit is contained in:
qq787203167
2022-08-11 17:57:01 +08:00
parent 1236940685
commit 20f8881e02
4 changed files with 31 additions and 8 deletions
@@ -396,10 +396,18 @@
} }
.button-text { .button-text {
width: 73px; width: 88px;
overflow: hidden; overflow: hidden;
padding: 0 8px; padding: 0 8px;
box-sizing: border-box; float: right;
}
::v-deep .button-text span {
width: 64px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-top: 4px;
} }
</style> </style>
<style> <style>
@@ -65,11 +65,14 @@
<div class="detail-content-left-button" v-html="item.itemsTextRight"></div> <div class="detail-content-left-button" v-html="item.itemsTextRight"></div>
</div> </div>
<div class="detail-content-bottom"> <div class="detail-content-bottom">
<div class="detail-content-bottom-left" :title="$t('comparisonDifferenceComment')"> <div class="detail-content-bottom-left"
:class="{'detail-content-bottom-left-text':language == 'en-us' ? true:false}"
:title="$t('comparisonDifferenceComment')">
<a-icon type="message"/> <a-icon type="message"/>
{{$t('comparisonDifferenceComment')}}: {{$t('comparisonDifferenceComment')}}:
</div> </div>
<div class="detail-content-bottom-right"> <div class="detail-content-bottom-right"
:class="{'detail-content-bottom-right-text':language == 'en-us' ? true:false}">
{{item.comment}} {{item.comment}}
</div> </div>
</div> </div>
@@ -172,6 +175,7 @@
isDisplay: false, isDisplay: false,
fullCheckbox: false, fullCheckbox: false,
resultData: {}, resultData: {},
language: '',
url: { url: {
exportData: '/compare/sarFileCompareItemComment/exportResXls' exportData: '/compare/sarFileCompareItemComment/exportResXls'
} }
@@ -183,6 +187,7 @@
} else { } else {
this.isDisplay = true this.isDisplay = true
} }
this.language = localStorage.getItem('language') || ''
this.getData() this.getData()
}, },
methods: { methods: {
@@ -390,7 +395,7 @@
} }
.doc-detail-right { .doc-detail-right {
width: 300px; width: 800px;
line-height: 68px; line-height: 68px;
/*display: flex;*/ /*display: flex;*/
text-align: right; text-align: right;
@@ -620,4 +625,12 @@
.detail-content-header-content-left-active { .detail-content-header-content-left-active {
width: 50% !important; width: 50% !important;
} }
.detail-content-bottom-left-text {
width: 256px;
}
.detail-content-bottom-right-text {
width: calc(50% - 256px);
}
</style> </style>
@@ -67,7 +67,7 @@
/> />
</div> </div>
<div class="box-button-standard"> <div class="box-button-standard">
<span class="box-button-standard-left"> <span class="box-button-standard-left" :title="$t('selectedStandard')">
{{$t('selectedStandard')}} {{$t('selectedStandard')}}
</span> </span>
<span class="box-button-standard-right" <span class="box-button-standard-right"
@@ -131,7 +131,7 @@
/> />
</div> </div>
<div class="box-button-standard"> <div class="box-button-standard">
<span class="box-button-standard-left"> <span class="box-button-standard-left" :title="$t('selectedStandard')">
{{$t('selectedStandard')}} {{$t('selectedStandard')}}
</span> </span>
<span class="box-button-standard-right" <span class="box-button-standard-right"
@@ -516,6 +516,8 @@
.box-button-standard-left { .box-button-standard-left {
width: 111px; width: 111px;
height: 46px; height: 46px;
padding: 0 6px;
box-sizing: border-box;
display: inline-block; display: inline-block;
border: 1px solid #CED0D8; border: 1px solid #CED0D8;
border-right: none; border-right: none;
@@ -213,7 +213,7 @@
title: this.$t('operation'), title: this.$t('operation'),
align: 'center', align: 'center',
fixed: 'right', fixed: 'right',
width: 260, width: 310,
scopedSlots: { customRender: 'operation' } scopedSlots: { customRender: 'operation' }
} }
] ]