Files
app-govern/pages/home/zantaishijian.vue
2023-01-13 16:32:56 +08:00

34 lines
981 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>