xinelu-applet-ui/pagesB/ExpertlookOrder/ExpertlookOrder.vue
2023-10-27 16:37:28 +08:00

51 lines
953 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="app">
<view class="orderitem">
<view class="tiemitem">
<span>2023-08-13</span><span>23:43:49</span><span @tap="consulted">待咨询</span>
</view>
<view class="details">
<image src="../../static/headsculpture.png" mode=""></image>
<view class="ppointment">
<view class="doctorname">
<span>齐鲁医院张先生</span><span>30</span>
</view>
<view class="reservation">
预约时间2023-09-08
</view>
<view class="hospital">
三甲医院
</view>
</view>
</view>
<view class="bottom">
<span>更多</span>
<span>确认完成</span>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
// 待咨询
consulted() {
uni.navigateTo({
url: '/pagesB/consulted/consulted'
})
}
}
}
</script>
<style lang="scss">
@import './ExpertlookOrder.scss'
</style>