140 lines
3.7 KiB
Vue
140 lines
3.7 KiB
Vue
<template>
|
||
<view class="main">
|
||
<!-- 头部 -->
|
||
<view class="header">
|
||
<view class="logo">
|
||
<image src="/static/logo.png" mode="widthFix"></image>
|
||
</view>
|
||
<view class="title">
|
||
<image src="/static/count-title.png" mode="widthFix"></image>
|
||
</view>
|
||
<view class="position">
|
||
<image src="/static/icon-home.png" mode="widthFix"></image>
|
||
</view>
|
||
</view>
|
||
<!-- 消除碳足迹 -->
|
||
<view class="calculator-bg">
|
||
<view class="bg-img">
|
||
<image src="/static/count-bg.png" mode="widthFix"></image>
|
||
</view>
|
||
<view class="calculator calculator-other">
|
||
<view class="eliminate">
|
||
<view class="eliminate-title">
|
||
<image src="/static/icon-title-03.png" mode="heightFix"></image>
|
||
</view>
|
||
<view class="tips">
|
||
<view class="item">
|
||
您全家一年的碳足迹(碳排放)为<text>{{total}}</text>kg,人均碳足迹为<text>{{average}}</text>kg。
|
||
</view>
|
||
<view class="item">
|
||
消除掉您的家庭碳足迹需要指数<text>{{total}}</text>棵,您需要捐款<text>{{total}}</text>元人民币用于中国绿色碳汇基金会低碳旅游专项基金。
|
||
</view>
|
||
<view class="item">
|
||
谢谢您在应对气候变化方面所做的贡献,您是一位有责任的的人。
|
||
</view>
|
||
</view>
|
||
<view class="eliminate-img">
|
||
<image src="/static/eliminate.png" mode="heightFix"></image>
|
||
<view class="payment-btn" @tap="toEliminate">
|
||
<image src="/static/icon-tabbar-04.png" mode="heightFix"></image>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<view class="nav-btns">
|
||
<view class="btn" @tap="toPage('/pages/count/count')">
|
||
<image src="/static/icon-tabbar-01.png" mode="heightFix"></image>
|
||
</view>
|
||
<view class="btn" @tap="toPage('/pages/assess/assess')">
|
||
<image src="/static/icon-tabbar-02.png" mode="heightFix"></image>
|
||
</view>
|
||
<view class="btn active" @tap="toPage('/pages/eliminate/eliminate')">
|
||
<image src="/static/icon-tabbar-03.png" mode="heightFix"></image>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<!-- 轮播 -->
|
||
<view class="banner">
|
||
<swiper-pull></swiper-pull>
|
||
</view>
|
||
<!-- 底部 -->
|
||
<view class="footer">
|
||
<text>中国绿色碳汇基金会低碳旅游专项基金监制,北京凯来美气候技术咨询有限公司开发。</text>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import swiperPull from '@/components/swiper/swiper-pull.vue';
|
||
export default {
|
||
components: {
|
||
swiperPull
|
||
},
|
||
data() {
|
||
return {
|
||
statusHeight: uni.getSystemInfoSync().statusBarHeight, //状态栏高度
|
||
member: 0, //家庭成员
|
||
total: 0, //总计
|
||
average: 0, //平均值
|
||
treeNum: 0, //树数量
|
||
money: 0, //捐款额
|
||
}
|
||
},
|
||
onLoad(op) {
|
||
if (op.total) {
|
||
this.total = op.total;
|
||
}
|
||
if (uni.getStorageSync('average')) {
|
||
this.average = uni.getStorageSync('average');
|
||
}
|
||
},
|
||
methods: {
|
||
// 去捐款
|
||
toEliminate() {
|
||
uni.navigateTo({
|
||
url: `/pages/contribution/contribution?money=${this.money}&total=${this.total}`
|
||
})
|
||
},
|
||
|
||
//跳转
|
||
toPage(url) {
|
||
if (url == '/pages/count/count') {
|
||
uni.reLaunch({
|
||
url: url
|
||
})
|
||
}
|
||
if (url == '/pages/assess/assess') {
|
||
if (uni.getStorageSync('subTotal')) {
|
||
uni.navigateTo({
|
||
url: `${url}?total=${this.total}`
|
||
})
|
||
} else {
|
||
uni.showToast({
|
||
title: '请先计算碳足迹',
|
||
icon: 'none',
|
||
duration: 2000
|
||
})
|
||
}
|
||
}
|
||
if (url == '/pages/eliminate/eliminate') {
|
||
if (uni.getStorageSync('average')) {
|
||
uni.navigateTo({
|
||
url: `${url}?total=${this.total}`
|
||
})
|
||
} else {
|
||
uni.showToast({
|
||
title: '请先评估碳足迹',
|
||
icon: 'none',
|
||
duration: 2000
|
||
})
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
|
||
</style>
|