mkm
/
yanzhiAPP
Template
2
0
Fork 0
yanzhiAPP/pages/index/index.vue

104 lines
2.0 KiB
Vue
Raw Normal View History

2023-10-17 11:00:41 +08:00
<template>
2023-10-17 16:02:55 +08:00
<view class="">
2023-10-20 18:45:15 +08:00
<view class="tabbar">
<view class="" style="padding-top:var(--status-bar-height) ;">
</view>
2023-10-17 16:02:55 +08:00
2023-10-20 18:45:15 +08:00
<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">
2023-10-21 18:02:06 +08:00
<view v-for="(item,index) in list" :key="index" :class="item.flag?'act':''" class="scoll-list-li">
2023-10-20 18:45:15 +08:00
{{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>
2023-10-21 18:02:06 +08:00
2023-10-20 18:45:15 +08:00
<!-- 种植户首页 -->
2023-10-21 18:02:06 +08:00
<planting v-if='1'></planting>
2023-10-20 18:45:15 +08:00
<!-- 卖鱼的首页 -->
<fishing v-if='false'></fishing>
2023-10-21 18:02:06 +08:00
<!-- 养猪的 -->
<cultivation v-if="false"></cultivation>
2023-10-17 11:00:41 +08:00
</view>
</template>
2023-10-17 16:02:55 +08:00
<script setup>
import {
2023-10-20 18:45:15 +08:00
reactive,
2023-10-17 16:02:55 +08:00
ref
} from 'vue';
import {
companyMine
} from "@/api/test.js";
import {
counterStore
} from '@/store/counter'
import {
onLoad
} from "@dcloudio/uni-app"
2023-10-21 18:02:06 +08:00
import cultivation from "@/components/index/cultivation.vue"
2023-10-20 18:45:15 +08:00
import planting from "@/components/index/planting.vue"
import fishing from "@/components/index/fishing.vue"
const list = reactive([{
2023-10-21 18:02:06 +08:00
tit: "土地种植管理",
flag: true
2023-10-20 18:45:15 +08:00
}, {
tit: "土地种植管理"
}, {
tit: "土地种植管理"
}, {
tit: "土地种植管理"
}, {
tit: "土地种植管理"
}, {
tit: "土地种植管理"
}, {
tit: "土地种植管理"
}, {
tit: "土地种植管理"
}, {
tit: "土地种植管理"
}, {
tit: "土地种植管理"
}, ])
</script>
<style lang="scss">
.tabbar {
z-index: 999;
background-color: #34D190;
position: fixed;
padding: 20rpx 0;
2023-10-17 16:02:55 +08:00
2023-10-20 18:45:15 +08:00
.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);
}
}
2023-10-17 11:00:41 +08:00
}
2023-10-21 18:02:06 +08:00
.act {
color: white;
}
2023-10-20 18:45:15 +08:00
</style>