add
This commit is contained in:
parent
0ec3177837
commit
01b962d963
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<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-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-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
|
||||||
</el-select>
|
</el-select>
|
||||||
|
@ -16,18 +16,19 @@
|
||||||
<button @click="sendFn('more_order')">更多订单</button>
|
<button @click="sendFn('more_order')">更多订单</button>
|
||||||
</div> -->
|
</div> -->
|
||||||
|
|
||||||
<div style="height: 100vh;">
|
<img src="/static/img/tradeScreen/FH.png" @click="router.go(-1)" class="back-btn" alt="">
|
||||||
<div class="menu" v-if="flag">
|
<div class="cont" v-if="flag">
|
||||||
<div class="menu-li sy"></div>
|
<div class="card" v-for="item in 9">
|
||||||
<div class="menu-li sc"></div>
|
<div class="card-tit">
|
||||||
<div class="menu-li sc"></div>
|
究极公司
|
||||||
<div class="menu-li sc"></div>
|
|
||||||
<div class="menu-li sc"></div>
|
|
||||||
</div>
|
</div>
|
||||||
<div v-if="!flag">
|
<div class="card-cotnet">
|
||||||
<areaChose channel="user-breed-datav"></areaChose>
|
<div>商户姓名: 为对方</div>
|
||||||
|
<div class="login">查看详情</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
<areaChose v-else></areaChose>
|
||||||
<div class="area" @click="flag = !flag">
|
<div class="area" @click="flag = !flag">
|
||||||
<div class="area-top">
|
<div class="area-top">
|
||||||
<div class="town">江陽區</div>
|
<div class="town">江陽區</div>
|
||||||
|
@ -35,8 +36,6 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="area-bottom"></div>
|
<div class="area-bottom"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
<script setup scoped>
|
<script setup scoped>
|
||||||
import { ref, reactive } from "vue"
|
import { ref, reactive } from "vue"
|
||||||
|
@ -142,16 +141,86 @@ const sendFn = (event, data = '') => {
|
||||||
sendMsg({ channel: 'user-breed-datav', event, data })
|
sendMsg({ channel: 'user-breed-datav', event, data })
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss">
|
||||||
button {
|
.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;
|
padding: 10px;
|
||||||
margin: 10px;
|
color: white;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
|
.card-tit {
|
||||||
|
color: #00D6DD;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
.head-title{
|
|
||||||
color: #fff;
|
.card-cotnet {
|
||||||
font-size: 20px;
|
margin-top: 50px;
|
||||||
padding-top: 5vh;
|
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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 {
|
.area {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="menu-li ylsq" @click="navgo('plantScreen')">
|
<div class="menu-li ylsq" @click="navgo('plantScreen')">
|
||||||
</div>
|
</div>
|
||||||
<div class="menu-li ylyz" @click="navgo('plantScreen')">
|
<div class="menu-li ylyz" @click="navgo('breedScreen')">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<div class="card" v-for="item in 9">
|
<div class="card" v-for="item in 9">
|
||||||
<div class="card-tit">
|
<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>
|
||||||
<div class="card-cotnet">
|
<div class="card-cotnet">
|
||||||
<div>商户姓名: 为对方</div>
|
<div>商户姓名: 为对方</div>
|
||||||
|
@ -52,6 +52,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
.card-cotnet{
|
.card-cotnet{
|
||||||
margin-top: 25px;
|
margin-top: 25px;
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
Loading…
Reference in New Issue