|
@@ -382,8 +382,8 @@ export function setImportCheckbodyLabel(state,action) {
|
|
|
export function recoveTag(state,action) {
|
|
|
let res = Object.assign({},state);
|
|
|
let arr = [...res.data];
|
|
|
- //const text = Object.assign({showInCheck:action.data.showInCheck},JSON.parse(config._textLabel));
|
|
|
- arr.splice(action.index,0,action.data);
|
|
|
+ const text = Object.assign({showInCheck:action.data.showInCheck},JSON.parse(config.textLabel));
|
|
|
+ arr.splice(action.index,0,action.data,text);
|
|
|
res.data = checkFullfillText(arr).newArr;
|
|
|
res.saveText = checkFullfillText(arr).saveText;
|
|
|
shiftLocalDelTag();
|