无人机管理后台前端(已迁走)
张含笑
2025-06-10 51b785f8e18e7aab75f2dab03c1b234fae9e9358
src/utils/util.js
@@ -438,3 +438,13 @@
  // 设置默认范围 [上个月, 当前月]
  return [new Date(lastMonthYear, lastMonth, 1), new Date(currentYear, currentMonth, 1)]
}
/**
 * 获取中等缩略图路径
 * @param url
 * @returns {string}
 */
export const getShowImg = url => {
   if (!url) return ''
   const lastDotIndex = url.lastIndexOf('.')
   return `${url.substring(0, lastDotIndex)}_show${url.substring(lastDotIndex)}`
}