add
This commit is contained in:
parent
0ec3177837
commit
01b962d963
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<div style="text-align: center;" class="head-title">养殖溯源可视化大屏</div>
|
||||
<!-- <div style="text-align: center;" class="head-title">养殖溯源可视化大屏</div> -->
|
||||
<!-- <el-select v-model="areaCode" class="m-2" @change="changeArea" placeholder="Select" size="large">
|
||||
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
|
||||
</el-select>
|
||||
|
@ -16,27 +16,26 @@
|
|||
<button @click="sendFn('more_order')">更多订单</button>
|
||||
</div> -->
|
||||
|
||||
<div style="height: 100vh;">
|
||||
<div class="menu" v-if="flag">
|
||||
<div class="menu-li sy"></div>
|
||||
<div class="menu-li sc"></div>
|
||||
<div class="menu-li sc"></div>
|
||||
<div class="menu-li sc"></div>
|
||||
<div class="menu-li sc"></div>
|
||||
<img src="/static/img/tradeScreen/FH.png" @click="router.go(-1)" class="back-btn" alt="">
|
||||
<div class="cont" v-if="flag">
|
||||
<div class="card" v-for="item in 9">
|
||||
<div class="card-tit">
|
||||
究极公司
|
||||
</div>
|
||||
<div v-if="!flag">
|
||||
<areaChose channel="user-breed-datav"></areaChose>
|
||||
<div class="card-cotnet">
|
||||
<div>商户姓名: 为对方</div>
|
||||
<div class="login">查看详情</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="area" @click="flag=!flag">
|
||||
</div>
|
||||
<areaChose v-else></areaChose>
|
||||
<div class="area" @click="flag = !flag">
|
||||
<div class="area-top">
|
||||
<div class="town">江陽區</div>
|
||||
<div class="town">江陽區</div>
|
||||
</div>
|
||||
<div class="area-bottom"></div>
|
||||
</div>
|
||||
|
||||
|
||||
</template>
|
||||
<script setup scoped>
|
||||
import { ref, reactive } from "vue"
|
||||
|
@ -46,7 +45,7 @@ import { vehicleListApi } from "@/api.js"
|
|||
import areaChose from "@/view/components/areaChose.vue"
|
||||
|
||||
const nowPages = ref('index');
|
||||
const flag=ref(true)
|
||||
const flag = ref(true)
|
||||
|
||||
// 镇列表
|
||||
const options = [
|
||||
|
@ -120,13 +119,13 @@ const getTownList = () => {
|
|||
})
|
||||
}
|
||||
|
||||
const vehicleList=ref([])
|
||||
const vehicleList = ref([])
|
||||
const getLandList = async () => {
|
||||
let res = await vehicleListApi({
|
||||
areaCode: areaCode.value,
|
||||
streetCode: townCode.value
|
||||
})
|
||||
vehicleList.value=res.data.list
|
||||
vehicleList.value = res.data.list
|
||||
|
||||
|
||||
|
||||
|
@ -142,16 +141,86 @@ const sendFn = (event, data = '') => {
|
|||
sendMsg({ channel: 'user-breed-datav', event, data })
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
button {
|
||||
<style lang="scss">
|
||||
.cont {
|
||||
height: 500px;
|
||||
width: 90vw;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
overflow-y: auto;
|
||||
|
||||
.card {
|
||||
width: 378px;
|
||||
height: 223px;
|
||||
margin-bottom: 10px;
|
||||
background-image: url('/static/img/breedScreen/bg.png');
|
||||
background-size: 100% 100%;
|
||||
font-size: 16px;
|
||||
padding: 10px;
|
||||
margin: 10px;
|
||||
color: white;
|
||||
position: relative;
|
||||
|
||||
.card-tit {
|
||||
color: #00D6DD;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.card-cotnet {
|
||||
margin-top: 50px;
|
||||
|
||||
.login {
|
||||
width: 170px;
|
||||
height: 34px;
|
||||
text-align: center;
|
||||
line-height: 34px;
|
||||
background-image: url('/static/img/tradeScreen/DL.png');
|
||||
background-size: 100% 100%;
|
||||
margin-top: 20px;
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// background-color: red;
|
||||
}
|
||||
.head-title{
|
||||
color: #fff;
|
||||
font-size: 20px;
|
||||
padding-top: 5vh;
|
||||
|
||||
.cont::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
background-color: #153041;
|
||||
}
|
||||
|
||||
.cont::-webkit-scrollbar-track {
|
||||
background-color: #153041;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #084D89;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.back-btn {
|
||||
width: 86.21px;
|
||||
height: 31px;
|
||||
position: absolute;
|
||||
top: 70px;
|
||||
left: 60.96px;
|
||||
z-index: 9;
|
||||
|
||||
}
|
||||
|
||||
.area {
|
||||
position: absolute;
|
||||
font-size: 20px;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
</div>
|
||||
<div class="menu-li ylsq" @click="navgo('plantScreen')">
|
||||
</div>
|
||||
<div class="menu-li ylyz" @click="navgo('plantScreen')">
|
||||
<div class="menu-li ylyz" @click="navgo('breedScreen')">
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<div class="card" v-for="item in 9">
|
||||
<div class="card-tit">
|
||||
究极公司
|
||||
<span style="font-size: 16px;">2024-01-21</span>
|
||||
<span style="font-size: 16px;color: white;">2024-01-21</span>
|
||||
</div>
|
||||
<div class="card-cotnet">
|
||||
<div>商户姓名: 为对方</div>
|
||||
|
@ -52,6 +52,7 @@
|
|||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 10px;
|
||||
}
|
||||
.card-cotnet{
|
||||
margin-top: 25px;
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Loading…
Reference in New Issue