|
@@ -106,6 +106,7 @@ export default (state = initSearchList, action) => {
|
|
|
tempArr = tempArr.filter((item,idx)=>{
|
|
|
if(action.sign==idx){
|
|
|
item.time = action.value
|
|
|
+ item.dateValue = action.value
|
|
|
}
|
|
|
return item
|
|
|
})
|
|
@@ -114,6 +115,7 @@ export default (state = initSearchList, action) => {
|
|
|
if(action.sign == idx){
|
|
|
if(action.tip==1){//小项改时间
|
|
|
item.time = action.value
|
|
|
+ item.dateValue = action.value
|
|
|
}else{//小项该数值
|
|
|
if(isNumber(action.value-0)){
|
|
|
item.value = action.value
|
|
@@ -249,6 +251,7 @@ export default (state = initSearchList, action) => {
|
|
|
// const tempArrAct = newState.fillActive;
|
|
|
const tempArr = action.arr;
|
|
|
tempArr.time = action.time;
|
|
|
+ tempArr.dateValue = action.time
|
|
|
let tmpArr = newState.getExcelDataList;
|
|
|
const tempArrs = newState.labelList;
|
|
|
tempArrs[action.idx] = tempArr;
|