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 | 17 ++++++++---------
1 files changed, 8 insertions(+), 9 deletions(-)
diff --git a/admin/src/components/business/OperaCarsWindow.vue b/admin/src/components/business/OperaCarsWindow.vue
index 2b59642..e7723c1 100644
--- a/admin/src/components/business/OperaCarsWindow.vue
+++ b/admin/src/components/business/OperaCarsWindow.vue
@@ -42,10 +42,10 @@
noOptionsText="娌℃湁鍙�夐」"
noResultsText="娌℃湁鍖归厤鐨勭粨鏋�" />
<!-- <el-select v-model="form.groupId" @change="changeSel" clearable filterable placeholder="璇烽�夋嫨">
- <template v-for="item in companyList">
- <el-option v-if="item.countNum && item.countNum>0" :key="item.id" :label="item.name" :value="item.id">
- </el-option>
- </template>
+ <template v-for="item in companyList">
+ <el-option v-if="item.countNum && item.countNum>0" :key="item.id" :label="item.name" :value="item.id">
+ </el-option>
+ </template>
</el-select>-->
</el-form-item>
<el-form-item label="閫夋嫨杞︿富锛�" prop="memberId">
@@ -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: {},
+ 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