From 1c15ef9287dced4bbde0c5e88b91eec2d375382c Mon Sep 17 00:00:00 2001
From: zhanghl <253316343@qq.com>
Date: 星期一, 21 四月 2025 18:01:10 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev
---
src/views/basicData/professionalFixedCycleManagement/index.vue | 270 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 270 insertions(+), 0 deletions(-)
diff --git a/src/views/basicData/professionalFixedCycleManagement/index.vue b/src/views/basicData/professionalFixedCycleManagement/index.vue
new file mode 100644
index 0000000..88459db
--- /dev/null
+++ b/src/views/basicData/professionalFixedCycleManagement/index.vue
@@ -0,0 +1,270 @@
+<template>
+ <div class="app-container">
+ <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
+ <el-row :gutter="20">
+ <el-col :span="6">
+ <el-form-item label="鏂欏彿" prop="itemNumber">
+ <el-input
+ v-model="queryParams.itemNumber"
+ placeholder="璇疯緭鍏ユ枡鍙�"
+ clearable
+ @keyup.enter="handleQuery"
+ />
+ </el-form-item>
+ </el-col>
+ <el-col :span="18" 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">
+ <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
+ </el-row>
+
+ <HxlhTable
+ style="width: 100%"
+ :columns="columns"
+ :data="professionalFixedCycleManagementList"
+ :loading="loading"
+ :height="height"
+ :page="page"
+ @changePageNo="changePageNo"
+ @changePageSize="changePageSize"
+ >
+ </HxlhTable>
+
+ <!-- 娣诲姞鎴栦慨鏀逛笓涓氬浐瀹氬懆鏈熺鐞嗗璇濇 -->
+ <el-dialog :title="title" v-model="open" width="500px" append-to-body>
+ <el-form ref="professionalFixedCycleManagementRef" :model="form" :rules="rules" label-width="80px">
+ <el-form-item label="鏂欏彿" prop="itemNumber">
+ <el-input v-model="form.itemNumber" placeholder="璇疯緭鍏ユ枡鍙�" />
+ </el-form-item>
+ </el-form>
+ <template #footer>
+ <div class="dialog-footer">
+ <el-button type="primary" @click="submitForm">纭� 瀹�</el-button>
+ <el-button @click="cancel">鍙� 娑�</el-button>
+ </div>
+ </template>
+ </el-dialog>
+ </div>
+</template>
+
+<script setup name="ProfessionalFixedCycleManagement">
+import { listProfessionalFixedCycleManagement, getProfessionalFixedCycleManagement, delProfessionalFixedCycleManagement, addProfessionalFixedCycleManagement, updateProfessionalFixedCycleManagement } from "@/api/basicData/professionalFixedCycleManagement/professionalFixedCycleManagement";
+import HxlhTable from '@/components/HxlhTable';
+import axios from 'axios';
+import { listAll_plant } from "@/api/basicData/plant";
+
+const { proxy } = getCurrentInstance();
+
+const professionalFixedCycleManagementList = ref([]);
+const open = ref(false);
+const loading = ref(true);
+const showSearch = ref(true);
+const ids = ref([]);
+const single = ref(true);
+const multiple = ref(true);
+const title = ref("");
+const height = ref(document.documentElement.clientHeight - 230 + "px;")
+const queryPlants = ref({status: 1});
+const plantList = ref([]);
+
+const data = reactive({
+ form: {},
+ queryParams: {
+ pageNum: 1,
+ pageSize: 10,
+ itemNumber: null,
+ },
+ rules: {
+ }
+});
+
+// 琛ㄦ牸閰嶇疆
+const columns = ref([
+ { type: 'seq', title: '搴忓彿', width: 60 },
+ {
+ title: '鏂欏彿',
+ field: 'itemNumber',
+ },
+ {
+ title: '涓撲笟鎻忚堪',
+ field: 'professionalDescription',
+ },
+ {
+ title: '涓撲笟',
+ field: 'professional',
+ },
+ {
+ title: '涓撲笟鍥哄畾鍛ㄦ湡',
+ field: 'professionalFixedCycle',
+ },
+ {
+ title: '闆嗘垚鏃ユ湡',
+ field: 'integrationDate',
+ },
+ {
+ title: '閫傜敤宸ュ巶',
+ field: 'applicableFactories',
+ formatter: (({ cellValue, row, column }) => {
+ if (cellValue) {
+ for(let i=0;i<plantList.value.length;i++){
+ if(cellValue===plantList.value[i].plantCode){
+ return plantList.value[i].plantName
+ }
+ }
+ }
+ return '';
+ })
+ },
+]);
+
+// 鍒嗛〉灞炴��
+const page = ref({
+ total: 0,
+ current: 1,
+ size: 10
+});
+
+const { queryParams, form, rules } = toRefs(data);
+
+/** 鏌ヨ涓撲笟鍥哄畾鍛ㄦ湡绠$悊鍒楄〃 */
+function getList() {
+ loading.value = true;
+ axios.all([
+ /** 鏌ヨ宸ュ巶鍒楄〃 */
+ listAll_plant(queryPlants.value),
+ listProfessionalFixedCycleManagement(queryParams.value)
+ ])
+ .then(axios.spread((response1, response2) => {
+ plantList.value = response1.data;
+ professionalFixedCycleManagementList.value = response2.rows;
+ page.value.total = response2.total;
+ loading.value = false;
+ }))
+ .catch(error => {
+ console.error('璇锋眰鍑洪敊:', error);
+ });
+}
+
+// 鍙栨秷鎸夐挳
+function cancel() {
+ open.value = false;
+ reset();
+}
+
+// 琛ㄥ崟閲嶇疆
+function reset() {
+ form.value = {
+ id: null,
+ itemNumber: null,
+ professionalDescription: null,
+ professional: null,
+ professionalFixedCycle: null,
+ integrationDate: null,
+ applicableFactories: null,
+ createBy: null,
+ createTime: null,
+ updateBy: null,
+ updateTime: null
+ };
+ proxy.resetForm("professionalFixedCycleManagementRef");
+}
+
+/** 鎼滅储鎸夐挳鎿嶄綔 */
+function handleQuery() {
+ page.value.current = 1;
+ queryParams.value.pageNum = 1;
+ getList();
+}
+
+/** 閲嶇疆鎸夐挳鎿嶄綔 */
+function resetQuery() {
+ proxy.resetForm("queryRef");
+ handleQuery();
+}
+
+// 澶氶�夋閫変腑鏁版嵁
+function handleSelectionChange(selection) {
+ ids.value = selection.map(item => item.id);
+ single.value = selection.length != 1;
+ multiple.value = !selection.length;
+}
+
+/** 鏂板鎸夐挳鎿嶄綔 */
+function handleAdd() {
+ reset();
+ open.value = true;
+ title.value = "娣诲姞涓撲笟鍥哄畾鍛ㄦ湡绠$悊";
+}
+
+/** 淇敼鎸夐挳鎿嶄綔 */
+function handleUpdate(row) {
+ reset();
+ const _id = row.id || ids.value
+ getProfessionalFixedCycleManagement(_id).then(response => {
+ form.value = response.data;
+ open.value = true;
+ title.value = "淇敼涓撲笟鍥哄畾鍛ㄦ湡绠$悊";
+ });
+}
+
+/** 鎻愪氦鎸夐挳 */
+function submitForm() {
+ proxy.$refs["professionalFixedCycleManagementRef"].validate(valid => {
+ if (valid) {
+ if (form.value.id != null) {
+ updateProfessionalFixedCycleManagement(form.value).then(response => {
+ proxy.$modal.msgSuccess("淇敼鎴愬姛");
+ open.value = false;
+ getList();
+ });
+ } else {
+ addProfessionalFixedCycleManagement(form.value).then(response => {
+ proxy.$modal.msgSuccess("鏂板鎴愬姛");
+ open.value = false;
+ getList();
+ });
+ }
+ }
+ });
+}
+
+/** 鍒犻櫎鎸夐挳鎿嶄綔 */
+function handleDelete(row) {
+ const _ids = row.id || ids.value;
+ proxy.$modal.confirm('鏄惁纭鍒犻櫎涓撲笟鍥哄畾鍛ㄦ湡绠$悊缂栧彿涓�"' + _ids + '"鐨勬暟鎹」锛�').then(function() {
+ return delProfessionalFixedCycleManagement(_ids);
+ }).then(() => {
+ getList();
+ proxy.$modal.msgSuccess("鍒犻櫎鎴愬姛");
+ }).catch(() => {});
+}
+
+/** 瀵煎嚭鎸夐挳鎿嶄綔 */
+function handleExport() {
+ proxy.download('basicData/professionalFixedCycleManagement/export', {
+ ...queryParams.value
+ }, `professionalFixedCycleManagement_${new Date().getTime()}.xlsx`)
+}
+
+function changePageNo(currentPage) {
+ page.value.current = currentPage;
+ queryParams.value.pageNum = currentPage;
+ getList();
+}
+
+function changePageSize(pageSize) {
+ page.value.current = 1;
+ queryParams.value.pageNum = 1;
+ queryParams.value.pageSize = pageSize;
+ getList();
+}
+
+getList();
+</script>
--
Gitblit v1.9.3