From af1c9e588f1de0240390648f9bb56aa486870aff Mon Sep 17 00:00:00 2001
From: chengxiangling <291105840@qq.com>
Date: 星期五, 16 五月 2025 17:40:18 +0800
Subject: [PATCH] 提交高度修改;
---
src/views/mainPlan/sheetMetalOrderManage/index.vue | 58 ++++++++++++----------------------------------------------
1 files changed, 12 insertions(+), 46 deletions(-)
diff --git a/src/views/mainPlan/sheetMetalOrderManage/index.vue b/src/views/mainPlan/sheetMetalOrderManage/index.vue
index 3a5b4b2..8a5e536 100644
--- a/src/views/mainPlan/sheetMetalOrderManage/index.vue
+++ b/src/views/mainPlan/sheetMetalOrderManage/index.vue
@@ -8,15 +8,14 @@
v-show="showSearch"
label-position="left"
>
- <el-row type="flex" justify="left">
- <el-col :span="12">
+ <el-row :gutter="20">
+ <el-col :span="6">
<el-form-item
- :label-width="locale == 'zh' ? '80px' : '160px'"
+ :style="{ width: '100%' }"
:label="$t('plan.query.workOrderNo')"
prop="workOrderNo"
>
<el-input
- :style="{ width: '280px' }"
v-model="queryParams.workOrderNo"
:placeholder="`${$t('common.common.placeholder')}${$t(
'plan.query.workOrderNo'
@@ -26,14 +25,13 @@
/>
</el-form-item>
</el-col>
- <el-col :span="12">
+ <el-col :span="6">
<el-form-item
- :label-width="locale == 'zh' ? '100px' : '200px'"
+ :style="{ width: '100%' }"
:label="$t('plan.query.requireTraceID')"
prop="requireTrackId"
>
<el-input
- :style="{ width: '280px' }"
v-model="queryParams.requireTrackId"
:placeholder="`${$t('common.common.placeholder')}${$t(
'plan.query.requireTraceID'
@@ -43,16 +41,13 @@
/>
</el-form-item>
</el-col>
- </el-row>
- <el-row type="flex" justify="left">
- <el-col :span="12">
+ <el-col :span="6">
<el-form-item
- :label-width="locale == 'zh' ? '80px' : '160px'"
+ :style="{ width: '100%' }"
:label="$t('plan.query.itemNumber')"
prop="mainPartNumber"
>
<el-input
- :style="{ width: '280px' }"
v-model="queryParams.mainPartNumber"
:placeholder="`${$t('common.common.placeholder')}${$t(
'plan.query.itemNumber'
@@ -62,25 +57,15 @@
/>
</el-form-item>
</el-col>
- <el-col :span="12">
+ <el-col :span="6">
<el-form-item
- :label-width="locale == 'zh' ? '100px' : '200px'"
+ :style="{ width: '100%' }"
:label="$t('plan.table.delayRiskIdentification')"
prop="hasDelayRisk"
>
- <!-- <el-input
- :style="{ width: locale == 'zh' ? '200px' : '280px' }"
- v-model="queryParams.hasDelayRisk"
- :placeholder="`${$t('common.common.placeholder')}${$t(
- 'plan.table.delayRiskIdentification'
- )}`"
- clearable
- @keyup.enter="handleQuery"
- /> -->
<el-select
clearable
v-model="queryParams.hasDelayRisk"
- style="width: 280px"
>
<el-option
v-for="item in delayRiskOptions"
@@ -89,26 +74,6 @@
:value="item.value"
/>
</el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col
- :span="24"
- style="
- display: flex;
- justify-content: flex-end;
- align-item: center;
- text-align: right;
- "
- >
- <el-form-item class="column-with-margin">
- <el-button type="primary" icon="Search" @click="handleQuery">{{
- $t("common.common.query")
- }}</el-button>
- <el-button icon="Refresh" @click="resetQuery">{{
- $t("common.common.reset")
- }}</el-button>
</el-form-item>
</el-col>
</el-row>
@@ -139,7 +104,8 @@
</el-col>
<right-toolbar
v-model:showSearch="showSearch"
- @queryTable="getList"
+ @queryTable="handleQuery"
+ @resetTable="resetQuery"
></right-toolbar>
</el-row>
<HxlhTable
@@ -353,7 +319,7 @@
const shopList = ref([]);
const allShopList = ref([]);
const processList = ref([]);
-const height = ref(document.documentElement.clientHeight - 320 + "px;");
+const height = ref(document.documentElement.clientHeight - 220 + "px;");
const heightSub = ref(document.documentElement.clientHeight - 200 + "px;");
const heightSubUpdate = ref(document.documentElement.clientHeight - 270 + "px;");
// 琛ㄦ牸閰嶇疆-鍒楄〃
--
Gitblit v1.9.3