From 0864659a18852fc2604278cfe46d038189495428 Mon Sep 17 00:00:00 2001
From: chengxiangling <291105840@qq.com>
Date: 星期三, 14 五月 2025 17:35:25 +0800
Subject: [PATCH] 提交钣金计划大表等;
---
src/views/basicData/professionalFixedCycleManagement/index.vue | 31 +++----------------------------
1 files changed, 3 insertions(+), 28 deletions(-)
diff --git a/src/views/basicData/professionalFixedCycleManagement/index.vue b/src/views/basicData/professionalFixedCycleManagement/index.vue
index 482a439..c190cb8 100644
--- a/src/views/basicData/professionalFixedCycleManagement/index.vue
+++ b/src/views/basicData/professionalFixedCycleManagement/index.vue
@@ -1,6 +1,6 @@
<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-position="left" label-width="50px">
<el-row :gutter="20">
<el-col :span="6">
<el-form-item label="鏂欏彿" prop="itemNumber">
@@ -24,31 +24,6 @@
<el-row :gutter="10" class="mb8">
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
-
- <!-- <el-table v-loading="loading" :data="professionalFixedCycleManagementList" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column label="id" align="center" prop="id" />
- <el-table-column label="鏂欏彿" align="center" prop="itemNumber" />
- <el-table-column label="涓撲笟鎻忚堪" align="center" prop="professionalDescription" />
- <el-table-column label="涓撲笟" align="center" prop="professional" />
- <el-table-column label="涓撲笟鍥哄畾鍛ㄦ湡" align="center" prop="professionalFixedCycle" />
- <el-table-column label="闆嗘垚鏃ユ湡" align="center" prop="integrationDate" />
- <el-table-column label="閫傜敤宸ュ巶" align="center" prop="applicableFactories" />
- <el-table-column label="鎿嶄綔" align="center" class-name="small-padding fixed-width">
- <template #default="scope">
- <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['basicData:professionalFixedCycleManagement:edit']">淇敼</el-button>
- <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['basicData:professionalFixedCycleManagement:remove']">鍒犻櫎</el-button>
- </template>
- </el-table-column>
- </el-table>
-
- <pagination
- v-show="total>0"
- :total="total"
- v-model:page="queryParams.pageNum"
- v-model:limit="queryParams.pageSize"
- @pagination="getList"
- /> -->
<HxlhTable
style="width: 100%"
@@ -94,7 +69,6 @@
const ids = ref([]);
const single = ref(true);
const multiple = ref(true);
-const total = ref(0);
const title = ref("");
const height = ref(document.documentElement.clientHeight - 230 + "px;")
const queryPlants = ref({status: 1});
@@ -204,6 +178,7 @@
/** 鎼滅储鎸夐挳鎿嶄綔 */
function handleQuery() {
+ page.value.current = 1;
queryParams.value.pageNum = 1;
getList();
}
@@ -279,8 +254,8 @@
}
function changePageNo(currentPage) {
- queryParams.value.pageNum = currentPage;
page.value.current = currentPage;
+ queryParams.value.pageNum = currentPage;
getList();
}
--
Gitblit v1.9.3