Commit 060038c2 by wusiyi

feat: 收款账户新增支付宝授权

parent a121e7b6
...@@ -145,6 +145,7 @@ export default { ...@@ -145,6 +145,7 @@ export default {
} }
placeholder={item.placeholder || `请选择${item.name}`} placeholder={item.placeholder || `请选择${item.name}`}
value-key={item.valueKey || 'value'} value-key={item.valueKey || 'value'}
filterable={item.filterable || false}
clearable> clearable>
{item.options?.map((el, idx) => ( {item.options?.map((el, idx) => (
<el-option <el-option
......
...@@ -770,8 +770,9 @@ export default { ...@@ -770,8 +770,9 @@ export default {
prop: 'currencyType', prop: 'currencyType',
type: 'select', type: 'select',
name: '币种', name: '币种',
filterable: true,
options: this.currencyTypeList.map((item) => ({ options: this.currencyTypeList.map((item) => ({
label: item.currencyName, label: item.currencyName + '(' + item.currencyCode + ')',
value: item.currencyCode value: item.currencyCode
})) }))
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment