diff --git a/src/views/remind/supCertRemindMsg.vue b/src/views/remind/supCertRemindMsg.vue
index 3523de6..a84f8e2 100644
--- a/src/views/remind/supCertRemindMsg.vue
+++ b/src/views/remind/supCertRemindMsg.vue
@@ -23,21 +23,20 @@
               
             
           
-
-          
-            
-              
-                
-                
-                
-                
-              
-            
-          
+          
+          
+          
+          
+          
+          
+          
+          
+          
+          
+          
+          
+          
+          
 
           
             
@@ -68,27 +67,29 @@
 
       
         
-        
-        
-        
-        
-        
+        
+        
+        
+        
+        
           
             {{ statusMap[scope.row.status] }}
           
         
-        
-          
-            {{ ignoreStatusMap[scope.row.ignoreStatus] }}
-          
-        
-        
+        
+        
+        
+        
+        
+
+        
+        
           
             {{ typeMap[scope.row.type] }}
           
         
-        
-        
+        
+        
         
           
             确认
             
-            忽略
-            
+            
+            
+            
+            
+            
+            
+            
           
         
       
@@ -136,6 +137,68 @@
         忽略30天
       
     
+
+
+    
+      
+        
+          
+            
+              
+            
+          
+
+          
+            
+              
+            
+          
+        
+        
+          
+            
+              
+            
+          
+
+          
+            
+              
+                
+                
+                
+              
+
+            
+          
+        
+        
+          
+            
+          
+        
+        
+          
+            
+          
+        
+      
+      
+    
+
   
 
 
@@ -181,7 +244,9 @@ export default {
         1: "配送企业名称",
         2: "生产企业名称",
         3: "产品名称"
-      }
+      },
+      confirmVisible: false,
+      confirmQuery: {},
     };
   },
   methods: {
@@ -226,26 +291,28 @@ export default {
           this.total = 0;
         });
     },
+
+
     confirmMsg(row) {
-      this.$prompt('请输入处理方式', '提示', {
-        confirmButtonText: '确定',
-        cancelButtonText: '取消',
-      }).then(({value}) => {
-        let params = {
-          id: row.id,
-          handleMsg: value
-        };
-        confirmMsg(params).then((res) => {
-          if (res.code === 20000) {
-            this.$message.success("已确认");
-            this.getList();
-          } else {
-            this.$message.error(res.message);
-          }
-        })
-      }).catch(() => {
-      });
+      this.confirmVisible = true;
+      this.confirmQuery = row;
     },
+    postConfirm() {
+      confirmMsg(this.confirmQuery).then((res) => {
+        if (res.code === 20000) {
+          this.confirmVisible = false;
+          this.$message.success("已确认");
+          this.getList();
+        } else {
+          this.$message.error(res.message);
+        }
+      })
+    },
+
+    closeDialog() {
+      this.confirmVisible = false;
+    },
+
     ignoreMsg(row) {
       this.ignoreVisible = true;
       this.currentId = row.id;
diff --git a/src/views/remind/supInvRemindMsg.vue b/src/views/remind/supInvRemindMsg.vue
index 0585aab..ad0e40d 100644
--- a/src/views/remind/supInvRemindMsg.vue
+++ b/src/views/remind/supInvRemindMsg.vue
@@ -10,7 +10,7 @@
                 style="width: 90%"
                 v-model="queryName"
                 :fetch-suggestions="queryProductName"
-                placeholder="情请输入物资名称"
+                placeholder="请输入物资名称"
                 clearable
                 @select="handleSelect"
                 @clear="clearQueryProduct"
@@ -46,19 +46,18 @@
             
           
 
-
-
-
-
-
-
-
+          
+          
+          
+          
+          
+          
+          
         
 
         
 
 
-
           
             
               
         
         
-
-        
+        
+        
         
           
             {{ typeMap[scope.row.type] }}
@@ -125,12 +124,12 @@
         
         
 
-
-
+        
+        
         
-
-
-
+        
+        
+        
         
         
         
@@ -180,6 +179,73 @@
         忽略30天
       
     
+
+
+    
+
+      
+        
+          
+            
+              
+            
+          
+
+          
+            
+              
+            
+          
+        
+        
+          
+            
+              
+            
+          
+
+          
+            
+              
+                
+                
+                
+                
+                
+              
+
+            
+          
+        
+        
+          
+            
+          
+        
+        
+          
+            
+          
+        
+
+      
+
+      
+    
+
   
 
 
@@ -233,7 +299,9 @@ export default {
       spaceList: [],
       ggxhList: [],
       ignoreVisible: false,
-      currentId: null
+      currentId: null,
+      confirmVisible: false,
+      confirmQuery: {},
     };
   },
   methods: {
@@ -349,25 +417,26 @@ export default {
       this.filterQuery.relId = null;
     },
     confirmMsg(row) {
-      this.$prompt('请输入处理方式', '提示', {
-        confirmButtonText: '确定',
-        cancelButtonText: '取消',
-      }).then(({value}) => {
-        let params = {
-          id: row.id,
-          handleMsg: value
-        };
-        confirmMsg(params).then((res) => {
-          if (res.code === 20000) {
-            this.$message.success("已确认");
-            this.getList();
-          } else {
-            this.$message.error(res.message);
-          }
-        })
-      }).catch(() => {
-      });
+      this.confirmVisible = true;
+      this.confirmQuery = row;
     },
+    postConfirm() {
+      confirmMsg(this.confirmQuery).then((res) => {
+        if (res.code === 20000) {
+          this.confirmVisible = false;
+          this.$message.success("已确认");
+          this.getList();
+        } else {
+          this.$message.error(res.message);
+        }
+      })
+    },
+
+    closeDialog() {
+      this.confirmVisible = false;
+    },
+
+
     ignoreMsg(row) {
       this.ignoreVisible = true;
       this.currentId = row.id;