From 52e3605766d85b04f2952b537b3f6d8d6bd96a8b Mon Sep 17 00:00:00 2001 From: chengxiangling <291105840@qq.com> Date: 星期四, 15 五月 2025 12:22:36 +0800 Subject: [PATCH] 提交计划运行的搜索样优化 --- src/views/mainPlan/sheetMetalSupplyGap/index.vue | 14 ++++++-------- 1 files changed, 6 insertions(+), 8 deletions(-) diff --git a/src/views/mainPlan/sheetMetalSupplyGap/index.vue b/src/views/mainPlan/sheetMetalSupplyGap/index.vue index 81960a4..a00451c 100644 --- a/src/views/mainPlan/sheetMetalSupplyGap/index.vue +++ b/src/views/mainPlan/sheetMetalSupplyGap/index.vue @@ -8,15 +8,14 @@ v-show="showSearch" label-position="left" > - <el-row type="flex" justify="left"> - <el-col :span="locale === 'zh' ?7 :9"> + <el-row :gutter="20"> + <el-col :span="8"> <el-form-item - :label-width="locale === 'zh' ? '90px' : '130px'" + :style="{ width: '100%' }" :label="$t('plan.query.requireTraceID')" prop="requireTrackId" > <el-input - :style="{ width: locale === 'zh' ? '180px' : '230px' }" v-model="queryParams.requireTrackId" :placeholder="`${$t('common.common.placeholder')}${$t('plan.query.requireTraceID')}`" clearable @@ -24,10 +23,9 @@ /> </el-form-item> </el-col> - <el-col :span="locale === 'zh' ? 7: 9"> - <el-form-item :label-width="locale === 'zh' ? '48px' : '100px'" :label="$t('plan.query.itemNumber')" prop="bomLineCode"> + <el-col :span="8"> + <el-form-item :style="{ width: '100%' }" :label="$t('plan.query.itemNumber')" prop="bomLineCode"> <el-input - :style="{ width: locale === 'zh' ? '180px' : '210px' }" v-model="queryParams.bomLineCode" :placeholder="`${$t('common.common.placeholder')}${$t( 'plan.query.itemNumber' @@ -37,7 +35,7 @@ /> </el-form-item> </el-col> - <el-col :span="locale === 'zh' ? 10:6" style="text-align: right"> + <el-col :span="8" style="text-align: right"> <el-form-item class="column-with-margin"> <el-button type="primary" icon="Search" @click="handleQuery">{{ $t("common.common.query") -- Gitblit v1.9.3