oil-station/gasStation-uni/pagesMy/today/today.vue

209 lines
3.6 KiB
Vue
Raw Normal View History

2023-11-27 14:20:20 +08:00
<template>
<view class="content">
<view class="container">
<view class="my-header">
2023-11-30 17:28:36 +08:00
<view class="my-icons" @click="goback"> <uni-icons type="left" color="#ffffff" size="16"></uni-icons>
</view>
2023-11-27 14:20:20 +08:00
<view class="my-text">今日油价</view>
<view class="my-icons"></view>
</view>
<!-- 顶部区域 -->
<view class="top-box">
2023-11-30 17:28:36 +08:00
<view style="font-size: 18px; font-weight: bold;">11月20号</view>
<view style="font-size: 14px;">对比上次价格波动</view>
<view class="tupian"></view>
</view>
<view class="box-list">
<view class="dis-top">
<view class="gang"></view>
<view class="">#92</view>
2023-11-27 14:20:20 +08:00
</view>
2023-11-30 17:28:36 +08:00
<view class="bottom-bt">
<view style="width: 50%;">
<view class="hui-box">政府指导油价()</view>
<view class="dis-c">
<view class="dlan">7.8</view>
<view class="dis"> <u-icon name="arrow-up-fill" color="#FF5700" size="12"></u-icon>
<text style="font-size: 12px; color: #FF5700; ">30%</text>
</view>
</view>
</view>
<view style="width: 50%;">
<view class="hui-box">最新油价</view>
<view class="dis-c">
<view class="dlan" style="color: #333333;">7.8</view>
<view class="dis"> <u-icon name="arrow-down-fill" color="#1FAD40" size="12"></u-icon>
<text style="font-size: 12px; color: #1FAD40; ">30%</text>
</view>
</view>
</view>
2023-11-27 14:20:20 +08:00
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: '',
}
},
components: {
},
methods: {
goback() {
uni.navigateBack()
}
}
}
</script>
<style scoped lang="scss">
.content {
background: #f4f5f6;
}
.container {
width: 100%;
height: 100vh;
box-sizing: border-box;
padding-top: 88px;
2023-11-30 17:28:36 +08:00
background: linear-gradient(180deg, #2F72F7 0%, rgba(47, 114, 247, 0) 50%, rgba(47, 114, 247, 0) 100%);
2023-11-27 14:20:20 +08:00
}
.my-header {
width: 100%;
height: 88px;
2023-11-30 17:28:36 +08:00
background: #2F72F7;
2023-11-27 14:20:20 +08:00
display: flex;
align-items: center;
justify-content: space-between;
2023-11-30 17:28:36 +08:00
color: #ffffff;
2023-11-27 14:20:20 +08:00
box-sizing: border-box;
padding: 0px 15px;
padding-top: 40px;
.my-icons {
width: 20px;
}
position: fixed;
top: 0px;
}
.top-box {
2023-11-30 17:28:36 +08:00
width: 95%;
color: #ffffff;
2023-11-27 14:20:20 +08:00
height: 50px;
2023-11-30 17:28:36 +08:00
margin: 10px auto;
position: relative;
}
.tupian {
background: url('http://47.95.206.185:83/imgriht.png')center no-repeat;
background-size: 100% 100%;
bottom: -45px;
right: 0px;
width: 130px;
height: 105px;
position: absolute;
}
.gang {
width: 4px;
height: 16px;
background: #2F72F7;
border-radius: 2px;
margin-right: 5px;
2023-11-27 14:20:20 +08:00
}
.t-left-box {
width: 50%;
text-align: center;
}
.t-right-box {
width: 50%;
text-align: center;
}
.box-centenr {
width: 100%;
box-sizing: border-box;
padding: 15px;
background: #ffffff;
}
.box-bor {
border-bottom: 1px solid #e8e8e8;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
}
2023-11-30 17:28:36 +08:00
.box-list {
width: 95%;
margin: 10px auto;
border-radius: 8px;
background: #ffffff;
box-sizing: border-box;
padding: 15px;
}
.dis-top {
display: flex;
align-items: center;
font-size: 18px;
font-weight: bold;
color: #333333;
}
.bottom-bt {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
margin: 5px auto;
}
.dis {
display: flex;
}
.dis-c {
display: flex;
align-items: center;
justify-content: center;
margin-top: 10px;
}
.hui-box {
width: 100%;
text-align: center;
font-size: 14px;
color: #707070;
}
.dlan {
color: #2F72F7;
font-weight: bold;
font-size: 25px;
2023-11-27 14:20:20 +08:00
}
</style>