33 lines
973 B
Vue
33 lines
973 B
Vue
<template>
|
||
<Cn-page :loading='loading'>
|
||
<view slot='body'>
|
||
<view class='index'>
|
||
<uni-list>
|
||
<uni-list-item v-for="item in 3" clickable @click="jump" :key="item" title="福州长乐变电站,测试监测点1发生稳态越限10次"
|
||
note="越限详情:3次谐波电压越限3次,5次谐波电压越限2次,电压总畸变率越限10次,电流畸变率8次,电流畸变率8次……" />
|
||
</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/wentaiyuexianjiancedianDetail'
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
<style lang='scss'>
|
||
.index {}
|
||
</style> |