From 5fadb9533dae67ad5e2327f97a4faa0f5068de62 Mon Sep 17 00:00:00 2001
From: Lius <Lius2225@163.com>
Date: 星期四, 10 四月 2025 10:40:20 +0800
Subject: [PATCH] 流程添加

---
 src/views/eam/maintenance/EamWeekMaintenanceOrderList.vue |  183 +++++++++++++++++++++++++++++++++++++++------
 1 files changed, 158 insertions(+), 25 deletions(-)

diff --git a/src/views/eam/maintenance/EamWeekMaintenanceOrderList.vue b/src/views/eam/maintenance/EamWeekMaintenanceOrderList.vue
index 612ae38..39ccbf6 100644
--- a/src/views/eam/maintenance/EamWeekMaintenanceOrderList.vue
+++ b/src/views/eam/maintenance/EamWeekMaintenanceOrderList.vue
@@ -5,22 +5,27 @@
     <div class="table-page-search-wrapper">
       <a-form layout="inline" @keyup.enter.native="searchQuery">
         <a-row :gutter="24">
-          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+          <a-col :xl="4" :lg="7" :md="8" :sm="24">
             <a-form-item label="宸ュ崟鍙�">
               <a-input placeholder="璇疯緭鍏ュ伐鍗曞彿" v-model="queryParam.orderNum"></a-input>
             </a-form-item>
           </a-col>
-          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+          <a-col :xl="4" :lg="7" :md="8" :sm="24">
             <a-form-item label="璁惧缂栧彿">
               <lx-search-equipment-select placeholder="璇疯緭鍏ヨ澶囩紪鍙锋垨鍚嶇О鎼滅储" v-model="queryParam.equipmentId"></lx-search-equipment-select>
             </a-form-item>
           </a-col>
           <a-col :xl="6" :lg="7" :md="8" :sm="24">
-            <a-form-item label="淇濆吇鏃ユ湡">
-              <a-date-picker placeholder="璇烽�夋嫨淇濆吇鏃ユ湡" v-model="queryParam.maintenanceDate" format="YYYY-MM-DD" style="width: 100%"/>
+            <a-form-item label="璁″垝淇濆吇鏃ユ湡">
+              <a-range-picker v-model="queryParam.maintenanceDateRange" @change="onMaintenanceDateChange" format="YYYY-MM-DD" value-format="YYYY-MM-DD" />
             </a-form-item>
           </a-col>
-          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+          <a-col :xl="4" :lg="7" :md="8" :sm="24">
+            <a-form-item label="淇濆吇鐘舵��">
+              <j-dict-select-tag placeholder="璇烽�夋嫨淇濆吇鐘舵��" dict-code="week_maintenance_status" v-model="queryParam.maintenanceStatus" />
+            </a-form-item>
+          </a-col>
+          <a-col :xl="4" :lg="7" :md="8" :sm="24">
             <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
               <a-button type="primary" @click="searchQuery" icon="search">鏌ヨ</a-button>
               <a-button type="info" @click="searchReset" icon="reload" style="margin-left: 8px">閲嶇疆</a-button>
@@ -36,9 +41,13 @@
       <a-button @click="handleAdd" type="primary" icon="plus">鏂板</a-button>
       <a-dropdown v-if="selectedRowKeys.length > 0">
         <a-menu slot="overlay">
-          <a-menu-item key="1" @click="batchDel">
+          <a-menu-item key="1" @click="handlerBatchAbolish">
             <a-icon type="delete" />
-            鍒犻櫎
+            浣滃簾
+          </a-menu-item>
+          <a-menu-item key="1" @click="handlerBatchCollect">
+            <a-icon type="delete" />
+            棰嗗彇
           </a-menu-item>
         </a-menu>
         <a-button style="margin-left: 8px"> 鎵归噺鎿嶄綔
@@ -69,15 +78,23 @@
         @change="handleTableChange">
 
         <span slot="action" slot-scope="text, record">
-          <a @click="handleEdit(record)">缂栬緫</a>
+          <a v-if="record.maintenanceStatus === 'WAIT_MAINTENANCE'" @click="handleEdit(record)">缂栬緫</a>
           <a-divider type="vertical" />
           <a-dropdown>
             <a class="ant-dropdown-link">鏇村 <a-icon type="down" /></a>
             <a-menu slot="overlay">
-              <a-menu-item>
-                <a-popconfirm title="纭畾鍒犻櫎鍚�?" @confirm="() => handleDelete(record.id)">
-                  <a>鍒犻櫎</a>
+               <a-menu-item v-if="record.maintenanceStatus === 'WAIT_MAINTENANCE'">
+                <a-popconfirm title="纭畾棰嗗彇鍚�?" @confirm="() => handlerCollect(record.id)">
+                  <a>棰嗗彇</a>
                 </a-popconfirm>
+              </a-menu-item>
+              <a-menu-item v-if="record.maintenanceStatus === 'WAIT_MAINTENANCE'">
+                <a-popconfirm title="纭畾浣滃簾鍚�?" @confirm="() => handlerAbolish(record.id)">
+                  <a>浣滃簾</a>
+                </a-popconfirm>
+              </a-menu-item>
+              <a-menu-item >
+                <a @click="handleDetail(record)">璇︽儏</a>
               </a-menu-item>
             </a-menu>
           </a-dropdown>
@@ -97,6 +114,7 @@
 import EamWeekMaintenanceOrderModal from './modules/EamWeekMaintenanceOrderModal'
 import { JeecgListMixin } from '@/mixins/JeecgListMixin'
 import LxSearchEquipmentSelect from '@views/eam/equipment/modules/LxSearchEquipmentSelect.vue'
+import { deleteAction, getAction } from '@api/manage'
 
 export default {
   name: 'EamWeekMaintenanceOrderList',
@@ -126,17 +144,22 @@
           dataIndex: 'orderNum'
         },
         {
-          title: '璁惧ID',
+          title: '璁惧缂栧彿',
           align: 'center',
-          dataIndex: 'equipmentId'
+          dataIndex: 'equipmentCode'
         },
         {
-          title: '鏍囧噯ID',
+          title: '璁惧鍚嶇О',
           align: 'center',
-          dataIndex: 'standardId'
+          dataIndex: 'equipmentName'
         },
         {
-          title: '璁″垝鎵ц鏃ユ湡',
+          title: '鏍囧噯鍚嶇О',
+          align: 'center',
+          dataIndex: 'standardId_dictText'
+        },
+        {
+          title: '璁″垝淇濆吇鏃ユ湡',
           align: 'center',
           dataIndex: 'maintenanceDate'
         },
@@ -153,22 +176,22 @@
         {
           title: '淇濆吇浜�',
           align: 'center',
-          dataIndex: 'operator'
+          dataIndex: 'operator_dictText'
         },
         {
           title: '淇濆吇鐘舵��',
           align: 'center',
-          dataIndex: 'maintenanceStatus'
+          dataIndex: 'maintenanceStatus_dictText'
         },
         {
           title: '鍒涘缓鏂瑰紡',
           align: 'center',
-          dataIndex: 'creationMethod'
+          dataIndex: 'creationMethod_dictText'
         },
         {
           title: '纭浜�',
           align: 'center',
-          dataIndex: 'confirmUser'
+          dataIndex: 'confirmUser_dictText'
         },
         {
           title: '纭鏃堕棿',
@@ -176,14 +199,15 @@
           dataIndex: 'confirmTime'
         },
         {
-          title: '淇濆吇鎵ц鍥剧墖;id浠ラ�楀彿鍒嗛殧',
+          title: '淇濆吇鍥剧墖',
           align: 'center',
           dataIndex: 'imageFiles'
         },
         {
           title: '澶囨敞',
           align: 'center',
-          dataIndex: 'remark'
+          dataIndex: 'remark',
+          editable: true,
         },
         {
           title: '鎿嶄綔',
@@ -194,13 +218,122 @@
       ],
       url: {
         list: '/eam/weekMaintenanceOrder/list',
-        delete: '/eam/weekMaintenanceOrder/delete',
-        deleteBatch: '/eam/weekMaintenanceOrder/deleteBatch'
+        abolish: '/eam/weekMaintenanceOrder/abolish',
+        abolishBatch: '/eam/weekMaintenanceOrder/abolishBatch',
+        collect: '/eam/weekMaintenanceOrder/collect',
       }
     }
   },
   computed: {},
-  methods: {}
+  methods: {
+    onMaintenanceDateChange: function(value, dateString) {
+      this.queryParam.maintenanceDateBegin = dateString[0]
+      this.queryParam.maintenanceDateEnd = dateString[1]
+    },
+    handlerAbolish(id) {
+      if(!this.url.abolish){
+        this.$message.error("璇疯缃畊rl.abolish灞炴��!")
+        return
+      }
+      var that = this;
+      deleteAction(that.url.abolish, {id: id}).then((res) => {
+        if (res.success) {
+          //閲嶆柊璁$畻鍒嗛〉闂
+          that.reCalculatePage(1)
+          // that.$message.success(res.message);
+          that.$notification.success({
+            message:'娑堟伅',
+            description:res.message
+          });
+          that.loadData();
+        } else {
+          // that.$message.warning(res.message);
+          that.$notification.warning({
+            message:'娑堟伅',
+            description:res.message
+          });
+        }
+      });
+    },
+    handlerBatchAbolish() {
+      if(!this.url.abolishBatch){
+        this.$message.error("璇疯缃畊rl.abolishBatch灞炴��!")
+        return
+      }
+      if (this.selectedRowKeys.length <= 0) {
+        // this.$message.warning('璇烽�夋嫨涓�鏉¤褰曪紒');
+        this.$notification.warning({
+          message:'娑堟伅',
+          description:"璇烽�夋嫨涓�鏉¤褰�"
+        });
+        return;
+      } else {
+        var ids = "";
+        for (var a = 0; a < this.selectedRowKeys.length; a++) {
+          ids += this.selectedRowKeys[a] + ",";
+        }
+        var that = this;
+        this.$confirm({
+          title: "纭浣滃簾",
+          content: "鏄惁浣滃簾閫変腑鏁版嵁锛屽彧鏈夊緟淇濆吇鐘舵�佺殑鏁版嵁鎵嶅彲浣滃簾鎴愬姛?",
+          onOk: function () {
+            that.loading = true;
+            deleteAction(that.url.abolishBatch, {ids: ids}).then((res) => {
+              if (res.success) {
+                //閲嶆柊璁$畻鍒嗛〉闂
+                that.reCalculatePage(that.selectedRowKeys.length)
+                // that.$message.success(res.message);
+                that.$notification.success({
+                  message:'娑堟伅',
+                  description:res.message
+                });
+                that.loadData();
+                that.onClearSelected();
+              } else {
+                // that.$message.warning(res.message);
+                that.$notification.warning({
+                  message:'娑堟伅',
+                  description:res.message
+                });
+              }
+            }).finally(() => {
+              that.loading = false;
+            });
+          }
+        });
+      }
+    },
+    //鍗曚釜棰嗗彇
+    handlerCollect(id) {
+      if(!this.url.collect){
+        this.$message.error("璇疯缃畊rl.collect灞炴��!")
+        return
+      }
+      var that = this;
+      getAction(that.url.collect, {id: id}).then((res) => {
+        if (res.success) {
+          //閲嶆柊璁$畻鍒嗛〉闂
+          that.reCalculatePage(1)
+          // that.$message.success(res.message);
+          that.$notification.success({
+            message:'娑堟伅',
+            description:res.message
+          });
+          that.loadData();
+        } else {
+          // that.$message.warning(res.message);
+          that.$notification.warning({
+            message:'娑堟伅',
+            description:res.message
+          });
+        }
+      });
+    },
+    //鎵归噺棰嗗彇
+    handlerBatchCollect(){
+
+    }
+  }
 }
 </script>
 <style scoped>

--
Gitblit v1.9.3