fix:更新
All checks were successful
Build and Push Docker Image / build (push) Successful in 4m34s

This commit is contained in:
Your Name 2026-01-30 17:48:53 +08:00
parent 866ce14210
commit 3255c9deb6
3 changed files with 5 additions and 5 deletions

View File

@ -30,7 +30,7 @@ export default function Index(props: MyBetaModalFormProps) {
/>
),
},
'/instrument/instrument_list',
'/meter',
);
};
let tableRender = (item: any, action: any) => {
@ -54,7 +54,7 @@ export default function Index(props: MyBetaModalFormProps) {
/>
),
},
'/instrument/instrument_list',
'/meter',
);
};
return (

View File

@ -79,12 +79,12 @@ export default function Index(props: MyBetaModalFormProps) {
renderValue ? dayjs().diff(renderValue, 'day') : '-',
},
MyColumns.Option({
render: (_, item: any, index, action) => (
render: (_, item: any, index) => (
<Space key={index}>
<MyButtons.View
title="查看"
onClick={() => {
navigate(`/instrument/readings/show/${item.id}`);
navigate(`/meter/readings/show/${item.id}`);
}}
/>
</Space>

View File

@ -27,7 +27,7 @@ export default function Index({ title = '抄表数据' }) {
<MyButtons.View
title="查看"
onClick={() => {
navigate(`/instrument/readings/show/${item.id}`);
navigate(`/meter/readings/show/${item.id}`);
}}
/>
),