无人机管理后台前端(已迁走)
张含笑
2025-06-14 3d9e149b3e42cb68efeffc695a1858b6c58de1dd
src/views/dataCenter/dataCenter.vue
@@ -74,7 +74,7 @@
            <span
              class="location"
              @click="positionDetail(scope.row)"
              v-if="scope.row.resultType !== 1"
              v-if="scope.row.resultType !== 1 && !isTifFile(scope.row.nickName)"
              >定位</span
            >
          </template>
@@ -392,6 +392,15 @@
  });
};
// 查看弹框
// 正射
const a ='odm_orthophoto.tif..tif'
function isTifFile(filename) {
  const lastDot = filename.lastIndexOf('.');
  if (lastDot === -1) return false; // 无后缀
  return filename.slice(lastDot + 1).toLowerCase() === 'tif';
}
console.log('1',isTifFile(a));
const dialogVisible = ref(false);
const dialogDetailList = ref(null);
const detailTitle = ref('');