123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- <template>
- <view class="content">
- <view class="item_box" style="background-color: #638BD5;" @click="go_production_report()">
- <view class="img">
- <image src="../t-p-icon/icon_2.png" mode=""></image>
- </view>
- <view class="text">
- <view class="name">生产报表</view>
- <view class="tip">当日产量140517.8吨</view>
- </view>
- </view>
- <view class="item_box" style="background-color: #A3A2E4;" @click="go_personnel_orientation()">
- <view class="img">
- <image src="../t-p-icon/icon_3.png" mode=""></image>
- </view>
- <view class="text">
- <view class="name">人员定位</view>
- <view class="tip">井下人数3892人</view>
- </view>
- </view>
- <view class="item_box" style="background-color: #8BC8DA;" @click="go_safety_monitoring()">
- <view class="img">
- <image src="../t-p-icon/icon_4.png" mode=""></image>
- </view>
- <view class="text">
- <view class="name">安全监测</view>
- <view class="tip">6268监测点</view>
- </view>
- </view>
- <view class="item_box" style="background-color: #FBB47B;">
- <view class="img">
- <image src="../t-p-icon/icon_6.png" mode=""></image>
- </view>
- <view class="text">
- <view class="name">视频监控</view>
- <view class="tip">工业视频</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name: "t-p-shicaocun",
- data() {
- return {
- };
- },
- methods: {
- // 生产报表
- go_production_report() {
- uni.navigateTo({
- url: "../../production/production_report/production_report"
- })
- },
- // 安全监测
- go_safety_monitoring() {
- uni.navigateTo({
- url: "../../production/safety_monitoring/safety_monitoring?mine=shicaocun"
- })
- },
- //人员定位
- go_personnel_orientation() {
- uni.navigateTo({
- url:"../../production/personnel_orientation/personnel_orientation?mine=shicaocun"
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .content {
- box-sizing: border-box;
- padding: 20rpx 25rpx 0;
- margin-bottom: 100rpx;
- overflow: hidden;
- .item_box {
- float: left;
- width: 220rpx;
- height: 280rpx;
- margin-right: 20rpx;
- margin-bottom: 20rpx;
- border-radius: 16rpx;
- .img {
- box-sizing: border-box;
- padding-top: 40rpx;
- text-align: center;
- image {
- width: 140rpx;
- height: 140rpx;
- }
- }
- .text {
- text-align: center;
- color: #FFFFFF;
- line-height: 40rpx;
- .name {
- font-size: 28rpx;
- }
- .tip {
- font-size: 24rpx;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- }
- .item_box:nth-child(3n) {
- margin-right: 0;
- }
- }
- </style>
|