cultivationApp/pages/index/manager.vue

169 lines
3.9 KiB
Vue
Raw Normal View History

2023-12-20 18:13:01 +08:00
<template>
<view style="position: relative;">
<view class="top">
<view class="" style="height:var(--status-bar-height) ;">
</view>
<view class="nav-con">
<view class="left"></view>
<view class="title">
牲畜管理
</view>
<view class="btn" style="margin-top: -5rpx;">
<Myindex url='/pages/index/massif' />
</view>
</view>
</view>
<view class="" style="height:var(--status-bar-height) ;">
</view>
<view class="nav-con">
</view>
<view class="card-list">
<block v-for="(item, index) in list" :key="index">
<view class="card-box" @click="navTo(item.url)" :style="{backgroundImage: `url(${item.bg})`, color: item.color}">
<view class="box-top">
<view class="title">{{item.name}}</view>
<view class="btn" :style="{border: `2rpx solid ${item.color}`}">点击进入</view>
</view>
<view class="box-bottom">
{{item.tips}}
</view>
</view>
</block>
</view>
2024-01-31 11:16:49 +08:00
<MyTabbar></MyTabbar>
2023-12-20 18:13:01 +08:00
</view>
</template>
2024-01-31 11:16:49 +08:00
<script setup>
2023-12-20 18:13:01 +08:00
import Myindex from '@/components/return/index.vue';
2024-01-31 11:16:49 +08:00
import MyTabbar from "@/components/customTabbar/tabbar.vue"
2023-12-20 18:13:01 +08:00
import { reactive, ref } from 'vue';
2024-01-31 11:16:49 +08:00
import { onLoad } from "@dcloudio/uni-app";
onLoad(()=>{
uni.hideTabBar()
})
2023-12-20 18:13:01 +08:00
const list = reactive([
{
name: '栏舍设置',
tips: '栏舍新增/详情喂养、记录',
bg: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/def/be364202312191601547849.png',
color: '#cc841f',
url: '/pages/plantAdmin/house'
},
{
name: '档案管理',
tips: '档案新增、档案详情/编辑',
2023-12-25 11:55:16 +08:00
bg: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/def/8d37b202312251151062137.png',
2023-12-20 18:13:01 +08:00
color: '#1f84cc',
2023-12-21 16:29:58 +08:00
url: '/pages/record/record'
2023-12-20 18:13:01 +08:00
},
{
name: '转栏记录',
tips: '转入/转出舍栏、转栏时间',
bg: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/def/cee51202312191634095436.png',
color: '#c36136',
2023-12-21 16:29:58 +08:00
url: '/pages/jump/jump'
2023-12-20 18:13:01 +08:00
},
{
name: '离栏记录',
tips: '离舍类型/原因、离舍时间',
bg: 'https://lihai001.oss-cn-chengdu.aliyuncs.com/def/3246c202312191633441356.png',
color: '#366ecf',
2023-12-22 18:18:28 +08:00
url: '/pages/leave/leave'
2023-12-20 18:13:01 +08:00
},
])
2024-01-31 11:16:49 +08:00
const navTo = (url)=>{
2023-12-20 18:13:01 +08:00
if(url) uni.navigateTo({
url: url
})
else uni.showToast({
title: '暂未开放',
icon: 'none'
})
}
</script>
<style lang="scss">
page {
background-color: $theme-bg-color;
}
.top {
background-color: #feb048;
position: fixed;
z-index: 999999;
width: 750rpx;
}
.nav-con {
width: 100vw;
height: 44px;
display: flex;
align-items: center;
justify-content: space-between;
padding-top: 20rpx;
padding-bottom: 10rpx;
color: #fff;
.left{
flex: 1;
}
.title{
flex: 1;
text-align: center;
}
.btn {
flex: 1;
display: flex;
justify-content: flex-end;
}
}
.card-list {
padding: 28rpx;
.card-box {
height: 170rpx;
width: 694rpx;
background-size: 100% 100%;
box-sizing: border-box;
padding: 40rpx;
margin-bottom: 28rpx;
display: flex;
flex-direction: column;
justify-content: space-between;
font-size: 28rpx;
.box-top {
display: flex;
.title {
font-size: 33rpx;
font-weight: bold;
}
.btn {
height: 50rpx;
width: 160rpx;
margin-left: 30rpx;
display: flex;
justify-content: center;
align-items: center;
border: 2rpx solid #cc841f;
border-radius: 50rpx;
}
}
.box-bottom {
width: 60%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
</style>