export function useGoBack() {
  /**
   * 返回
   */
  const goBack = () => {
    uni.navigateBack();
  }
  
  return {
    goBack
  }
}