This commit is contained in:
caozehui
2025-01-08 18:52:17 +08:00
parent 645fac0681
commit 34534a1dbf
2 changed files with 26 additions and 24 deletions

View File

@@ -32,13 +32,10 @@ const unit = computed(() => {
})
const phaseT = computed(() => {
let result = 0;
if (tableData.length > 0) {
result = !tableData[0].dataT ? 0 : 1;
}
return result;
return tableData[0].dataT == '/' ? 0 : 1
})
</script>
<style scoped>