Files
smart_storage_app/pages/home-page/earningSelect/index.vue
2025-10-29 17:31:26 +08:00

107 lines
2.3 KiB
Vue

<template>
<view class="p_container">
<u-navbar :is-back="true" :background="background" :border-bottom="false" :custom-back="toback">
<view class="slot-wrap">
<stationDropdow disabled style="width: 100%" ref="dropdow" />
</view>
</u-navbar>
<zero-loading v-if="loading"></zero-loading>
<view v-else style="height: calc(100% - 100rpx);">
<view class="search">
<luyj-tree-search>
</luyj-tree-search>
</view>
<view class="p_content">
<view class="selectContent">
<view class="p_box selectItem" v-for="(item,index) in labeArr" :key="index" @click="toUrl(item)">
<view >
<image :src="item.icon" mode="" style="height: 48rpx; width: 48rpx;" class="selectIcon"></image>
</view>
<view class="">
{{ item.label}}
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import stationDropdow from "@/components/station-dropdow/index.vue";
export default {
components: {
stationDropdow
},
data() {
return {
background: {
backgroundColor: "#0ea17e",
},
labeArr: [
{
label: '储能收益报表',
icon: require('@/static/aidex/images/earningSelect.png'),
url: '/pages/home-page/earnings/index'
},
{
label: '光伏收益报表',
icon: require('@/static/aidex/images/earningSelect.png'),
url: '/pages/home-page/lights/index'
},
]
};
},
computed: {
currentStation() {
return this.vuex_currentStation;
},
},
methods: {
toUrl(val) {
uni.navigateTo({
url:val.url
})
}
},
};
</script>
<style lang="scss" scoped>
.slot-wrap {
display: flex;
align-items: center;
/* 如果您想让slot内容占满整个导航栏的宽度 */
flex: 1;
/* 如果您想让slot内容与导航栏左右有空隙 */
/* padding: 0 30rpx; */
/deep/ .u-input__input {
color: #fff !important;
}
}
.selectContent {
display: flex;
flex-direction: column;
gap: 25rpx;
margin-top: 40rpx;
.selectItem {
padding: 30rpx 33rpx;
display: flex;
justify-content: flex-start;
align-items: center;
color: #666666;
border-radius: 10rpx;
.selectIcon {
height: 48rpx;
width: 48rpx;
margin-top: 10rpx;
margin-right: 32rpx;
}
}
}
</style>