feat: 更新银行卡管理和提现管理界面,调整表格列标题,新增认证状态列,优化表头操作配置
This commit is contained in:
@@ -25,7 +25,7 @@ const columns: TableBaseColumns = [
|
|||||||
key: 'userId'
|
key: 'userId'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '用户名',
|
title: '持卡人姓名',
|
||||||
key: 'accountName'
|
key: 'accountName'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -40,6 +40,10 @@ const columns: TableBaseColumns = [
|
|||||||
title: '风险等级',
|
title: '风险等级',
|
||||||
key: 'riskStatus'
|
key: 'riskStatus'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '是否认证',
|
||||||
|
key: 'isVerified'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
fixed: 'right',
|
fixed: 'right',
|
||||||
@@ -50,6 +54,7 @@ const columns: TableBaseColumns = [
|
|||||||
contentText: '编辑',
|
contentText: '编辑',
|
||||||
type: 'primary',
|
type: 'primary',
|
||||||
ghost: true,
|
ghost: true,
|
||||||
|
size: 'small',
|
||||||
onClick: () => {
|
onClick: () => {
|
||||||
tableInst.value?.reload();
|
tableInst.value?.reload();
|
||||||
}
|
}
|
||||||
@@ -58,6 +63,7 @@ const columns: TableBaseColumns = [
|
|||||||
contentText: '删除',
|
contentText: '删除',
|
||||||
type: 'error',
|
type: 'error',
|
||||||
ghost: true,
|
ghost: true,
|
||||||
|
size: 'small',
|
||||||
onClick: async () => {
|
onClick: async () => {
|
||||||
dialog.create({
|
dialog.create({
|
||||||
title: '提示',
|
title: '提示',
|
||||||
@@ -99,6 +105,7 @@ const filterColumns: TableFilterColumns = [
|
|||||||
:columns="columns"
|
:columns="columns"
|
||||||
:filter-columns="filterColumns"
|
:filter-columns="filterColumns"
|
||||||
:fetch-data="fetchData"
|
:fetch-data="fetchData"
|
||||||
|
:scroll-x="800"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -152,6 +152,11 @@ const filterColumns: TableFilterColumns = [
|
|||||||
:columns="columns"
|
:columns="columns"
|
||||||
:filter-columns="filterColumns"
|
:filter-columns="filterColumns"
|
||||||
:fetch-data="fetchData"
|
:fetch-data="fetchData"
|
||||||
|
:header-operations="{
|
||||||
|
add: false,
|
||||||
|
refresh: true,
|
||||||
|
columns: true
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@@ -179,6 +179,11 @@ const filterColumns: TableFilterColumns = [
|
|||||||
:columns="columns"
|
:columns="columns"
|
||||||
:filter-columns="filterColumns"
|
:filter-columns="filterColumns"
|
||||||
:fetch-data="fetchData"
|
:fetch-data="fetchData"
|
||||||
|
:header-operations="{
|
||||||
|
add: false,
|
||||||
|
refresh: true,
|
||||||
|
columns: true
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user