修改禅道已知bug
This commit is contained in:
+65
-14
@@ -39,22 +39,22 @@
|
|||||||
<!-- </div>-->
|
<!-- </div>-->
|
||||||
<a-card :bordered="false" class="box-clause" style="margin-top: 20px"
|
<a-card :bordered="false" class="box-clause" style="margin-top: 20px"
|
||||||
v-for="(item,index) in dataSource">
|
v-for="(item,index) in dataSource">
|
||||||
<div class="table-operator-admin">
|
<!-- <div class="table-operator-admin">-->
|
||||||
<div class="operator-text" v-if="item.id" :class="{'operator-text-feed':index == 0 ? true:false}"
|
<!-- <div class="operator-text" v-if="item.id" :class="{'operator-text-feed':index == 0 ? true:false}"-->
|
||||||
style="font-size: 16px">
|
<!-- style="font-size: 16px">-->
|
||||||
{{$t('engineer')+item.createBy+$t('feedbackResults')}}
|
<!-- {{$t('engineer')+item.createBy+$t('feedbackResults')}}-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
<div class="text-results" v-if="item.id">
|
<!-- <div class="text-results" v-if="item.id">-->
|
||||||
{{$t('complianceResults')}}:{{item.complianceResultName}}
|
<!-- {{$t('complianceResults')}}:{{item.complianceResultName}}-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
</div>
|
<!-- </div>-->
|
||||||
<div class="table-operator-admin-right">
|
<div class="table-operator-admin-right">
|
||||||
<div @click="fileExportClick" v-if="index == 0" class="operator-text-index">
|
<div @click="fileExportClick" v-if="index == 0" class="operator-text-index">
|
||||||
<a-icon type="export" :rotate="-90"/>
|
<a-icon type="export" :rotate="-90"/>
|
||||||
{{$t('fileExport')}}
|
{{$t('fileExport')}}
|
||||||
</div>
|
</div>
|
||||||
|
<!-- style="margin-left: 18px"-->
|
||||||
<a-table
|
<a-table
|
||||||
style="margin-left: 18px"
|
|
||||||
ref="table"
|
ref="table"
|
||||||
size="middle"
|
size="middle"
|
||||||
:loading="loading"
|
:loading="loading"
|
||||||
@@ -96,8 +96,8 @@
|
|||||||
return {
|
return {
|
||||||
queryParam: {},
|
queryParam: {},
|
||||||
dataSource: [],
|
dataSource: [],
|
||||||
userInfoQuery:{},
|
userInfoQuery: {},
|
||||||
administrators:false,
|
administrators: false,
|
||||||
url: {
|
url: {
|
||||||
list: '/lawsTechnologyEvaluation/lawsTechnologyEvaluationComplianceResultEO/list',
|
list: '/lawsTechnologyEvaluation/lawsTechnologyEvaluationComplianceResultEO/list',
|
||||||
exportData: 'lawsTechnologyEvaluation/lawsTechnologyEvaluationComplianceResultEO/exportZip'
|
exportData: 'lawsTechnologyEvaluation/lawsTechnologyEvaluationComplianceResultEO/exportZip'
|
||||||
@@ -106,6 +106,44 @@
|
|||||||
loading: false,
|
loading: false,
|
||||||
|
|
||||||
columns: [
|
columns: [
|
||||||
|
{
|
||||||
|
title: this.$t('engineer'),
|
||||||
|
dataIndex: 'createBy',
|
||||||
|
align: 'center',
|
||||||
|
width: 160,
|
||||||
|
ellipsis: true,
|
||||||
|
customRender: (value, row, index) => {
|
||||||
|
const obj = {
|
||||||
|
children: value,
|
||||||
|
attrs: {}
|
||||||
|
}
|
||||||
|
if (index === 0) {
|
||||||
|
obj.attrs.rowSpan = row.indexData
|
||||||
|
} else {
|
||||||
|
obj.attrs.rowSpan = 0
|
||||||
|
}
|
||||||
|
return obj
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: this.$t('complianceResults'),
|
||||||
|
dataIndex: 'complianceResultName',
|
||||||
|
align: 'center',
|
||||||
|
width: 160,
|
||||||
|
ellipsis: true,
|
||||||
|
customRender: (value, row, index) => {
|
||||||
|
const obj = {
|
||||||
|
children: value,
|
||||||
|
attrs: {}
|
||||||
|
}
|
||||||
|
if (index === 0) {
|
||||||
|
obj.attrs.rowSpan = row.indexData
|
||||||
|
} else {
|
||||||
|
obj.attrs.rowSpan = 0
|
||||||
|
}
|
||||||
|
return obj
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: this.$t('relevantSections'),
|
title: this.$t('relevantSections'),
|
||||||
dataIndex: 'relatedSection',
|
dataIndex: 'relatedSection',
|
||||||
@@ -190,6 +228,18 @@
|
|||||||
getAction(this.url.list, query).then((res) => {
|
getAction(this.url.list, query).then((res) => {
|
||||||
if (res.success) {
|
if (res.success) {
|
||||||
this.dataSource = res.result || []
|
this.dataSource = res.result || []
|
||||||
|
if (this.dataSource && this.dataSource.length > 0) {
|
||||||
|
this.dataSource.forEach(val => {
|
||||||
|
if (val.lawsTechnologyEvaluationResultEOList && val.lawsTechnologyEvaluationResultEOList.length > 0) {
|
||||||
|
val.lawsTechnologyEvaluationResultEOList.forEach(ol => {
|
||||||
|
ol.indexData = val.lawsTechnologyEvaluationResultEOList.length
|
||||||
|
ol.complianceResultName = val.complianceResultName
|
||||||
|
ol.createBy = val.createBy
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
console.log(this.dataSource)
|
||||||
if (this.dataSource.length == 0) {
|
if (this.dataSource.length == 0) {
|
||||||
this.dataSource.push({
|
this.dataSource.push({
|
||||||
name: ''
|
name: ''
|
||||||
@@ -353,9 +403,10 @@
|
|||||||
|
|
||||||
.table-operator-admin-right {
|
.table-operator-admin-right {
|
||||||
float: left;
|
float: left;
|
||||||
width: calc(100% - 240px);
|
width: 100%;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
border-left: 1px solid #e8e8e8;
|
margin-bottom: 20px;
|
||||||
|
/*border-left: 1px solid #e8e8e8;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.operator-text-index {
|
.operator-text-index {
|
||||||
|
|||||||
Reference in New Issue
Block a user