123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365 |
- <template>
- <view class="container">
- <uni-nav-bar fixed :border="false" :backgroundColor="`rgba(255,255,255,${opacity})`" title="血氧监测"
- :statusBar="true" left-icon="left" @clickLeft="back"></uni-nav-bar>
- <image class="page-bg" src="@/static/images/pages_watch/images/blood_oxygen_top_bg.png" mode="widthFix"></image>
- <view class="container-body">
- <dateTimePicker @onChange="onChangeTime" />
- <!-- 血氧趋势 -->
- <view class="box">
- <view class="box-title">
- <view class="box-title-left">血氧趋势</view>
- </view>
- <view class="ytitle" v-show="!loading && !isEmpty">百分比</view>
- <view class="echartbox">
- <qiun-data-charts v-show="!isEmpty" type="column" :opts="opts" :chartData="chartData"
- tooltipFormat="spTooltip" />
- <myEmpty v-show="isEmpty" style="padding: 40rpx 0 0 0;"></myEmpty>
- </view>
- <view class="legend" v-show="!loading && !isEmpty">
- <view class="legend-item">
- <!-- 小于70% ,<微信开发者工具报错-->
- <view class="legend-dot" style="background-color: #FF5558;"></view><text>{{'<'}}70%</text>
- </view>
- <view class="legend-item">
- <view class="legend-dot" style="background-color: #FDBD27;"></view><text>70 - 89%</text>
- </view>
- <view class="legend-item">
- <view class="legend-dot" style="background-color: #52D087;"></view><text>90 - 100%</text>
- </view>
- </view>
- <view class="statistics">
- <view class="statistics-item">
- <view>平均值</view>
- <view class="statistics-num">{{avg}}%</view>
- </view>
- <view class="statistics-item">
- <view>最低值</view>
- <view class="statistics-num">{{min}}%</view>
- </view>
- <view class="statistics-item">
- <view>最高值</view>
- <view class="statistics-num">{{max}}%</view>
- </view>
- </view>
- <view class="abnormal">
- <view class="abnormal-item colorbg1">
- <view class="abnormal-item-title">血氧过高提醒</view>
- <view class="abnormal-item-num">
- <text>{{status2}}次</text>
- </view>
- </view>
- <view class="abnormal-item colorbg2">
- <view class="abnormal-item-title">血氧过低提醒</view>
- <view class="abnormal-item-num">
- <text>{{status1}}次</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import myEmpty from "@/pages_watch/components/myEmpty/myEmpty.vue"
- import dateTimePicker from "@/pages_watch/components/dateTimePicker/dateTimePicker.vue"
- import {
- spInfo,
- spCount
- } from "@/api/pages_watch/healthMonitoring.js";
- export default {
- components: {
- myEmpty,
- dateTimePicker
- },
- data() {
- return {
- opacity: 0,
- loading: true,
- isEmpty: false,
- // 0:正常,1:偏低2:偏高
- status1: 0,
- status2: 0,
- avg: 0,
- min: 0,
- max: 0,
- chartData: {},
- opts: {
- padding: [15, 0, 15, 0],
- enableScroll: false,
- dataLabel: false,
- legend: {
- show: false
- },
- xAxis: {
- disableGrid: true,
- fontSize: 12,
- axisLine: false,
- fontColor: '#ccc',
- labelCount: 7,
- format: "formatterTime",
- },
- yAxis: {
- gridType: "dash",
- dashLength: 2,
- data: [{
- fontColor: '#ccc',
- min: 0,
- // max: 100,
- axisLine: false,
- fontSize: 12,
- }]
- },
- extra: {
- tooltip: {
- gridType: "dash",
- showArrow: false,
- legendShow: true,
- legendShape: "circle"
- },
- column: {
- type: "group",
- width: 12,
- barBorderRadius: [4, 4, 0, 0],
- }
- }
- }
- }
- },
- methods: {
- back() {
- uni.navigateBack({
- delta: 1
- })
- },
- onChangeTime(time) {
- const param = {
- startTime: this.$timeFormat(time[0], 'yyyy/mm/dd hh:MM:ss'),
- endTime: this.$timeFormat(time[1], 'yyyy/mm/dd hh:MM:ss'),
- deviceId: uni.getStorageSync("deviceId") || ""
- }
- this.getServerData(param)
- this.getCount(param)
- },
- getServerData(param) {
- this.loading = true
- spInfo(param).then((res) => {
- this.loading = false
- this.isEmpty = !(res.data && res.data.list && res.data.list.length > 0)
- if (res.code == 200 && res.data) {
- this.avg = res.data.avg
- this.min = res.data.min
- this.max = res.data.max
- let chartData = {
- categories: res.data.list.map(item => item.createTime),
- series: [{
- name: "血氧",
- data: res.data.list.map(item => ({
- value: item.minBoxy,
- color: item.status === 1 ? "#FDBD27" : item.status ===
- 2 ? "#FF5558" : "#52D087"
- }))
- }]
- }
- this.chartData = JSON.parse(JSON.stringify(chartData));
- } else {
- this.avg = undefined
- this.max = undefined
- this.min = undefined
- }
- }).catch((err) => {
- this.loading = false
- });
- },
- getCount(param) {
- this.status1 = 0
- this.status2 = 0
- spCount(param).then((res) => {
- if (res.code == 200 && res.data && res.data.length > 0) {
- // 0:正常,1:偏低2:偏高
- res.data.forEach(item => {
- this.status1 += item.status == 1 ? item.count : 0
- this.status2 += item.status == 2 ? item.count : 0
- })
- }
- }).catch((err) => {});
- }
- },
- onPageScroll(e) {
- if (e.scrollTop <= 44) {
- this.opacity = e.scrollTop / 44 * 1
- } else if (e.scrollTop > 44) {
- this.opacity = 1
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @mixin u-flex($flexD, $alignI, $justifyC) {
- display: flex;
- flex-direction: $flexD;
- align-items: $alignI;
- justify-content: $justifyC;
- }
- .container {
- padding: 0 24rpx;
- position: relative;
- }
- .page-bg {
- width: 100%;
- height: auto;
- position: absolute;
- top: 0;
- left: 0;
- }
- .container-body {
- position: relative;
- z-index: 1;
- padding-bottom: 24rpx;
- }
- .box-title {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #757575;
- @include u-flex(row, center, space-between);
- &-left {
- font-weight: 500;
- font-size: 36rpx;
- color: #222222;
- line-height: 42rpx;
- }
- &-right {
- @include u-flex(row, center, flex-start);
- image {
- height: 48rpx;
- width: 48rpx;
- }
- }
- }
- .ytitle {
- margin-top: 10rpx;
- line-height: 34rpx;
- margin-bottom: 24rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #999999;
- }
- .legend {
- height: 48rpx;
- margin-top: 44rpx;
- margin-bottom: 24rpx;
- @include u-flex(row, center, space-between);
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #757575;
- &-item {
- flex: 1;
- text-align: center;
- @include u-flex(row, center, center);
- }
- &-dot {
- width: 12rpx;
- height: 12rpx;
- border-radius: 50%;
- margin: 12rpx;
- }
- }
- .box {
- padding: 24rpx;
- margin-bottom: 20rpx;
- box-sizing: border-box;
- background: #FFFFFF;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- }
- .echartbox {
- height: 520rpx;
- width: 100%;
- }
- .statistics {
- @include u-flex(row, center, space-between);
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 26rpx;
- color: #999999;
- &-item {
- flex: 1;
- height: 160rpx;
- @include u-flex(column, center, center);
- }
- &-num {
- font-weight: 500;
- font-size: 48rpx;
- color: #333333;
- height: 68rpx;
- margin-top: 4rpx;
- }
- }
- .abnormal {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #757575;
- @include u-flex(row, center, flex-start);
- flex-wrap: wrap;
- // gap: 18rpx;
- margin-top: 16rpx;
- margin-bottom: -2rpx;
- margin-right: -18rpx;
- &-item {
- width: 318rpx;
- height: 144rpx;
- padding: 0 24rpx;
- margin: 0 18rpx 18rpx 0;
- box-sizing: border-box;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- border: 2rpx solid #FCF4F4;
- @include u-flex(column, flex-start, center);
- &-title {
- font-weight: 500;
- font-size: 28rpx;
- color: #333333;
- margin-bottom: 16rpx;
- }
- &-num {
- width: 100%;
- @include u-flex(row, center, space-between);
- }
- }
- .colorbg1 {
- background: #FFFCFC;
- border-color: #FCF4F4;
- }
- .colorbg2 {
- background: #FAFBFF;
- border-color: #F2F7FE;
- }
- }
- </style>
|