//给CommonButton添加点击回调
 public static void ComButtonAddClick(this CommonButton button, UnityAction action)
 {
     button.ClickAddListener(action);
 }