|
@@ -64,7 +64,7 @@
|
|
|
width:
|
|
|
(scope.row.totalGrade / allMaxData.totalNumMax) * 100 + '%',
|
|
|
}"
|
|
|
- @click="goAlarmTotal(0)"
|
|
|
+ @click="goAlarmTotal(0,scope.row.siteName)"
|
|
|
>
|
|
|
{{ scope.row.totalGrade }}
|
|
|
</span>
|
|
@@ -79,7 +79,7 @@
|
|
|
width:
|
|
|
(scope.row.oneGrade / allMaxData.oneAlarmingMax) * 100 + '%',
|
|
|
}"
|
|
|
- @click="goAlarmTotal(1)"
|
|
|
+ @click="goAlarmTotal(1,scope.row.siteName)"
|
|
|
>
|
|
|
{{ scope.row.oneGrade }}
|
|
|
</span>
|
|
@@ -94,7 +94,7 @@
|
|
|
width:
|
|
|
(scope.row.twoGrade / allMaxData.twoAlarmingMax) * 100 + '%',
|
|
|
}"
|
|
|
- @click="goAlarmTotal(2)"
|
|
|
+ @click="goAlarmTotal(2,scope.row.siteName)"
|
|
|
>
|
|
|
{{ scope.row.twoGrade }}
|
|
|
</span>
|
|
@@ -109,7 +109,7 @@
|
|
|
:style="{
|
|
|
width: (scope.row.otherGrade / allMaxData.otherMax) * 100 + '%',
|
|
|
}"
|
|
|
- @click="goAlarmTotal(3)"
|
|
|
+ @click="goAlarmTotal(3,scope.row.siteName)"
|
|
|
>
|
|
|
{{ scope.row.otherGrade }}
|
|
|
</span>
|
|
@@ -202,7 +202,7 @@ export default defineComponent({
|
|
|
// this.$router.push({ name:'variableList'})
|
|
|
}
|
|
|
|
|
|
- const goAlarmTotal = (val) => {
|
|
|
+ const goAlarmTotal = (val,val1) => {
|
|
|
pageShow.value = !pageShow.value
|
|
|
store.commit('TimeAll_function', dateValue.value)
|
|
|
if (val != undefined) {
|
|
@@ -210,6 +210,7 @@ export default defineComponent({
|
|
|
startTime: store.state.Time_Data[0],
|
|
|
endTime: store.state.Time_Data[1],
|
|
|
type: val,
|
|
|
+ siteName: val1,
|
|
|
}
|
|
|
}
|
|
|
}
|