From 820cb1b5244d536d9ae64f4ab053defe598ef1b4 Mon Sep 17 00:00:00 2001 From: wenwj <‘1106994300@qq.com> Date: 星期五, 11 四月 2025 15:50:57 +0800 Subject: [PATCH] 结构调整 --- src/views/basicData/processRoute/index.vue | 91 ++++++++++++++++++++++++--------------------- 1 files changed, 49 insertions(+), 42 deletions(-) diff --git a/src/views/aps/processRoute/index.vue b/src/views/basicData/processRoute/index.vue similarity index 92% rename from src/views/aps/processRoute/index.vue rename to src/views/basicData/processRoute/index.vue index a84a0aa..c43f85a 100644 --- a/src/views/aps/processRoute/index.vue +++ b/src/views/basicData/processRoute/index.vue @@ -1,6 +1,9 @@ <template> <div class="app-container"> - <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px"> + <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="90px"> + <el-row :gutter="20"> + <el-col + :span="6"> <el-form-item label="闆嗘垚鏃ユ湡" style="width: 308px"> <el-date-picker v-model="daterangeIntegrationDay" @@ -11,6 +14,9 @@ end-placeholder="缁撴潫鏃ユ湡" ></el-date-picker> </el-form-item> + </el-col> + <el-col + :span="6"> <el-form-item label="鏂欏彿" prop="itemNo"> <el-input v-model="queryParams.itemNo" @@ -19,42 +25,19 @@ @keyup.enter="handleQuery" /> </el-form-item> + </el-col> + <el-col + :span="12" + style="text-align: right;"> <el-form-item> <el-button type="primary" icon="Search" @click="handleQuery">鎼滅储</el-button> <el-button icon="Refresh" @click="resetQuery">閲嶇疆</el-button> </el-form-item> + </el-col> + </el-row> </el-form> <el-row :gutter="10" class="mb8"> - <!-- <el-col :span="1.5"> - <el-button - type="primary" - plain - icon="Plus" - @click="handleAdd" - v-hasPermi="['aps:processRoute:add']" - >鏂板</el-button> - </el-col> - <el-col :span="1.5"> - <el-button - type="success" - plain - icon="Edit" - :disabled="single" - @click="handleUpdate" - v-hasPermi="['aps:processRoute:edit']" - >淇敼</el-button> - </el-col> - <el-col :span="1.5"> - <el-button - type="danger" - plain - icon="Delete" - :disabled="multiple" - @click="handleDelete" - v-hasPermi="['aps:processRoute:remove']" - >鍒犻櫎</el-button> - </el-col> --> <el-col :span="1.5"> <el-button type="info" @@ -167,7 +150,7 @@ </template> <script setup name="ProcessRoute"> -import { listProcessRoute, getProcessRoute, delProcessRoute, addProcessRoute, updateProcessRoute,processRouteTempList,confirmProcessRoute } from "@/api/aps/processRoute"; +import { listProcessRoute, getProcessRoute, delProcessRoute, addProcessRoute, updateProcessRoute,processRouteTempList,confirmProcessRoute } from "@/api/basicData/processRoute"; import HxlhTable from '@/components/HxlhTable' import { getToken } from "@/utils/auth"; import { ref } from "vue"; @@ -251,19 +234,31 @@ { title: '鏈紑宸ユ暟閲�', field: 'notStartWorkCount', - width: 150, + width: 90, align:"center", }, { title: '宸插畬鎴愭暟閲�', field: 'completedCount', - width: 150, + width: 90, align:"center", }, { title: '搴熷純鏁伴噺', field: 'discardCount', - width: 150, + width: 90, + align:"center", + }, + { + title: '鏍囧噯宸ユ椂', + field: 'standardTime', + width: 90, + align:"center", + }, + { + title: '宸ュ簭鎺掑簭', + field: 'processOrder', + width: 90, align:"center", }, { @@ -291,7 +286,7 @@ { title: '宸ュ簭搴忓彿', field: 'processNumber', - width: 100, + width: 85, align:"center", }, { @@ -315,27 +310,39 @@ { title: '鏈紑宸ユ暟閲�', field: 'notStartWorkCount', - width: 150, + width: 140, align:"center", }, { title: '宸插畬鎴愭暟閲�', field: 'completedCount', - width: 150, + width: 140, align:"center", }, { title: '搴熷純鏁伴噺', field: 'discardCount', - width: 150, + width: 140, align:"center", }, { - title: '闆嗘垚鏃ユ湡', - field: 'integrationDay', - width: 160, + title: '鏍囧噯宸ユ椂', + field: 'standardTime', + width: 140, align:"center", - } + }, + { + title: '宸ュ簭鎺掑簭', + field: 'processOrder', + width: 140, + align:"center", + }, + // { + // title: '闆嗘垚鏃ユ湡', + // field: 'integrationDay', + // width: 160, + // align:"center", + // } ]); const data = reactive({ form: {}, -- Gitblit v1.9.3