|
|
@ -14,6 +14,7 @@ |
|
|
|
ref="resourceLoadComponents" |
|
|
|
:resourceId="resourceId" |
|
|
|
:resourceType="resourceType" |
|
|
|
:Height="tableHeight+'px'" |
|
|
|
@calculateTableHeight="calculateTableHeight" |
|
|
|
@handleCancelResource="handleCancelResource" /> |
|
|
|
</el-tab-pane> |
|
|
@ -45,13 +46,18 @@ export default { |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
tableHeight:0, |
|
|
|
evaluationLoading:false, |
|
|
|
evaluationDataNew: [], |
|
|
|
evaluationDataOld: [], |
|
|
|
activeName: 'evaluation' |
|
|
|
activeName: 'resourceLoad' |
|
|
|
} |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
calculateTableHeight(height) { |
|
|
|
console.log('%cindex.vue line:58 height', 'color: #007acc;', height); |
|
|
|
this.tableHeight = (height -10)+""; |
|
|
|
}, |
|
|
|
// 发布数据 |
|
|
|
handlePublic(param){ |
|
|
|
param.data = JSON.stringify(param.data); |
|
|
|