Files
app-govern/pages/home/zantaishijian.vue

34 lines
981 B
Vue
Raw Normal View History

2023-01-13 16:32:56 +08:00
<template>
<Cn-page :loading='loading'>
<view slot='body'>
<view class='index'>
<uni-list>
<uni-list-item v-for="item in 2" clickable @click="jump" :key="item"
title="测试监测点1于2019-07-01 10:11:12.885发生暂降事件残余电压89%持续时间0.67s"
note="台账信息南京灿能数据中心供电公司福州长乐变电站IPMAC192.168.1.125" />
</uni-list>
<uni-load-more status="nomore"></uni-load-more>
</view>
</view>
</Cn-page>
</template>
<script>
export default {
data () {
return {
loading: false
}
},
methods: {
jump () {
console.log(123);
uni.navigateTo({
url: '/pages/home/zantaishijianDetail'
})
}
}
}
</script>
<style lang='scss'>
.index {}
</style>