123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370 |
- <template>
- <view class="content">
- <view class="top-fixed">
- <!-- tab切换 -->
- <view class="pub-tab-box">
- <view class="tab-inner">
- <view
- v-for="(item,index) in orderStatus"
- :key="index"
- :class="item.val == orderStatusValue?'item active':'item'"
- @click="orderStatusChange(item)">
- <view class="text">
- {{ item.name }}
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="consu-list">
- <view class="tab-time">
- <picker class="birth-picker" mode="date" fields="month" @change="bindDateChange">
- <view class="left-box">
- <view>{{dayName}}</view>
- <image class="w48 h48" src="../static/images/health/arrow_down.png"></image>
- </view>
- </picker>
- </view>
- <mescroll-body top="176upx" ref="mescrollRef" @init="mescrollInit" @down="downCallback" @up="upCallback" :down="downOption"
- :up="upOption">
- <view v-for="(item,index) in dataList" :key="index" class="item" @longpress="cancel(item)">
- <view class="item-top">
- {{item.measurementDate}}
- </view>
- <view class="bottom-box" @click="showDetail(item)">
- <view class="amount-paid">
- <view :class="'title bg'+item.level">{{item.level==0?'正常':item.level==1?'不良':'高风险'}}</view>
- <view class="data">{{item.value1}} μmol/L</view>
- </view>
- <view class="time">{{item.measurementTime}}</view>
- </view>
- </view>
- </mescroll-body>
- </view>
- </view>
- </template>
- <script>
- import {getDataList,getLatest,deleteData} from '@/api/healthUser.js'
- import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
- export default {
- mixins: [MescrollMixin],
- data() {
- return {
- day:this.utils.timeFormat(new Date(),'yyyy-mm'),
- dayName:this.utils.timeFormat(new Date(),'yyyy年mm月'),
- orderStatus:[
- {name:"全部",val:""},
- {name:"正常",val:"0"},
- {name:"不良",val:"1"},
- {name:"高风险",val:"2"},
- ],
- orderStatusValue:'',
- mescroll:null,
- // 上拉加载的配置
- upOption: {
- onScroll:true,
- use: true, // 是否启用上拉加载; 默认true
- page: {
- num: 0, // 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
- size: 10 // 每页数据的数量,默认10
- },
- noMoreSize: 10, // 配置列表的总数量要大于等于5条才显示'-- END --'的提示
- empty: {
- icon:'https://user.test.ylrztop.com/images/empty_icon.png',
- tip: '暂无数据'
- }
- },
- // 列表数据
- dataList: []
- }
- },
- onLoad(options) {
- this.userId=options.userId
- uni.$on('refreshAcidList', () => {
- this.orderStatusValue=''
- this.mescroll.resetUpScroll()
- uni.$emit('refreshAcid');
- })
- },
- methods: {
- // 时间选择
- bindDateChange: function(e) {
- this.day = this.utils.timeFormat(e.target.value,'yyyy-mm')
- this.dayName=this.utils.timeFormat(e.target.value,'yyyy年mm月')
- this.mescroll.resetUpScroll()
- },
- navgetTo(index){
- uni.navigateTo({
- url: index==0?'/pages_health/addServe':'/pages_health/addCompetitors'
- })
- },
- cancel(item){
- var that=this;
- uni.showModal({
- title: '提示',
- content: '确定删除记录吗',
- success: function (res) {
- if (res.confirm) {
- var data = {
- id:item.id
- };
- deleteData(data).then(res => {
- if(res.code==200){
- uni.showToast({
- icon:'success',
- title: '删除成功',
- });
- that.mescroll.resetUpScroll()
- uni.$emit('refreshAcid');
- }else{
- uni.showToast({
- icon:'none',
- title: res.msg,
- });
- }
- });
- }
- else if (res.cancel) {
- }
- }
- });
- },
- // tab切换
- orderStatusChange(item) {
- this.orderStatusValue = item.val
- this.mescroll.resetUpScroll()
- },
- mescrollInit(mescroll) {
- this.mescroll = mescroll;
- },
- /*下拉刷新的回调 */
- downCallback(mescroll) {
- mescroll.resetUpScroll()
- },
- upCallback(page) {
- //联网加载数据
- var that = this;
- var data = {
- "userId": this.userId,
- "measurementType": 4,
- level:this.orderStatusValue,
- timeSearch:this.day,
- pageNum:page.num,
- pageSize:page.size
- };
- getDataList(data).then(res => {
- if(res.code==200){
- //设置列表数据
- if (page.num == 1) {
- that.dataList = res.data.list;
-
- } else {
- that.dataList = that.data.List.concat(res.data.list);
-
- }
- that.mescroll.endBySize(res.data.list.length, res.data.total);
-
- }else{
- uni.showToast({
- icon:'none',
- title: "请求失败",
- });
- that.dataList = null;
- that.mescroll.endErr();
- }
- });
- },
- showDetail(item){
- // console.log(item,'pp')
- uni.navigateTo({
- url: '/pages_echarts/acidDetail?type=edit&id='+item.id+'&userId='+this.userId
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .content{
- padding: 20upx;
- .top-fixed{
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 10;
- }
- .pub-tab-box{
- box-sizing: border-box;
- width: 100%;
- padding: 0 60upx;
- background-color: #FFFFFF;
- .tab-inner{
- height: 88upx;
- line-height: 88upx;
- display: flex;
- align-items: center;
- justify-content:space-between;
- overflow-x: auto;
- }
- .item{
- font-size: 28upx;
- white-space: nowrap;
- line-height: 1;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- // margin-right: 60upx;
- display: flex;
- align-items: center;
- justify-content: center;
- &:last-child{
- margin-right: 0;
- }
- &.active{
- font-weight: bold;
- color: #333333;
- &::after {
- content: "";
- width: 48rpx;
- height: 8rpx;
- background: linear-gradient(120deg, #31A1FE 0%, #008FD3 100%);
- position: absolute;
- bottom: 0;
- border-radius: 6upx 6upx 0upx 0;
- }
- }
- .text{
- position: relative;
- z-index: 1;
- }
- .tab-bg{
- width: 72upx;
- height: 28upx;
- position: absolute;
- top: 17upx;
- left: 50%;
- transform: translateX(-36upx);
- z-index: -1;
- }
- }
- }
- .tab-time{
- padding: 32rpx 24rpx;
- font-size: 30rpx;
- color: #222426;
- text-align: left;
- position: fixed;
- top:88upx;
- z-index:10;
- .birth-picker {
- flex: 1;
- display: flex;
- align-items: center;
-
- .left-box{
- width: 100%;
- font-weight: 500;
- font-size: 30rpx;
- color: #222426;
- display: flex;
- align-items: center;
- .input-box{
- // width: 470upx;
- }
- .arrow{
- width: 13upx;
- height: 23upx;
- margin-left: 20upx;
- }
- }
- }
- }
- .consu-list{
- .item{
- background: #FFFFFF;
- border-radius: 16upx;
- padding: 24rpx;
- position: relative;
- margin-bottom: 20upx;
- .item-top{
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 28rpx;
- color: #626468;
- text-align: left;
- padding:16rpx 0;
- .item-title{
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 12rpx;
-
- }
- .ask-text{
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 36rpx;
- color: #222426;
- text-align: left;
- }
- .ask-time{
- font-size: 24rpx;
- color: #898E91;
- text-align: left;
- line-height: 40rpx;
- }
- }
- .bottom-box{
- // height: 80upx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding:32rpx 0;
- border-bottom: 1px solid #ECECEC;
- &:last-child{
- border-bottom: 0;
- }
- .amount-paid{
- display: flex;
- align-items: center;
- .title{
- width: 72rpx;
- height: 72rpx;
- line-height: 72rpx;
- font-family: PingFang SC;
- font-weight: 500;
- font-size: 24rpx;
- color: #FFFFFF;
- text-align: center;
- margin-right: 18rpx;
- border-radius:50%;
- }
- .bg0{
- background: #52D087;
- }
- .bg1{
- background: #FFB992;
- }
- .bg2{
- background: #FF5558;
- }
- .data{
- font-weight: 500;
- font-size: 30rpx;
- color: #222426;
- text-align: left;
- }
- }
- .time{
- font-size: 24rpx;
- color: #898E91;
- text-align: right;
- }
- }
- }
- }
-
- }
- </style>
|