76 lines
1.7 KiB
Vue
76 lines
1.7 KiB
Vue
<template>
|
|
<view class="page">
|
|
<u-navbar title="运营管理" :border-bottom="false" :background="bgc" title-color='#000' back-icon-color="#000" title-size='36' height='50'></u-navbar>
|
|
<view class="box">
|
|
<view class="list">
|
|
<image @click="btnpage(1)" src="https://api.ccttiot.com/smartmeter/img/static/u1P5r4kaSpkbARsGA9JY" mode=""></image>
|
|
<image @click="btnpage(2)" src="https://api.ccttiot.com/smartmeter/img/static/ulKiFIvHzMHi9GPDSdzW" mode=""></image>
|
|
<image @click="btnpage(3)" src="https://api.ccttiot.com/smartmeter/img/static/uiyaodfomaYSj1y0SDqb" mode=""></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
btnpage(num){
|
|
if(num == 1){
|
|
uni.navigateTo({
|
|
url:'/page_user/yunying/gongdan/index'
|
|
})
|
|
}else if(num == 2){
|
|
uni.navigateTo({
|
|
url:'/page_user/yunying/gongdan/liushui'
|
|
})
|
|
}else if(num == 3){
|
|
uni.navigateTo({
|
|
url:'/page_user/yunying/gongdan/tanchu'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/deep/ .u-title,
|
|
/deep/ .uicon-nav-back {
|
|
padding-bottom: 22rpx;
|
|
}
|
|
page {
|
|
background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
|
|
}
|
|
|
|
.page {
|
|
width: 750rpx;
|
|
|
|
.box{
|
|
width: 750rpx;
|
|
height: 1440rpx;
|
|
background: #F4F5F7;
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
padding-top: 50rpx;
|
|
.list{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 680rpx;
|
|
height: 200rpx;
|
|
background: #FFFFFF;
|
|
border-radius: 24rpx 24rpx 24rpx 24rpx;
|
|
padding: 54rpx 78rpx;
|
|
box-sizing: border-box;
|
|
margin: auto;
|
|
image{
|
|
width: 96rpx;
|
|
height: 98rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style> |