Skip to content

Commit

Permalink
feat:stage 审核支持 checklist 确认场景 TencentBlueKing#10920
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 18918
  • Loading branch information
useryuyu committed Sep 20, 2024
1 parent 7eb62a8 commit 98c1c33
Showing 1 changed file with 21 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,16 @@
</bk-option>
</bk-select>

<bk-checkbox
v-model="form.value"
<div
v-else-if="isCheakboxParam(form.valueType)"
class="clear"
>
</bk-checkbox>
<bk-checkbox
v-model="form.value"
>
</bk-checkbox>
<span class="clear-name">{{ form.chineseName }}</span>
</div>

<bk-radio-group
v-model="form.value"
Expand Down Expand Up @@ -83,3 +88,16 @@
}
}
</script>

<style lang="scss" scoped>
.clear {
display: flex;
align-items: center;
.bk-form-item label {
line-height: 30px;
}
.clear-name {
margin-left: 5px;
}
}
</style>

0 comments on commit 98c1c33

Please sign in to comment.