10 changed files with 9519 additions and 26 deletions
File diff suppressed because it is too large
@ -1,15 +1,52 @@ |
|||||
<template> |
<template> |
||||
|
|
||||
|
|
||||
<el-input v-model="input" style="width: 240px" placeholder="" /> |
<!-- <el-input v-model="input" style="width: 240px" placeholder="" /> --> |
||||
|
<el-select v-model="value1" placeholder="请选择" style="width: 240px"> |
||||
|
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" /> |
||||
|
</el-select> |
||||
|
|
||||
</template> |
</template> |
||||
|
|
||||
<script setup> |
<script setup> |
||||
|
|
||||
</script> |
|
||||
|
|
||||
<style> |
const props = defineProps({ |
||||
|
// eslint-disable-next-line vue/require-default-prop |
||||
|
data: { |
||||
|
type: Object, |
||||
|
} |
||||
|
}) |
||||
|
|
||||
|
const value1 = ref('') |
||||
|
|
||||
|
const options = [ |
||||
|
{ |
||||
|
value: 'Option1', |
||||
|
label: 'Option1', |
||||
|
}, |
||||
|
{ |
||||
|
value: 'Option2', |
||||
|
label: 'Option2', |
||||
|
}, |
||||
|
{ |
||||
|
value: 'Option3', |
||||
|
label: 'Option3', |
||||
|
}, |
||||
|
{ |
||||
|
value: 'Option4', |
||||
|
label: 'Option4', |
||||
|
}, |
||||
|
{ |
||||
|
value: 'Option5', |
||||
|
label: 'Option5', |
||||
|
}, |
||||
|
] |
||||
|
onMounted(()=>{ |
||||
|
console.log(props.data.control.hideConditionHtml) |
||||
|
console.log(props.data.control.dataRangeConditionHtml) |
||||
|
}) |
||||
|
|
||||
|
</script> |
||||
|
|
||||
</style> |
<style></style> |
||||
Loading…
Reference in new issue