| | |
| | | <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> |
| | |
| | | }); |
| | | }; |
| | | // 查看弹框 |
| | | // 正射 |
| | | 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(''); |