feat: 🚀 详情新增仓位字段
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user