提交 6ff94fef 作者: 龚洪江

修复:飞手管理路由更改,论坛状态筛选

上级 0be0f5cd
......@@ -2,7 +2,7 @@ import { InterFunction, InterListFunction } from '~/api/interface';
//论坛-列表
export type forumListType = InterListFunction<
{ keyword?: string; static?: number },
{ keyword?: string; status?: number },
{
id: number;
description: string;
......
......@@ -216,11 +216,11 @@ const FlyerList = () => {
};
//飞手审批页面
const toFlyerApprove = (record: flyerListType[0]) => {
navigate({ pathname: '/flyerCenter/flyerDetail', search: `id=${record.id}&isApprove=1` });
navigate({ pathname: '/customManage/flyerDetail', search: `id=${record.id}&isApprove=1` });
};
//飞手详情页面
const toFlyerDetail = (record: flyerListType[0]) => {
navigate({ pathname: '/flyerCenter/flyerApprove', search: `id=${record.id}` });
navigate({ pathname: '/customManage/flyerApprove', search: `id=${record.id}` });
};
//修改备注
const updateRemarkClick = (record: flyerListType[0]) => {
......
......@@ -34,7 +34,7 @@ const DynamicList = () => {
{
label: '状态',
type: 'Select',
name: 'static',
name: 'status',
placeholder: '帖子状态',
options: checkStatusList,
},
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论