1.修改合同问题
2.项目建档 3.增加进行中的项目
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user