个人中心切图
This commit is contained in:
34
pages/home/zantaishijian.vue
Normal file
34
pages/home/zantaishijian.vue
Normal file
@@ -0,0 +1,34 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user