1.修改合同问题

2.项目建档
3.增加进行中的项目
This commit is contained in:
32503
2025-07-02 09:56:11 +08:00
parent 9eb6d1cd10
commit 6e1b1c8653
17 changed files with 1687 additions and 619 deletions

View File

@ -1,6 +1,7 @@
import {
fetchDowntlist, fetchprojectRecords, fetchJuryUpList, fetchJuryDownlist, fetchSupplierUpList, fetchDisposalList, fetchParticipants,
fetchSupplierDownLeftList, fetchSupplierDownRightList, fetchtlist, fetchtlistre, fetchtPageList, fetchtShotList, fetchtClarify
fetchSupplierDownLeftList, fetchSupplierDownRightList, fetchtlist, fetchtlistre, fetchtPageList, fetchtShotList, fetchtClarify,
fetchProjectFileList
} from '../services/dashboard';
import { message } from 'antd';
import { getProId } from '@/utils/session';
@ -169,6 +170,8 @@ export default {
namespace: 'dashboard',
state: {
projectInProgressList: [],
projectInProgeressObj: {},
downlist: [],
projectlist: [],
Juryuplist: [],
@ -195,6 +198,13 @@ export default {
yield put({ type: 'save', payload: { downlist: response.data } })
}
},
*fetchProjectFileList({ payload, callback }, { call, put }) {
const response = yield call(fetchProjectFileList, payload)
console.log(123)
if (response.code == 200) {
yield put({ type: 'save', payload: { projectInProgressList: response.data.records } })
}
},
*fetchprojectRecords({ payload, callback }, { call, put }) {
const response = yield call(fetchprojectRecords, payload)
if (response.code == 200 && response.data.length > 0) {