|
@@ -35,7 +35,7 @@ export default {
|
|
|
yield put({ type: 'changeLoading', payload: { itemLoading: true } });
|
|
|
const { data, success } = yield call(queryOne, payload);
|
|
|
if (success) {
|
|
|
- yield put({ type: 'querySuccess', payload: { ...data } });
|
|
|
+ yield put({ type: 'querySuccess', payload: { currentItem: data } });
|
|
|
}
|
|
|
yield put({ type: 'changeLoading', payload: { itemLoading: false } });
|
|
|
},
|