From 7e9e0bff3ef15366693648f25810723ec557ed62 Mon Sep 17 00:00:00 2001 From: chengxiangling <291105840@qq.com> Date: 星期二, 13 五月 2025 08:52:11 +0800 Subject: [PATCH] 提交修改查询样式,工单计划管理等 --- src/views/mainPlan/gasPlanning/index.vue | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/views/mainPlan/gasPlanning/index.vue b/src/views/mainPlan/gasPlanning/index.vue index 3f7f647..decef5f 100644 --- a/src/views/mainPlan/gasPlanning/index.vue +++ b/src/views/mainPlan/gasPlanning/index.vue @@ -5,13 +5,14 @@ :model="queryParams" ref="queryRef" :inline="true" - label-width="100px" + :label-width="locale === 'zh' ? '68px' : '100px'" label-position="left" > <el-row type="flex" justify="left"> - <el-col :span="6"> + <el-col :span="locale === 'zh' ? 4 : 5"> <el-form-item :label="$t('plan.query.selectMonth')" prop="description"> <el-date-picker + :style="{ width: locale === 'zh' ? '200px' : '220px' }" clearable v-model="queryParams.date" type="month" @@ -21,7 +22,7 @@ </el-date-picker> </el-form-item> </el-col> - <el-col :span="18" style="text-align: right"> + <el-col :span="locale === 'zh' ? 20 : 19" style="text-align: right"> <el-form-item class="column-with-margin"> <el-button type="primary" icon="Search" @click="handleQuery" >{{$t("common.common.query")}}</el-button @@ -907,6 +908,9 @@ // } </script> <style lang="scss" scoped> +.column-with-margin { + margin-right: 0px; +} .box_container { width: 100%; margin: 20px auto; -- Gitblit v1.9.3