1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <template>
- <scroll-view class="scroll" v-if="list.length" :scroll-x="true">
- <view class="box">
- <view class="item" v-for="item in list" :key="item.w_dataparamid">
- <view class="label">
- {{ item.paramname }}
- <text v-if="item.unit">
- ({{ item.unit }})
- </text>
- </view>
- <view class="value">
- {{ item.lastvalue }}
- </view>
- </view>
- </view>
- </scroll-view>
- </template>
- <script>
- export default {
- props: {},
- name: "horizontalDirection",
- data() {
- return {
- list: []
- }
- },
- methods: {
- getList(w_deviceid) {
- return new Promise((resolve, reject) => {
- this.$Http.basic({
- "id": 20230711165702,
- "content": {
- w_deviceid
- }
- }).then(res => {
- console.log("设备实时数据查询", res)
- if (this.cutoff(res.msg)) return resolve(0)
- this.list = res.data;
- resolve(res.data.length ? 49 : 0)
- })
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .scroll {
- width: 355px;
- background: #FFFFFF;
- border-radius: 4px;
- margin: 15px auto 0;
- height: 62px;
- .box {
- display: flex;
- flex-wrap: nowrap;
- align-items: center;
- padding: 12px;
- box-sizing: border-box;
- .item {
- flex-shrink: 0;
- padding-right: 15px;
- .label {
- line-height: 14px;
- font-size: 10px;
- color: #666666;
- }
- .value {
- margin-top: 5px;
- line-height: 20px;
- font-size: 14px;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- }
- }
- }
- </style>
|