Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
132e8a6f20
@ -35,30 +35,23 @@
|
|||||||
<view class="Threecategories">
|
<view class="Threecategories">
|
||||||
<view class="item" @tap="goBehaviorpoints">
|
<view class="item" @tap="goBehaviorpoints">
|
||||||
<view class="number">
|
<view class="number">
|
||||||
0
|
{{appPersonallist.score>=0?appPersonallist.score:0}}
|
||||||
</view>
|
</view>
|
||||||
<view class="text">
|
<view class="text">
|
||||||
行为积分
|
行为积分
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="item" @tap='gointegral'>
|
<view class="item" @tap='gointegral'>
|
||||||
<view class="number" v-if="!appPersonallist.integral">
|
<view class="number">
|
||||||
0
|
{{appPersonallist.integral>=0?appPersonallist.integral:0}}
|
||||||
</view>
|
|
||||||
<view class="number" v-else>
|
|
||||||
{{appPersonallist.integral}}
|
|
||||||
</view>
|
</view>
|
||||||
<view class="text">
|
<view class="text">
|
||||||
健康豆
|
健康豆
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="item" @tap='gocoupon'>
|
<view class="item" @tap='gocoupon'>
|
||||||
<view class="number"
|
<view class="number">
|
||||||
v-if="appPersonallist.patientCouponCount==0 ||!appPersonallist.patientCouponCount">
|
{{appPersonallist.patientCouponCount>=0?appPersonallist.patientCouponCount:0}}
|
||||||
0
|
|
||||||
</view>
|
|
||||||
<view class="number" v-else>
|
|
||||||
{{appPersonallist.patientCouponCount}}
|
|
||||||
</view>
|
</view>
|
||||||
<view class="text">
|
<view class="text">
|
||||||
优惠券
|
优惠券
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="app">
|
<view class="app" v-if="prejectlist.data">
|
||||||
<view class="content" v-for="(item,index) in prejectlist" @tap="result(item)">
|
<view class="content" v-for="(item,index) in prejectlist" @tap="result(item)">
|
||||||
<view class="big">{{item.projectName}}
|
<view class="big">{{item.projectName}}
|
||||||
</view>
|
</view>
|
||||||
@ -8,6 +8,10 @@
|
|||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="app" v-else>
|
||||||
|
<u-empty mode="order" icon-size='220' text="暂无筛查结果"></u-empty>
|
||||||
|
</view>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<view class="app">
|
<view class="app" v-if="prejectlist.data">
|
||||||
<view class="content" v-for="(item,index) in prejectlist">
|
<view class="content" v-for="(item,index) in prejectlist">
|
||||||
<view class="big">{{item.projectName}}
|
<view class="big">{{item.projectName}}
|
||||||
</view>
|
</view>
|
||||||
@ -10,19 +10,9 @@
|
|||||||
详情
|
详情
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="content">
|
|
||||||
<view class="big">眼底筛查
|
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
<view class="servename">
|
<view class="app" v-else>
|
||||||
2023-12-12 12:12:12
|
<u-empty mode="order" icon-size='220' text="暂无筛查记录"></u-empty>
|
||||||
</view>
|
|
||||||
<view class="appoint" @tap="goapponint">
|
|
||||||
详情
|
|
||||||
</view>
|
|
||||||
</view> -->
|
|
||||||
|
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|||||||
@ -18,8 +18,9 @@
|
|||||||
<view class="doctorSend" v-else>
|
<view class="doctorSend" v-else>
|
||||||
<image class="head" src="@/static/docHead.png"></image>
|
<image class="head" src="@/static/docHead.png"></image>
|
||||||
<view class="">
|
<view class="">
|
||||||
<text>{{item.senderName}}</text>
|
<!-- <text>{{item.senderName}}</text> -->
|
||||||
<view class="sendBox" v-if="item.content">{{item.content}}</view>
|
<view class="sendBox" v-if="item.messageType==1">{{item.content}}</view>
|
||||||
|
<image v-if="item.messageType==2" :src="baseurl+item.content" class="snedItemimage" />
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<video v-if="item.video" :src="item.video"></video>
|
<video v-if="item.video" :src="item.video"></video>
|
||||||
@ -356,7 +357,6 @@
|
|||||||
// console.log(JSON.stringify(res.tempFilePaths));
|
// console.log(JSON.stringify(res.tempFilePaths));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
//发送图片
|
//发送图片
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user