|
|
|
@ -11,13 +11,13 @@
|
|
|
|
|
<div class="enforce-the-law-title">
|
|
|
|
|
<div class="filtrate-condition">
|
|
|
|
|
<div class="select-input">
|
|
|
|
|
<div class="select-span">年月:</div>
|
|
|
|
|
<div class="select-span">年份:</div>
|
|
|
|
|
<div>
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="queryParms.year"
|
|
|
|
|
type="month"
|
|
|
|
|
placeholder="请选择"
|
|
|
|
|
value-format="yyyy-MM"
|
|
|
|
|
type="year"
|
|
|
|
|
placeholder="请选择年份"
|
|
|
|
|
value-format="yyyy"
|
|
|
|
|
size="small"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
@ -89,9 +89,9 @@
|
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="selection" width="55"></el-table-column>
|
|
|
|
|
<el-table-column prop="year" label="计划年月" header-align="center">
|
|
|
|
|
<el-table-column prop="year" label="计划年份" header-align="center">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ $moment(new Date(scope.row.year)).format("yyyy-MM") }}
|
|
|
|
|
{{ $moment(new Date(scope.row.year)).format("yyyy") }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
@ -270,7 +270,7 @@
|
|
|
|
|
<div class="filtrate">
|
|
|
|
|
<el-descriptions :column="2" border>
|
|
|
|
|
<el-descriptions-item label="计划年份">
|
|
|
|
|
{{ $moment(new Date(details.year)).format("yyyy-MM") }}
|
|
|
|
|
{{ $moment(new Date(details.year)).format("yyyy") }}
|
|
|
|
|
</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="企业名称">
|
|
|
|
|
{{ details.enterpriseName }}
|
|
|
|
@ -294,8 +294,8 @@
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import myPagination from "@/views/components/myPagination/index.vue";
|
|
|
|
|
import { Loading } from "element-ui";
|
|
|
|
|
import executive from "./echarts/executive";
|
|
|
|
@ -640,7 +640,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
::v-deep .el-descriptions-row th {
|
|
|
|
|
width: 20% !important;
|
|
|
|
|
font-size: 14px;
|
|
|
|
@ -934,4 +934,3 @@ export default {
|
|
|
|
|
// line-height: 40px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
|