|
|
|
@ -9,7 +9,7 @@ |
|
|
|
|
:schema="schema" |
|
|
|
|
/> |
|
|
|
|
</PageWrapper> |
|
|
|
|
<BasicTable @register="registerTimeTable" /> |
|
|
|
|
<BasicTable @register="registerTimeTable"/> |
|
|
|
|
</div> |
|
|
|
|
<div> |
|
|
|
|
<!--引用表格--> |
|
|
|
@ -18,10 +18,10 @@ |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script lang="ts" setup> |
|
|
|
|
import {onMounted,ref} from 'vue'; |
|
|
|
|
import {ref} from 'vue'; |
|
|
|
|
import {Description} from '/@/components/Description/index'; |
|
|
|
|
import {PageWrapper} from '/@/components/Page'; |
|
|
|
|
import {BasicColumn, BasicTable, useTable} from '/@/components/Table'; |
|
|
|
|
import {BasicTable, useTable} from '/@/components/Table'; |
|
|
|
|
|
|
|
|
|
import {useRoute} from "vue-router"; |
|
|
|
|
import {useModal} from "@/components/Modal"; |
|
|
|
@ -30,8 +30,6 @@ import {columns} from "@/views/projectObjective/ProjectObjective.data"; |
|
|
|
|
import {getBaseInfo, list} from '@/views/projectObjective/ProjectObjective.api'; |
|
|
|
|
import {columns2} from "@/views/cooperationDepart/CooperationDepart.data"; |
|
|
|
|
import {list2} from "@/views/cooperationDepart/CooperationDepart.api"; |
|
|
|
|
import {refundTimeTableData, refundTimeTableSchema} from "@/views/demo/page/desc/high/data"; |
|
|
|
|
import {demoListApi} from "@/api/demo/table"; |
|
|
|
|
|
|
|
|
|
const route = useRoute(); |
|
|
|
|
const falg = ref(false) |
|
|
|
@ -71,7 +69,7 @@ const [registerTimeTable] = useTable({ |
|
|
|
|
// dataSource: list, |
|
|
|
|
api: listCooperationByProjectId, |
|
|
|
|
showIndexColumn: false, |
|
|
|
|
scroll: { y: 300 }, |
|
|
|
|
scroll: {y: 300}, |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
async function listCooperationByProjectId() { |
|
|
|
|