mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-01-02 11:18:20 +00:00
12 lines
481 B
Plaintext
12 lines
481 B
Plaintext
|
|
<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>
|