You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
481 B
11 lines
481 B
|
|
<el-form-item :label="t('{LCASE_COLUMN_NAME}')" prop="{COLUMN_NAME}">
|
|
<el-select class="w-[280px]" v-model="{LCASE_CLASS_NAME}Table.searchParam.{COLUMN_NAME}" clearable :placeholder="t('{LCASE_COLUMN_NAME}Placeholder')">
|
|
<el-option
|
|
v-for="(item, index) in {DICT_TYPE}"
|
|
:key="index"
|
|
:label="item['{ITEM_LABEL}']"
|
|
:value="item['{ITEM_VALUE}']"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
|