|
|
|
@ -1,6 +1,6 @@ |
|
|
|
<template> |
|
|
|
<section class="page-container padding"> |
|
|
|
<el-row class="page-main " style="overflow-x: hidden;"> |
|
|
|
<el-row class="page-main " :style="{overflowX: 'hidden',height:maxTableHeight+'px'}" ref="table"> |
|
|
|
<el-row style="margin-bottom:10px"> |
|
|
|
<el-card class="box-card" style="padding:0px ;height:100px"> |
|
|
|
<div> |
|
|
|
@ -364,6 +364,7 @@ export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
isActive: true, |
|
|
|
maxTableHeight:300, |
|
|
|
options:{ |
|
|
|
projectType:[], |
|
|
|
urgencyLevel:[], |
|
|
|
@ -755,6 +756,7 @@ export default { |
|
|
|
|
|
|
|
mounted() { |
|
|
|
this.$nextTick(() => { |
|
|
|
this.maxTableHeight=util.calcTableMaxHeight(this.$refs.table.$el) |
|
|
|
}); |
|
|
|
listOption([{categoryId:'all',itemCode:'projectType'},{categoryId:'all',itemCode:'urgencyLevel'},{categoryId:'all',itemCode:'priority'},{categoryId:'all',itemCode:'projectStatus'}] ).then(res=>{ |
|
|
|
if(res.data.tips.isOk){ |
|
|
|
|