From bbbc9bd7597830b53d5c92dfcf513468d5a7840f Mon Sep 17 00:00:00 2001
From: zhuzhuanzhuan
Date: 星期四, 19 十月 2023 16:15:13 +0800
Subject: [PATCH] 1、班次班制管理页面新增班次时如果并未选择开始与结束休息时间,应默认为空,而不是当前时间 2、班次班制管理页面新增或修改班次时如果选择跨天,则时间请求参数会混乱,应与不跨天时保持一致 3、班次班制管理页面表格数据新增增加表单项验证

---
 src/views/mdc/base/modules/DepartList/DepartListContent/DepartList.vue |   49 ++++++++++++++++++++++++++++++++++++++++---------
 1 files changed, 40 insertions(+), 9 deletions(-)

diff --git a/src/views/mdc/base/modules/DepartList/DepartListContent/DepartList.vue b/src/views/mdc/base/modules/DepartList/DepartListContent/DepartList.vue
index d37ed2c..9aea25f 100644
--- a/src/views/mdc/base/modules/DepartList/DepartListContent/DepartList.vue
+++ b/src/views/mdc/base/modules/DepartList/DepartListContent/DepartList.vue
@@ -334,7 +334,11 @@
             }
             //update-end---author:zhangyafei    Date:20201118  for锛氶�傞厤涓嶅垎椤电殑鏁版嵁鍒楄〃------------
           }else{
-            this.$message.warning(res.message)
+            // this.$message.warning(res.message)
+            this.$notification.warning({
+              message:'娑堟伅',
+              description:res.message
+            });
           }
         }).finally(() => {
           this.loading = false
@@ -346,7 +350,11 @@
           return
         }
         if (this.selectedRowKeys.length <= 0) {
-          this.$message.warning('璇烽�夋嫨涓�鏉¤褰曪紒');
+          // this.$message.warning('璇烽�夋嫨涓�鏉¤褰曪紒');
+          this.$notification.warning({
+            message:'娑堟伅',
+            description:"璇烽�夋嫨涓�鏉¤褰�"
+          });
           return;
         } else {
           var ids = "";
@@ -363,12 +371,20 @@
                 if (res.success) {
                   //閲嶆柊璁$畻鍒嗛〉闂
                   that.reCalculatePage(that.selectedRowKeys.length)
-                  that.$message.success(res.message);
+                  // that.$message.success(res.message);
+                  that.$notification.success({
+                    message:'娑堟伅',
+                    description:res.message
+                  });
                   that.loadData();
                   that.onClearSelected();
                   that.$emit('delectTree','')
                 } else {
-                  that.$message.warning(res.message);
+                  // that.$message.warning(res.message);
+                  that.$notification.warning({
+                    message:'娑堟伅',
+                    description:res.message
+                  });
                 }
               }).finally(() => {
                 that.loading = false;
@@ -387,12 +403,20 @@
           if (res.success) {
             //閲嶆柊璁$畻鍒嗛〉闂
             that.reCalculatePage(1)
-            that.$message.success(res.message);
+            // that.$message.success(res.message);
+            that.$notification.success({
+              message:'娑堟伅',
+              description:res.message
+            });
             that.loadData();
             that.onClearSelected();
             that.$emit('delectTree','')
           } else {
-            that.$message.warning(res.message);
+            // that.$message.warning(res.message);
+            that.$notification.warning({
+              message:'娑堟伅',
+              description:res.message
+            });
           }
         })
       },
@@ -406,12 +430,20 @@
           if (res.success) {
             //閲嶆柊璁$畻鍒嗛〉闂
            that.reCalculatePage(1)
-            that.$message.success(res.message);
+            // that.$message.success(res.message);
+            that.$notification.success({
+              message:'娑堟伅',
+              description:res.message
+            });
             that.loadData2();
             // that.onClearSelected();
             // that.$emit('delectTree','')
           } else {
-            that.$message.warning(res.message);
+            // that.$message.warning(res.message);
+            that.$notification.warning({
+              message:'娑堟伅',
+              description:res.message
+            });
           }
         })
       },
@@ -478,7 +510,6 @@
         this.selectedRowKeys = []
       },
       handleEdit: function (record) {
-        console.log(record)
         if (record.id) {
           this.$refs.modalForm.title = '缂栬緫'
           this.$refs.modalForm.disableSubmit = false

--
Gitblit v1.9.3