|
|
|
@ -92,7 +92,8 @@
|
|
|
|
|
v-loading="load1"
|
|
|
|
|
:data="tableData"
|
|
|
|
|
style="width: 100%"
|
|
|
|
|
:height="530"
|
|
|
|
|
:height="tableHeight"
|
|
|
|
|
|
|
|
|
|
:border="false"
|
|
|
|
|
:row-class-name="tableRowClassName"
|
|
|
|
|
>
|
|
|
|
@ -234,6 +235,8 @@ import completePlan from "./echarts/completePlan";
|
|
|
|
|
import finishRate from "./echarts/finishRate";
|
|
|
|
|
import executionPlan from "./echarts/executionPlan";
|
|
|
|
|
import resetPwd from "../system/userc/profile/resetPwd.vue";
|
|
|
|
|
import detectZoom from "@/utils/detectZoom";
|
|
|
|
|
|
|
|
|
|
import {
|
|
|
|
|
listEnterprise,
|
|
|
|
|
getEnterprise,
|
|
|
|
@ -331,6 +334,8 @@ export default {
|
|
|
|
|
title: "",
|
|
|
|
|
isDialogShow: false,
|
|
|
|
|
tableInfoData: [],
|
|
|
|
|
tableHeight: 530,
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -342,7 +347,8 @@ export default {
|
|
|
|
|
created() {
|
|
|
|
|
this.queryParams.plannedYear = this.$moment(new Date()).format("yyyy");
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
|
|
// 设置表格高度 100% 125%
|
|
|
|
|
this.tableHeight = detectZoom == 100 ? 730 : 530;
|
|
|
|
|
if (JSON.parse(sessionStorage.getItem("USER_P_STATUS")) == 1) {
|
|
|
|
|
// 原始密码修改
|
|
|
|
|
this.resetPwd();
|
|
|
|
|