|
@@ -2,7 +2,7 @@
|
|
|
<template>
|
|
<template>
|
|
|
<app-view>
|
|
<app-view>
|
|
|
<template #header>
|
|
<template #header>
|
|
|
- <app-filter :options="filterOptons" />
|
|
|
|
|
|
|
+ <app-filter :options="filterOptions" />
|
|
|
</template>
|
|
</template>
|
|
|
<app-table :data="dataList" :columns="tableColumns" :loading="loading">
|
|
<app-table :data="dataList" :columns="tableColumns" :loading="loading">
|
|
|
<template #headerLeft>
|
|
<template #headerLeft>
|
|
@@ -48,7 +48,7 @@ const areastatusEnum = useEnum('areastatus')
|
|
|
// 变更状态
|
|
// 变更状态
|
|
|
const modifystatusEnum = useEnum('modifystatus')
|
|
const modifystatusEnum = useEnum('modifystatus')
|
|
|
|
|
|
|
|
-const { filterOptons, getQueryParams } = useDataFilter<Investor.InvestorListReq>()
|
|
|
|
|
|
|
+const { filterOptions, getQueryParams } = useDataFilter<Investor.InvestorListReq>()
|
|
|
|
|
|
|
|
const { componentMap, componentId, record, openComponent, closeComponent, getActionButtons } = useOperation<Investor.InvestorListRsp>({
|
|
const { componentMap, componentId, record, openComponent, closeComponent, getActionButtons } = useOperation<Investor.InvestorListRsp>({
|
|
|
onClose: () => onSearch()
|
|
onClose: () => onSearch()
|
|
@@ -81,12 +81,12 @@ const tableColumns = shallowRef<Model.TableColumn[]>([
|
|
|
{ field: 'operate', label: 'common.operate', fixed: 'right', width: 260 }
|
|
{ field: 'operate', label: 'common.operate', fixed: 'right', width: 260 }
|
|
|
])
|
|
])
|
|
|
|
|
|
|
|
-filterOptons.inputList = [
|
|
|
|
|
|
|
+filterOptions.inputList = [
|
|
|
{ label: t('investor.manage.user.memberUserId'), keys: ['memberUserId'] },
|
|
{ label: t('investor.manage.user.memberUserId'), keys: ['memberUserId'] },
|
|
|
{ label: t('investor.manage.user.accountName'), keys: ['accountName'] }
|
|
{ label: t('investor.manage.user.accountName'), keys: ['accountName'] }
|
|
|
]
|
|
]
|
|
|
|
|
|
|
|
-filterOptons.selectList = [
|
|
|
|
|
|
|
+filterOptions.selectList = [
|
|
|
{
|
|
{
|
|
|
key: 'accountStatus',
|
|
key: 'accountStatus',
|
|
|
label: t('investor.manage.user.accountStatus'),
|
|
label: t('investor.manage.user.accountStatus'),
|
|
@@ -99,7 +99,7 @@ filterOptons.selectList = [
|
|
|
}
|
|
}
|
|
|
]
|
|
]
|
|
|
|
|
|
|
|
-filterOptons.buttonList = [
|
|
|
|
|
|
|
+filterOptions.buttonList = [
|
|
|
{ label: t('operation.search'), className: 'el-button--primary', onClick: () => onSearch() },
|
|
{ label: t('operation.search'), className: 'el-button--primary', onClick: () => onSearch() },
|
|
|
{ label: t('operation.reset'), className: 'el-button--primary', onClick: () => onSearch(true) }
|
|
{ label: t('operation.reset'), className: 'el-button--primary', onClick: () => onSearch(true) }
|
|
|
]
|
|
]
|