修改字段类型

dev
zhaokai 2025-07-24 09:12:34 +08:00
parent dd244e0a9c
commit 80e85e276e
2 changed files with 14 additions and 14 deletions

View File

@ -64,15 +64,15 @@ const { list, pagination, searchForm, resetPagination, tableRef } = useListData(
} }
); );
const pushOptions = [ const pushOptions = [
{ id: "1", name: "未推送" }, { id: 1, name: "未推送" },
{ id: "2", name: "定时推送" }, { id: 2, name: "定时推送" },
{ id: "3", name: "推送成功" }, { id: 3, name: "推送成功" },
{ id: "4", name: "重试中" }, { id: 4, name: "重试中" },
{ id: "5", name: "推送失败" }, { id: 5, name: "推送失败" },
]; ];
const receiveOptions = [ const receiveOptions = [
{ id: "1", name: "接收正常" }, { id: 1, name: "接收正常" },
{ id: "2", name: "接收异常" }, { id: 2, name: "接收异常" },
]; ];
const options = [ const options = [
{ {

View File

@ -69,15 +69,15 @@ const { list, pagination, searchForm, getData, resetPagination, tableRef } =
apiType: route.query.apiType, apiType: route.query.apiType,
}); });
const pushOptions = [ const pushOptions = [
{ id: "1", name: "未推送" }, { id: 1, name: "未推送" },
{ id: "2", name: "定时推送" }, { id: 2, name: "定时推送" },
{ id: "3", name: "推送成功" }, { id: 3, name: "推送成功" },
{ id: "4", name: "重试中" }, { id: 4, name: "重试中" },
{ id: "5", name: "推送失败" }, { id: 5, name: "推送失败" },
]; ];
const receiveOptions = [ const receiveOptions = [
{ id: "1", name: "接收正常" }, { id: 1, name: "接收正常" },
{ id: "2", name: "接收异常" }, { id: 2, name: "接收异常" },
]; ];
const options = [ const options = [
{ {