123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <template>
- <view>
- <view class="list">
- <view class="item">
- <view class="item_title">梅花井矿</view>
- <view class="item_content">
- <view class="box">
- <view class="name">早班产量</view>
- <view class="num">0吨</view>
- </view>
- <view class="box">
- <view class="name">中班产量</view>
- <view class="num">0吨</view>
- </view>
- <view class="box">
- <view class="name">晚班产量</view>
- <view class="num">0吨</view>
- </view>
- </view>
- <view class="item_bottom">
- <view class="left">年累计产量:<text>1890691.3吨</text></view>
- <view class="right" @click="go_container()">
- <view class="more">更多详情</view>
- <uni-icons type="arrowright" size="12" color="#75B8D5"></uni-icons>
- </view>
- </view>
- </view>
- <view class="item">
- <view class="item_title">枣泉矿</view>
- <view class="item_content">
- <view class="box">
- <view class="name">早班产量</view>
- <view class="num">9781.9吨</view>
- </view>
- <view class="box">
- <view class="name">中班产量</view>
- <view class="num">711.4吨</view>
- </view>
- <view class="box">
- <view class="name">晚班产量</view>
- <view class="num">0吨</view>
- </view>
- </view>
- <view class="item_bottom">
- <view class="left">年累计产量:<text>1367859.5吨</text></view>
- <view class="right" @click="go_container()">
- <view class="more">更多详情</view>
- <uni-icons type="arrowright" size="12" color="#75B8D5"></uni-icons>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- },
- methods:{
- go_container(){
- uni.navigateTo({
- url:"../../production/p-statistics/p-s-container/p-s-container"
- })
- }
- }
-
- }
- </script>
- <style lang="scss">
- .list {
- padding-bottom: 40rpx;
- .item {}
- .item_title {
- text-align: center;
- line-height: 100rpx;
- font-size: 34rpx;
- font-weight: 700;
- }
- .item_content {
- box-sizing: border-box;
- padding: 0 20rpx;
- display: flex;
- justify-content: space-between;
- .box {
- box-sizing: border-box;
- width: 200rpx;
- text-align: center;
- border-radius: 6px;
- overflow: hidden;
- .name {
- font-size: 26rpx;
- line-height: 40rpx;
- }
- .num {
- font-size: 26rpx;
- line-height: 40rpx;
- }
- }
- .box:nth-child(1) {
- border: 1px solid #00A2E8;
- }
- .box:nth-child(1) .name {
- background-color: #00A2E8;
- }
- .box:nth-child(2) {
- border: 1px solid #FFBC34;
- }
- .box:nth-child(2) .name {
- background-color: #FFBC34;
- }
- .box:nth-child(3) {
- border: 1px solid #FFC0B2;
- }
- .box:nth-child(3) .name {
- background-color: #FFC0B2;
- }
- }
- .item_bottom {
- display: flex;
- justify-content: space-between;
- box-sizing: border-box;
- padding: 40rpx 0;
- margin: 0 20rpx;
- border-bottom: 1px solid #eee;
- .left {
- font-size: 24rpx;
- text {
- font-weight: 700;
- }
- }
- .right {
- display: flex;
- align-items: baseline;
- .more {
- margin-right: 6rpx;
- font-size: 24rpx;
- color: #75B8D5;
- }
- }
- }
- }
- </style>
|