|
|
|
|
@ -11,14 +11,14 @@
|
|
|
|
|
<div style="margin-bottom:15px;margin-top:15px;">
|
|
|
|
|
<span style="margin-right:15px;display: inline-block;width:45px;vertical-align: top;">年度 </span>
|
|
|
|
|
<el-radio-group style="width:90%" v-model="select.year" @change="changeYear">
|
|
|
|
|
<el-radio style="margin-right:5px;margin-bottom:5px" v-for="item in yearList" border
|
|
|
|
|
<el-radio style="margin-right:5px;margin-bottom:5px;margin-left:0" v-for="item in yearList" border
|
|
|
|
|
:label="item">{{item}}</el-radio>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<span style="margin-right:15px;display: inline-block;width:45px;vertical-align: top;">类型 </span>
|
|
|
|
|
<el-radio-group style="width:90%" @change="changeCategoryType" v-model="select.category_type_id">
|
|
|
|
|
<el-radio style="margin-right:5px;margin-bottom:5px" v-for="item in categoryTypeList" border
|
|
|
|
|
<el-radio style="margin-right:5px;margin-bottom:5px;margin-left:0" v-for="item in categoryTypeList" border
|
|
|
|
|
:label="item.id">{{item.title}}</el-radio>
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
</div>
|
|
|
|
|
@ -172,8 +172,8 @@
|
|
|
|
|
width:600,
|
|
|
|
|
customFn: row => {
|
|
|
|
|
return row._type === 'type' ? ( <span> <i style = "padding: 0 8px;color: rgb(239, 216, 117);"
|
|
|
|
|
class = "el-icon-folder-opened"> </i><span>{row.title}</span> </span>) : ( <span> < i style = "padding: 0 8px;"
|
|
|
|
|
class = "el-icon-document" > </i><span>{row.title}</span > </span>)
|
|
|
|
|
class = "el-icon-folder-opened"> </i><span style="text-wrap:wrap">{row.title}</span> </span>) : ( <span> < i style = "padding: 0 8px;"
|
|
|
|
|
class = "el-icon-document" > </i><span style="text-wrap:wrap">{row.title}</span > </span>)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
// {
|
|
|
|
|
@ -352,5 +352,6 @@
|
|
|
|
|
}
|
|
|
|
|
::v-deep .el-table .cell.el-tooltip{
|
|
|
|
|
white-space: wrap!important;
|
|
|
|
|
text-wrap:wrap
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|