样式调整
信息体组件自动带部门 tab标题显示业务功能名称 修改流程默认节点名称、修改流程线名称可为空 表单流程验证跳过
This commit is contained in:
@ -11,10 +11,14 @@
|
||||
value: 'key',
|
||||
}"
|
||||
@select="changeTarget"
|
||||
:placeholder="props.placeholder||t('请选择表单字段')"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import {useI18n} from "/@/hooks/web/useI18n";
|
||||
|
||||
const { t } = useI18n();
|
||||
const emit = defineEmits(['update:target']);
|
||||
const props = defineProps({
|
||||
target: {
|
||||
@ -25,6 +29,10 @@
|
||||
type: Array, //类型
|
||||
default: null, //默认值
|
||||
},
|
||||
placeholder:{
|
||||
type: String,
|
||||
required: false
|
||||
}
|
||||
});
|
||||
|
||||
function changeTarget(value, node) {
|
||||
|
||||
Reference in New Issue
Block a user