联调终端运行评价

This commit is contained in:
GGJ
2025-05-15 14:52:02 +08:00
parent 325aa7d56e
commit 67718efe57
22 changed files with 672 additions and 330 deletions

View File

@@ -16,6 +16,7 @@
</template>
</TableHeader>
<Table ref="tableRef"></Table>
<pushDisplay ref="pushDisplayRef" />
</div>
</template>
<script setup lang="ts">
@@ -27,9 +28,11 @@ import TableHeader from '@/components/table/header/index.vue'
import { useDictData } from '@/stores/dictData'
import { ElMessage, ElMessageBox } from 'element-plus'
import { ledgerChangePush } from '@/api/device-boot/terminalTree'
import pushDisplay from './pushDisplay.vue'
defineOptions({
name: 'BusinessAdministrator/LogManagement/TerminalLog'
})
const pushDisplayRef = ref()
const dictData = useDictData()
const fontdveoption = dictData.getBasicData('Dev_Ops')
@@ -78,7 +81,8 @@ const changePush = () => {
type: 'warning'
}).then(() => {
ledgerChangePush().then(res => {
ElMessage.success(res.message)
// ElMessage.success(res.message)
pushDisplayRef.value.open(res.data)
tableStore.index()
})
})