34 lines
981 B
Vue
34 lines
981 B
Vue
|
|
<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="台账信息:南京灿能数据中心供电公司,福州长乐变电站,IP(MAC):192.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>
|