diff --git a/src/views/task/graph/software/components/KafkaItem.vue b/src/views/task/graph/software/components/KafkaItem.vue index 6991b27..46edbb9 100644 --- a/src/views/task/graph/software/components/KafkaItem.vue +++ b/src/views/task/graph/software/components/KafkaItem.vue @@ -81,8 +81,8 @@ export default { }, topics: [ { - replication: 1, - partitions: 1, + replication: 2, + partitions: 10, topic_name: '' } ] @@ -116,8 +116,8 @@ export default { // 新增topic addTopic(data) { data.push({ - replication: 1, - partitions: 1, + replication: 2, + partitions: 10, topic_name: '' }) },