104 lines
2.1 KiB
Vue
104 lines
2.1 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'></planting>
|
|
<!-- 养猪的 -->
|
|
<cultivation v-if="flag==2"></cultivation>
|
|
<!-- 养鸡的 -->
|
|
<chick v-if="flag==3"> </chick>
|
|
<!-- 卖鱼的首页 -->
|
|
<fishing v-if='flag==4'></fishing>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {
|
|
reactive,
|
|
ref
|
|
} from 'vue';
|
|
import {
|
|
companyMine
|
|
} from "@/api/test.js";
|
|
import {
|
|
counterStore
|
|
} from '@/store/counter'
|
|
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"
|
|
const flag = ref(1)
|
|
const scollChangeFn = (index) => {
|
|
flag.value = index
|
|
}
|
|
const list = reactive([{
|
|
tit: "土地种植管理",
|
|
id: 1,
|
|
}, {
|
|
tit: "家畜养殖管理",
|
|
id: 2,
|
|
}, {
|
|
tit: "家禽养殖管理",
|
|
id: 3,
|
|
}, {
|
|
tit: "水产养殖管理",
|
|
id: 4,
|
|
}, ])
|
|
</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;
|
|
width: 100%;
|
|
|
|
|
|
.scoll-list-li {
|
|
display: inline-block;
|
|
margin-right: 20px;
|
|
white-space: normal;
|
|
font-size: 33.29rpx;
|
|
transform: skewX(-10deg);
|
|
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.act {
|
|
color: white;
|
|
}
|
|
</style> |