From cb3b4feddf9190a6664ba62a99db331c0ea13fe2 Mon Sep 17 00:00:00 2001 From: 13404089107 <puwei@sinata.cn> Date: 星期二, 25 二月 2025 21:10:29 +0800 Subject: [PATCH] 三个身边职位管理及工单事项配置对接口 --- management/src/pages/setting/career/index.jsx | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/management/src/pages/setting/career/index.jsx b/management/src/pages/setting/career/index.jsx index ca103bc..35d9da3 100644 --- a/management/src/pages/setting/career/index.jsx +++ b/management/src/pages/setting/career/index.jsx @@ -4,7 +4,7 @@ import { useRef, useState } from 'react'; import { Access, useAccess } from 'umi'; import AddAndEdit from './components/addAndEdit'; -import { add, edit, del, getList, updateStatus, resetPaswword } from './service'; +import { add, edit, del, getList } from './service'; const Account = () => { const actionRef = useRef(); const addViewRef = useRef(); @@ -14,7 +14,7 @@ const columns = [ { title: '职位名称', - dataIndex: 'deptName', + dataIndex: 'name', }, { title: '操作', @@ -70,7 +70,7 @@ columns={columns} pagination={false} request={async (params) => { - return await buildProTableDataSource(getList, params); + return buildProTableDataSource(getList, params); }} toolBarRender={(action, selectRows) => [ <Space> -- Gitblit v1.7.1