From 4936ba718f4ec2d069a9c28d07215573ed8548aa Mon Sep 17 00:00:00 2001
From: doum <doum>
Date: 星期五, 30 一月 2026 10:12:10 +0800
Subject: [PATCH] 修改简道云人员推送删除功能bug

---
 admin/src/components/business/OperaCarsWindow.vue |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/admin/src/components/business/OperaCarsWindow.vue b/admin/src/components/business/OperaCarsWindow.vue
index d61c16e..e7723c1 100644
--- a/admin/src/components/business/OperaCarsWindow.vue
+++ b/admin/src/components/business/OperaCarsWindow.vue
@@ -123,7 +123,7 @@
       //   }
       // })
     },
-    cateChange(node){
+    cateChange (node) {
       this.selectCate = node
     },
     // 瑙勮寖鍖栭�夐」鏁版嵁鐨勬柟娉�
@@ -136,7 +136,7 @@
         id: node.id,
         label: node.name,
         parentId: node.parentId,
-        children: node.childCategoryList,
+        children: node.childCategoryList
       }
       return node1
     },
@@ -161,7 +161,7 @@
     confirm () {
       console.log('form', this.form.cateId)
       const { form } = this
-      if(this.selectCate && this.selectCate.childCategoryList &&  this.selectCate.childCategoryList.length) {
+      if (this.selectCate && this.selectCate.childCategoryList && this.selectCate.childCategoryList.length) {
         return Message.error('璇烽�夋嫨浜岀骇鍒嗙被')
       }
       this.$refs.form.validate((valid) => {
@@ -187,14 +187,13 @@
     },
     getCate () {
       fetchList({
-        model: {type:1},
+        model: { type: 1 },
         capacity: 1000,
         page: 1
       }).then(res => {
         if (res && res.records && res.records.length > 0) {
           res.records[0].fsStatus = 1
           this.cateList = res.records || []
-
         }
       })
     },

--
Gitblit v1.9.3