From 444ba76f4cca8a9df3faf61ab33ec631aec7fbba Mon Sep 17 00:00:00 2001 From: chengxiangling <291105840@qq.com> Date: 星期五, 16 五月 2025 16:59:12 +0800 Subject: [PATCH] 提交right-toolbar组件事件调用计划运行模块 --- src/views/mainPlan/gasProduceStatics/index.vue | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/views/mainPlan/gasProduceStatics/index.vue b/src/views/mainPlan/gasProduceStatics/index.vue index 2051343..8331702 100644 --- a/src/views/mainPlan/gasProduceStatics/index.vue +++ b/src/views/mainPlan/gasProduceStatics/index.vue @@ -9,7 +9,7 @@ label-position="left" > <el-row :gutter="20"> - <el-col :span="8"> + <el-col :span="6"> <el-form-item :label="$t('plan.query.statistical')" :style="{ width: '100%' }"> <el-select v-model="queryParams.searchType" @@ -25,9 +25,9 @@ </el-select> </el-form-item> </el-col> - <el-col :span="8"> + <el-col :span="6"> <el-form-item - :style="{ width: '100%' }" + :style="{ width: '250px' }" :label=" !dayCom ? $t('plan.query.selectDateRange') @@ -36,6 +36,7 @@ > <div v-if="!dayCom"> <el-date-picker + :style="{ width: '100%' }" v-model="queryParams.monthRange" type="monthrange" :range-separator="$t('plan.placeholder.to')" @@ -45,6 +46,7 @@ </div> <div v-else> <el-date-picker + :style="{ width: '100%' }" v-model="queryParams.monthDays" type="month" :placeholder="$t('plan.placeholder.selectMonth')" @@ -52,7 +54,7 @@ </div> </el-form-item> </el-col> - <el-col :span="8" v-if="dayCom"> + <el-col :span="6" v-if="dayCom"> <el-form-item :label="$t('basic.table.applicableFactories')" prop="plant" @@ -131,7 +133,7 @@ const { aps_factory } = proxy.useDict("aps_factory"); const loading = ref(false); const gridRef = ref(); -const height = ref(document.documentElement.clientHeight - 180 + "px;"); +const height = ref(document.documentElement.clientHeight - 170 + "px;"); const headers = ref([]); // const exportData = ref([]); const showSearch = ref(true); -- Gitblit v1.9.3