|
@@ -26,7 +26,6 @@
|
|
|
import { BasicForm, FormActionType, FormSchema, useForm } from '/@/components/Form/index'
|
|
|
import { getTableColumns } from './tableData'
|
|
|
import { getProjectAccount, addProjectAccount } from '/@/api/sys/project'
|
|
|
- import { useGo } from '/@/hooks/web/usePage'
|
|
|
import { propTypes } from '/@/utils/propTypes'
|
|
|
import { Radio } from 'ant-design-vue'
|
|
|
import { Icon } from '/@/components/Icon/index'
|
|
@@ -58,9 +57,8 @@
|
|
|
setup(props) {
|
|
|
const formElRef = ref<Nullable<FormActionType>>(null)
|
|
|
const { createMessage } = useMessage()
|
|
|
- const go = useGo()
|
|
|
const [registerTable, { setTableData, reload }] = useTable({
|
|
|
- columns: getTableColumns(() => go('/acount/detail')),
|
|
|
+ columns: getTableColumns(() => showModalFn()),
|
|
|
showTableSetting: true,
|
|
|
canResize: true
|
|
|
})
|