123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <template>
- <view class="page-body">
- <page-header :name="pageData.name" :bg="'#1560e0'" :showLeft="true" @goBack="goBack()"></page-header>
- <view class="scroll-wrap">
- <view class="basic-info-wrap">
- <view class="img-wrap">
- <image src="@/static/rhb.jpg" />
- </view>
- <view class="radius-wrap"></view>
- </view>
- <view class="detail-info-wrap">
- <page-card style="margin-bottom: 30rpx;" :notShow="true" :name="'设备参数'">
- <template v-slot:content>
- <simple-table :tableHead="tableHead" :list="paramsList"></simple-table>
- </template>
- </page-card>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- pageData: {},
- tableHead: ['名称', '参数'],
- paramsList: [{
- name: '1#锅炉',
- params: ['105℃']
- },{
- name: '2#锅炉',
- params: ['105℃']
- },{
- name: '3#锅炉',
- params: ['106℃']
- },{
- name: '4#锅炉',
- params: ['100℃']
- },{
- name: '锅炉供水管',
- params: ['120℃']
- },{
- name: '二次供水管',
- params: ['121℃']
- },{
- name: '实际目标水温',
- params: ['130℃']
- },{
- name: '当前室内水温',
- params: ['100℃']
- },{
- name: '低低控制温度',
- params: ['50℃']
- },{
- name: '最低控制温度',
- params: ['50℃']
- },{
- name: '最高控制温度',
- params: ['200℃']
- },{
- name: '出水超温',
- params: ['110℃']
- },{
- name: '二次供水超温',
- params: ['115℃']
- },{
- name: '二次回水低压',
- params: ['0.57MPa']
- },{
- name: '水箱液位高',
- params: ['60M']
- },{
- name: '水箱液位低',
- params: ['20M']
- }]
- }
- },
- onLoad(option) {
- this.pageData = JSON.parse(option.data)
- this.getData()
- },
- methods: {
- goBack() { // 返回上一頁面
- uni.navigateBack()
- },
- async getData() {
- let res = await this.$http({
- url: `/qsy/dcs/transform/xgl`,
- method: 'POST'
- })
- this.paramsList = res.data.data.paramsList
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .page-body {
- .scroll-wrap {
- height: calc(100vh - 85rpx);
- overflow: scroll;
- .basic-info-wrap {
- position: relative;
- height: auto;
- padding: 50rpx 49rpx 0;
- background: url(../../../static/page_bg.png);
- background-size: 140%;
- .info-wrap {
- display: flex;
- flex-wrap: wrap;
- .data-item-wrap {
- width: 33.33%;
- padding: 9rpx 0;
- min-height: 81rpx;
- text-align: center;
- margin-top: 48rpx;
- border-right: 1px solid #FFFFFF;
- .title {
- font-size: 22rpx;
- color: #FFFFFF;
- margin-bottom: 14rpx;
- }
- .data {
- font-weight: 700;
- font-size: 32rpx;
- color: #FFF600;
- }
- }
- .data-item-wrap:nth-child(-n+3) {
- margin-top: 0;
- }
- .data-item-wrap:nth-child(3n) {
- border: none;
- }
- }
- .img-wrap {
- padding: 38rpx 0 57rpx;
- text-align: center;
- image {
- width: 100rpx;
- height: 120rpx;
- }
- }
- .radius-wrap {
- position: absolute;
- left: 0;
- bottom: 0;
- width: 100vw;
- height: 30rpx;
- background-color: #fff;
- border-radius: 35rpx 35rpx 0 0;
- }
- }
-
- .detail-info-wrap {
- padding: 40rpx 35rpx;
-
- .detail-wrap {
- display: flex;
- flex-wrap: wrap;
- padding: 35rpx 55rpx 18rpx 55rpx;
- color: #8D8D8D;
- .item {
- display: flex;
- font-size: 26rpx;
- justify-content: space-between;
- width: calc(50% - 61rpx);
- margin-bottom: 50rpx;
-
- .params {
- color: #00BD00;
- }
-
- .status-wrap {
- width: 100%;
-
- /deep/ .tip-wrap {
- width: 100%;
- justify-content: space-between;
- }
- }
- }
-
- .item:nth-child(2n) {
- margin-left: 120rpx;
- }
- }
-
- .params-wrap {
- display: flex;
- flex-wrap: wrap;
- font-size: 26rpx;
- padding: 35rpx 55rpx;
-
- .item {
- width: calc(50% - 32rpx);
- display: flex;
- justify-content: space-between;
- margin-top: 50rpx;
-
- view:first-child {
- color: #8D8D8D;
- }
- }
-
- .item:nth-child(2n) {
- margin-left: 62rpx;
- }
-
- .item:nth-child(-n+2) {
- margin-top: 0;
- }
- }
- }
- }
- }
- </style>
|