File tree Expand file tree Collapse file tree 5 files changed +12
-6
lines changed
nodes/intent-classify-node Expand file tree Collapse file tree 5 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 11export default {
2- title : 'Models ' ,
2+ title : 'Model ' ,
33 provider : 'Provider' ,
44 providerPlaceholder : 'Select Provider' ,
55 addModel : 'Add Model' ,
Original file line number Diff line number Diff line change 11<template >
2- <CardBox :title =" props.tool.name" :description =" props.tool.desc" class =" cursor" >
2+ <CardBox :title =" props.tool.name" :description =" props.tool.desc" class =" cursor tool-card " >
33 <template #icon >
44 <el-avatar
55 v-if =" isAppIcon(props.tool?.icon)"
3434 <span class =" card-footer-left color-secondary" >
3535 {{ `${$t('common.author')}: MaxKB` }}
3636 </span >
37- <div class =" card-footer-operation" @click.stop >
37+ <div class =" card-footer-operation mb-8 " @click.stop >
3838 <el-button @click =" emit('handleDetail')" >
3939 {{ $t('common.detail') }}
4040 </el-button >
@@ -63,7 +63,7 @@ const emit = defineEmits<{
6363 </script >
6464
6565<style lang="scss" scoped>
66- .el -card {
66+ .tool -card {
6767 :deep (.card-footer ) {
6868 & > div:first- of- type {
6969 flex : 1 ;
Original file line number Diff line number Diff line change @@ -339,6 +339,11 @@ defineExpose({ open })
339339
340340 .layout-container__left {
341341 background-color : var (--app-layout-bg-color );
342+ border-radius : 0 0 0 8px ;
343+ }
344+ .layout-container__right {
345+ background-color : var (--app-layout-bg-color );
346+ border-radius : 0 0 8px 0 ;
342347 }
343348
344349 .el-anchor {
Original file line number Diff line number Diff line change 5959 </el-dropdown >
6060 <el-dropdown v-if =" showOperate(nodeModel.type)" :teleported =" false" trigger =" click" >
6161 <el-button text >
62- <AppIcon iconName =" app-more" ></AppIcon >
62+ <AppIcon iconName =" app-more" class = " color-secondary " ></AppIcon >
6363 </el-button >
6464 <template #dropdown >
6565 <el-dropdown-menu style =" min-width : 80px " >
Original file line number Diff line number Diff line change 108108 <div
109109 v-for =" (item, index) in form_data.branch"
110110 :key =" item.id"
111+ class =" mb-8"
111112 >
112113 <el-form-item
113114 :prop =" `branch.${index}.content`"
117118 required: true,
118119 }"
119120 >
120- <el-row class = " mb-8 " :gutter =" 12" align =" middle" >
121+ <el-row :gutter =" 12" align =" middle" >
121122 <el-col :span =" 21" >
122123 <el-input
123124 v-model =" item.content"
You can’t perform that action at this time.
0 commit comments