review:【pay 支付】相关代码

pull/209/head
YunaiV 2025-09-02 23:29:53 +08:00
parent 41583c5e41
commit 40566f8e4a
11 changed files with 11 additions and 3 deletions

View File

@ -80,6 +80,7 @@ export function useFormSchema(): VbenFormSchema[] {
}
/** 搜索表单配置 */
// TODO @xingyu缺了 placeholder
export function useGridFormSchema(): VbenFormSchema[] {
return [
{

View File

@ -180,6 +180,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
/>
</template>
<template #alipayAppConfig="{ row }">
<!-- TODO @xingyuchannelCodes 爆红 -->
<TableAction
:actions="[
{

View File

@ -63,6 +63,7 @@ export function useGridFormSchema(): VbenFormSchema[] {
];
}
// TODO @xingyu缺少 placeholder
/** 列表的字段 */
export function useGridColumns(): VxeTableGridOptions['columns'] {
return [

View File

@ -5,6 +5,7 @@ import type { VbenFormSchema } from '#/adapter/form';
import { DICT_TYPE, getDictOptions, getRangePickerDefaultProps } from '#/utils';
/** 列表的搜索表单 */
// TODO @xingyu少了 placeholder
export function useGridFormSchema(): VbenFormSchema[] {
return [
{

View File

@ -30,7 +30,7 @@ const [Modal, modalApi] = useVbenModal({
</script>
<template>
<Modal
title="消息详情"
title="钱包交易记录"
class="w-2/5"
:show-cancel-button="false"
:show-confirm-button="false"

View File

@ -47,6 +47,7 @@ export function useFormSchema(): VbenFormSchema[] {
}
/** 列表的搜索表单 */
// TODO @xingyu少了 placeholder
export function useGridFormSchema(): VbenFormSchema[] {
return [
{

View File

@ -178,6 +178,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
/>
</template>
<template #alipayAppConfig="{ row }">
<!-- TODO @xingyuchannelCodes 爆红 -->
<TableAction
:actions="[
{

View File

@ -5,6 +5,7 @@ import { getAppList } from '#/api/pay/app';
import { DICT_TYPE, getDictOptions, getRangePickerDefaultProps } from '#/utils';
/** 列表的搜索表单 */
// TODO @霖:缺少 placeholder
export function useGridFormSchema(): VbenFormSchema[] {
return [
{

View File

@ -5,6 +5,7 @@ import type { VbenFormSchema } from '#/adapter/form';
import { DICT_TYPE, getDictOptions, getRangePickerDefaultProps } from '#/utils';
/** 列表的搜索表单 */
// TODO @霖:少了 placeholder
export function useGridFormSchema(): VbenFormSchema[] {
return [
{

View File

@ -30,7 +30,7 @@ const [Modal, modalApi] = useVbenModal({
</script>
<template>
<Modal
title="消息详情"
title="钱包交易记录"
class="w-2/5"
:show-cancel-button="false"
:show-confirm-button="false"

View File

@ -56,6 +56,6 @@ const [Grid] = useVbenVxeGrid({
<template>
<Page auto-content-height>
<Grid table-title="" />
<Grid />
</Page>
</template>