feat: 🚀 详情新增仓位字段

This commit is contained in:
2026-07-28 15:19:30 +08:00
parent 3bc63f076b
commit f530065b26
4 changed files with 31 additions and 1 deletions

View File

@@ -60,6 +60,25 @@
/>
</el-select>
</template>
<!-- 本地搜索下拉 -->
<template v-if="item.type === 'selectFilterable'">
<el-select
v-model="ruleForm[`${item.prop}`]"
:placeholder="item.placeholder"
clearable
:disabled="item.disabled"
style="width: 224px"
ref="selectRef"
filterable
>
<el-option
v-for="options in item.options"
:label="options.label"
:value="options.value"
:key="options.label"
/>
</el-select>
</template>
<!-- 单个日期选择 -->
<template v-if="item.type === 'date'">
<el-date-picker