50 lines
1.2 KiB
Vue
50 lines
1.2 KiB
Vue
<route lang="json5" type="page">
|
||
{
|
||
layout: 'default',
|
||
style: {
|
||
navigationStyle: 'custom',
|
||
navigationBarTitleText: '实时数据 ',
|
||
},
|
||
}
|
||
</route>
|
||
<template>
|
||
<PageLayout :navbarShow="false">
|
||
<view>
|
||
<view style="text-align:center;padding:10px">
|
||
<date-time-show></date-time-show>
|
||
</view>
|
||
<wd-card title="天然气实时数据">
|
||
天然气实时数据汇总计算结果,用标签显示出各类天然气的实时数据,需要工业库后台进行计算
|
||
<template #footer>
|
||
<wd-button size="small" @click="gotoTrqSssj" plain>查看详情</wd-button>
|
||
</template>
|
||
</wd-card>
|
||
|
||
<wd-card title="管道运行实时数据">
|
||
各条管线的天然气实时数据汇总计算结果,用标签显示出各类天然气的实时数据,需要工业库后台进行计算
|
||
<template #footer>
|
||
<wd-button size="small" @click="gotoGdSssj" plain>查看详情</wd-button>
|
||
</template>
|
||
</wd-card>
|
||
</view>
|
||
</PageLayout>
|
||
</template>
|
||
|
||
<script setup>
|
||
import dateTimeShow from '@/components/dataTimeShow.vue'
|
||
|
||
function gotoTrqSssj() {
|
||
uni.navigateTo({
|
||
url: '/pages-production/shishishuju/trqSssj'
|
||
})
|
||
}
|
||
|
||
function gotoGdSssj() {
|
||
uni.navigateTo({
|
||
url: '/pages-production/shishishuju/trqSssj'
|
||
})
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
</style> |