TraceabilityAPP/pages/index/index.vue

134 lines
2.8 KiB
Vue

<template>
<view class="">
<view class="tabbar">
<view class="" style="padding-top:var(--status-bar-height) ;">
</view>
<view class="" style="display: flex;">
<u--image src="/static/img/FH.png" width="50.82rpx" height="50.82rpx" alt=""></u--image>
<view class="scoll-list">
<view v-for="(item,index) in list" :key="index" class="scoll-list-li"
:style="{color:flag==item.id?'white':''}" @tap="scollChangeFn(item.id)">
{{item.tit}}
</view>
</view>
</view>
</view>
<view style="background-color: #34D190;">
<view class="" style="padding-top:var(--status-bar-height) ;">
</view>
<view class="" style="height: 100rpx;">
</view>
</view>
<!-- 种植户首页 -->
<planting v-if='flag==1' :userInfo='userInfo'></planting>
<!-- 养猪的 -->
<cultivation v-if="flag==2" :userInfo='userInfo'></cultivation>
<!-- 养鸡的 -->
<chick v-if="flag==3" :userInfo='userInfo'> </chick>
<!-- 卖鱼的首页 -->
<fishing v-if='flag==4' :userInfo='userInfo'></fishing>
</view>
</template>
<script setup>
import {
userInfoAPI
} from "@/api/plant.js"
import {
reactive,
ref
} from 'vue';
import {
onLoad
} from "@dcloudio/uni-app"
import cultivation from "@/components/index/cultivation.vue"
import planting from "@/components/index/planting.vue"
import fishing from "@/components/index/fishing.vue"
import chick from "@/components/index/chick.vue"
import {
userInfoStore
} from '@/store/userInfo'
const userInfoStores = userInfoStore()
const flag = ref(1)
const scollChangeFn = (index) => {
flag.value = index
}
const list = reactive([])
const userInfo = reactive({})
const initUserinfoFn = () => {
for (const key in userInfoStores.userInfo) {
userInfo[key] = (userInfoStores.userInfo)[key]
if (key == 'land_detail') {
list.push({
tit: "土地种植管理",
id: 1,
}, )
} else if (key == 'animal_detail') {
list.push({
tit: "家畜养殖管理",
id: 2,
}, )
} else if (key == 'poultry_detail') {
list.push({
tit: "家禽养殖管理",
id: 3,
}, )
} else if (key == 'pond_detail') {
list.push({
tit: "水产养殖管理",
id: 4,
}, )
}
}
list.sort(function(a, b) {
return a.id - b.id;
})
// userInfoAPI({
// user_id: 307
// }).then(res => {
// })
}
initUserinfoFn()
</script>
<style lang="scss">
.tabbar {
z-index: 999;
background-color: #34D190;
position: fixed;
padding: 20rpx 0;
.scoll-list {
white-space: nowrap;
overflow-x: scroll;
overflow-y: hidden;
min-width: 95vw;
.scoll-list-li {
display: inline-block;
margin-right: 20px;
white-space: normal;
font-size: 33.29rpx;
transform: skewX(-10deg);
}
}
}
.act {
color: white;
}
</style>