Commit e41d8571 by huaying

fix: ui

parent f792e9b8
......@@ -221,7 +221,7 @@ export default {
pickerOptions: {
disabledDate: time => {
const end = new Date();
return time.getTime() < end.getTime() - 3600 * 1000 * 24 * 365 || time.getTime() > end.getTime() - 3600 * 1000 * 24;
return time.getTime() < end.getTime() - 3600 * 1000 * 24 * 365 || time.getTime() > end.getTime();
}
},
operateBtnArr: [
......
......@@ -177,6 +177,8 @@ export default {
});
// this.groupList.splice(listItemIndex, 1);
this.pageP.pageNum = 1;
this.currentListItemUuid = -1;
this.$emit('updateList', this.currentListItemUuid);
this.searchGroup();
}
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment