|
@@ -2,7 +2,7 @@
|
|
|
<view class="main">
|
|
<view class="main">
|
|
|
<view class="cu-chat" style="position: relative;" v-for="(item,index) in messages" :key="index">
|
|
<view class="cu-chat" style="position: relative;" v-for="(item,index) in messages" :key="index">
|
|
|
<view class="cu-item self" v-if="item.senderId==currentUser.uuid">
|
|
<view class="cu-item self" v-if="item.senderId==currentUser.uuid">
|
|
|
- <view class="time-lag" style="position: absolute;top: 6rpx; right: 43%;">
|
|
|
|
|
|
|
+ <view class="time-lag" style="position: absolute;top: 36rpx; right: 43%;">
|
|
|
{{renderMessageDate(item, index)}}
|
|
{{renderMessageDate(item, index)}}
|
|
|
</view>
|
|
</view>
|
|
|
<view class="main" style="width: 500rpx;word-break:break-all;display: flex;justify-content: flex-end;" v-if="item.type=='text'">
|
|
<view class="main" style="width: 500rpx;word-break:break-all;display: flex;justify-content: flex-end;" v-if="item.type=='text'">
|
|
@@ -52,14 +52,14 @@
|
|
|
<view class="record-loading" v-if="audio.recording"></view>
|
|
<view class="record-loading" v-if="audio.recording"></view>
|
|
|
|
|
|
|
|
|
|
|
|
|
- <view class="top_details" @click="detailsShow = true">
|
|
|
|
|
|
|
+ <view class="top_details" @click="detailsShow = true" v-if="orderDetailsList.length!=0">
|
|
|
<u-icon name="arrow-down" size="40"></u-icon>
|
|
<u-icon name="arrow-down" size="40"></u-icon>
|
|
|
</view>
|
|
</view>
|
|
|
<u-popup v-model="detailsShow" mode="top">
|
|
<u-popup v-model="detailsShow" mode="top">
|
|
|
<view class="details">
|
|
<view class="details">
|
|
|
<view>患者姓名:<text>{{orderDetailsList.name}}</text></view>
|
|
<view>患者姓名:<text>{{orderDetailsList.name}}</text></view>
|
|
|
<view>患者年龄:<text>{{orderDetailsList.numbirthday}}</text></view>
|
|
<view>患者年龄:<text>{{orderDetailsList.numbirthday}}</text></view>
|
|
|
- <view>患者性别:<text>{{orderDetailsList.name}}</text></view>
|
|
|
|
|
|
|
+ <view>患者性别:<text>{{orderDetailsList.sex==2?'女':'男'}}</text></view>
|
|
|
<view>症状描述:{{orderDetailsList.symptoms}}</view>
|
|
<view>症状描述:{{orderDetailsList.symptoms}}</view>
|
|
|
<view>图片:</view>
|
|
<view>图片:</view>
|
|
|
<scroll-view :scroll-x="true">
|
|
<scroll-view :scroll-x="true">
|
|
@@ -202,8 +202,8 @@
|
|
|
},
|
|
},
|
|
|
//
|
|
//
|
|
|
getOrderDetails: async function() {
|
|
getOrderDetails: async function() {
|
|
|
- let res = await this.$request.post("patient/orderPatientDetail", {
|
|
|
|
|
- 'patient_id': 25439
|
|
|
|
|
|
|
+ let res = await this.$request.post("patient/CaseAcquisition", {
|
|
|
|
|
+ 'user_id': 28908
|
|
|
});
|
|
});
|
|
|
if (res.status == 0) {
|
|
if (res.status == 0) {
|
|
|
console.log("订单详情", res)
|
|
console.log("订单详情", res)
|