123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495 |
- <template>
- <view class="hb column hidden container">
- <image class="bg" src="/static/images/health/uric_acid_top_bg.png" mode="widthFix"></image>
- <view :style="{height: statusBarHeight,background: bgColor }"></view>
- <u-navbar title="尿酸监测" titleStyle="font-weight: bold;" @rightClick="rightClick" :autoBack="true"
- :bg-color="bgColor">
- </u-navbar>
-
- <view class="top-fixed">
- <dateTimePicker @onChange="onChangeTime" :tabColor="'blue'"/>
- </view>
- <scroll-view class="content" :scroll-y="true">
- <view class="content-box">
- <view class="tltle">尿酸趋势</view>
- <view class="subtitle">单位:μmol/L</view>
- <view class="charts-box">
- <qiun-data-charts type="column" :opts="opts" :chartData="chartData" />
- </view>
- <view class="legend">
- <view class="legend-item">
- <view class="legend-dot" style="background-color: #52D087;"></view><text>150-416μmol/L</text>
- </view>
- <view class="legend-item">
- <view class="legend-dot" style="background-color: #FDBD27;"></view><text>{{'<'}}150μmol/L</text>
- </view>
- <view class="legend-item">
- <view class="legend-dot" style="background-color: #FF5030;"></view><text>{{'>'}}416μmol/L</text>
- </view>
- </view>
- </view>
- <view class="content-box">
- <view class="align-center justify-between">
- <view class="tltle">尿酸异常记录</view>
- <view class="more" @click="navgetTo()">
- <text>查看更多</text>
- <image class="w48 h48" src="/static/images/health/right_arrow_right_icon24.png"></image>
- </view>
-
- </view>
- <view class="type-box">
- <view class="box bg3">
- <view class="fs32 mb12">高风险</view>
- <view class="align-center justify-between">
- <text class="subtitle">4次</text>
- <image class="w24 h24" src="/static/images/health/yz_arrow_icon.png"></image>
- </view>
- </view>
- <view class="box bg2">
- <view class="fs32 mb12">不良</view>
- <view class="align-center justify-between">
- <text class="subtitle">4次</text>
- <image class="w24 h24" src="/static/images/health/qw_arrow_icon.png"></image>
- </view>
- </view>
- <view class="box bg1">
- <view class="fs32 mb12">正常</view>
- <view class="align-center justify-between">
- <text class="subtitle">4次</text>
- <image class="w24 h24" src="/static/images/health/zc_arrow_icon.png"></image>
- </view>
- </view>
- </view>
- <view class="content-bottom">
- <view class="align-center">
- <image class="w48 h48" src="/static/images/health/note_icon.png"></image>
- <view class="title">尿酸
- <text>最新标准</text>
- </view>
- </view>
- <view class="bottom-box">
- <view>男性正常值:150~416umol/L</view>
- <view>女性正常值:89~357μmol/L</view>
- </view>
- </view>
- </view>
- <view class="h20"></view>
- <view class="btn-box">
- <view class="sub-btn" @click="navgetTo()">记录</view>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- import dateTimePicker from "@/pages_echarts/components/dateTimePicker/dateTimePicker.vue"
- export default {
- components: {
- dateTimePicker
- },
- data() {
- return {
- loading: false,
- isEmpty: false,
- statusBarHeight: '',
- top: 0,
- aIndex: 0,
- times: [{
- name: "每日",
- val: 0
- },
- {
- name: "每周",
- val: 1
- },
- {
- name: "每月",
- val: 2
- }
- ],
- indexInfo: [],
- 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],
- }
- }
- }
- }
- },
- computed: {
- // 计算属性的 getter
- bgColor: function() {
- var top = this.top / 30;
- return 'rgba(11,179,242, ' + top + ')';
- },
- },
- onLoad() {
- // 获取系统信息
- const sys = uni.getSystemInfoSync()
- this.statusBarHeight = sys.statusBarHeight + 'px'
- this.getServerData();
- },
- onUnload() { //普通页面在 onUnload 生命周期中执行
- uni.$emit('stop')
- },
- onHide() { //tabBar页面在onHide生命周期中执行
- uni.$emit('stop')
- },
- onPageScroll(e) {
- //console.log(e)
- this.top = e.scrollTop;
- },
- methods: {
- // tab切换
- orderStatusChange(item) {
- this.aIndex = item.val
- },
- onChangeTime(time) {
- const param = {
- startTime: this.utils.timeFormat(time[0],'yyyy/mm/dd hh:MM:ss'),
- endTime: this.utils.timeFormat(time[1],'yyyy/mm/dd hh:MM:ss'),
- deviceId: ''
- }
- // this.queryParam = param
- // this.getServerData(param)
- // this.getAbnormalInfo(param)
- },
- getServerData() {
- //模拟从服务器获取数据时的延时
- setTimeout(() => {
- //模拟服务器返回数据,如果数据格式和标准格式不同,需自行按下面的格式拼接
- let res = {
- categories: ["00:00", "06:00", "12:00", "18:00", "23:59"],
- series: [{
- name: "尿酸",
- data:[{
- value:23,
- color:'#FDBD27',
- },{
- value:123,
- color:'#FF5558',
-
- },
- {
- value:90,
- color:'#52D087',
- },
- {
- value:23,
- color:'#FDBD27',
- },
- {
- value:90,
- color:'#52D087',
- }
- ]
- // data: res.data.map(item => ({
- // value: item.val,
- // color: item.status === 1 ? "#FDBD27" : item.status ===
- // 2 ? "#FF5558" : "#52D087"
- // }))
- }
- ]
- };
- this.chartData = JSON.parse(JSON.stringify(res));
- }, 500);
- },
- navgetTo(index) {
- uni.navigateTo({
- url: '/pages_echarts/acidList'
- })
- },
- goToUser() {
- uni.navigateTo({
- url: '/pages_health/addUser?type=edit&docId='
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- position: relative;
- .bg {
- width: 100%;
- height: 380rpx;
- position: absolute;
- top: 0;
- left: 0;
- z-index: -1;
- }
- }
- .top-fixed {
- width: 100%;
- position: fixed;
- top: calc(var(--status-bar-height) + 140rpx);
- left: 0;
- z-index: 10;
- }
- .pub-tab-box {
- box-sizing: border-box;
- width: 400rpx;
- // padding: 0 60rpx;
- margin: 0 auto;
- // background-color: #FFFFFF;
- .tab-inner {
- height: 88upx;
- line-height: 88upx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- overflow-x: auto;
- }
- .item {
- font-family: PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #626468;
- line-height: 64rpx;
- text-align: center;
- &:last-child {
- margin-right: 0;
- }
- &.active {
- font-weight: 500;
- width: 124rpx;
- height: 64rpx;
- background: #4585F8;
- border-radius: 32rpx 32rpx 32rpx 32rpx;
- color: #fff;
- }
- .text {
- position: relative;
- z-index: 1;
- }
- .tab-bg {
- width: 72upx;
- height: 28upx;
- position: absolute;
- top: 17upx;
- left: 50%;
- transform: translateX(-36upx);
- z-index: -1;
- }
- }
- }
- .content {
- padding-top: calc(var(--status-bar-height) + 300rpx) !important;
- height: 100vh;
- box-sizing: border-box;
- width: 100%;
- padding: 20rpx;
- overflow: hidden;
- .btn-box {
- height: 120upx;
- padding: 0 30upx;
- display: flex;
- align-items: center;
- justify-content: center;
- .sub-btn {
- width: 388rpx;
- height: 72rpx;
- line-height: 72upx;
- text-align: center;
- font-size: 32upx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- background: #4585F8;
- border-radius: 44upx;
- margin-bottom: 40upx;
- }
- }
- .content-box {
- // width: 100%;
- background: #FFFFFF;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- padding: 24rpx;
- margin-bottom: 20rpx;
- .tltle {
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 36rpx;
- color: #222426;
- text-align: left;
- margin-bottom: 16rpx;
- }
- .subtitle {
- font-weight: 400;
- font-size: 24rpx;
- color: #898E91;
- text-align: left;
- }
- /* 请根据实际需求修改父元素尺寸,组件自动识别宽高 */
- .charts-box {
- // width: 100%;
- height: 500rpx;
- margin-top: 30rpx;
- }
- .legend {
- // height: 34rpx;
- margin-top: 44rpx;
- // @include u-flex(row, center, space-between);
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #626468;
- &-item {
- flex: 1;
- text-align: center;
- display: flex;
- align-items: center;
- justify-content: center;
- // @include u-flex(row, center, center);
- }
- &-dot {
- width: 16rpx;
- height: 16rpx;
- border-radius: 50%;
- margin: 16rpx;
- }
- }
- .more {
- display: flex;
- align-items: center;
- font-family: PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #898E91;
- }
- .type-box {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-top: 20rpx;
- .box {
- padding: 24rpx;
- width: 158rpx;
- // height: 144rpx;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- &.bg1 {
- background: #FAFFFC;
- border: 2rpx solid #EBFFF3;
- }
- &.bg2 {
- background: #FEFAF8;
- border: 2rpx solid #FDF7F3;
- }
- &.bg3 {
- background: #FFFCFC;
- border: 2rpx solid #FCF4F4;
- }
- }
- }
- .content-bottom {
- padding: 24rpx;
- background: #F5F7FA;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- margin-top: 32rpx;
- .title {
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #222426;
- text-align: left;
- margin-left: 14rpx;
- text {
- color: #FF5030;
- }
- }
- .bottom-box {
- postion: relative;
- font-weight: 400;
- font-size: 24rpx;
- color: #626468;
- text-align: left;
- line-height: 40rpx;
- padding-top: 24rpx;
- padding-left: 24rpx;
- view {
- position: relative;
- }
- view::before {
- content: "";
- width: 8rpx;
- height: 8rpx;
- background: rgba(255, 80, 48, 0.2);
- position: absolute;
- left: -22rpx;
- top: 20rpx;
- border-radius: 50%;
- }
- }
- }
- }
- }
- </style>
|