婚检提示,选中日期

main
yanzai 11 months ago
parent 09ce5ec7cd
commit 3341f6d7db

@ -100,6 +100,9 @@ import DraggableButton from "@/pages/components/goHome.vue";
<image src="@/static/assets/buy/buy_done@2x.png"></image> <image src="@/static/assets/buy/buy_done@2x.png"></image>
</view> </view>
<view class="order_icon_tip_wrapper">恭喜您支付成功</view> <view class="order_icon_tip_wrapper">恭喜您支付成功</view>
<view v-if="order_info.checkup_type_id==4" style="font-size: 24rpx;padding:20rpx 40rpx; 0rpx 40rpx;color:#FF0000;">
请您的配偶在15分钟内完成预约否则本次预约将会失效如有支付金额会原路退回
</view>
</view> </view>
<view class="order_info_wrapper"> <view class="order_info_wrapper">
<view class="order_info_title_wrapper">{{ order_info.title }}</view> <view class="order_info_title_wrapper">{{ order_info.title }}</view>

@ -113,8 +113,12 @@
yytjInfo.value.nmrIndex = -1; yytjInfo.value.nmrIndex = -1;
$store.setYytjInfo(yytjInfo.value); $store.setYytjInfo(yytjInfo.value);
if ($props.month == 'all') { if ($props.month == 'all') {
let riqiurl=''
if(dqDate.value){
riqiurl='?date='+dqDate.value;
}
uni.navigateTo({ uni.navigateTo({
url: '/pages/main/ysdate/ysdate_new' url: '/pages/main/ysdate/ysdate_new'+riqiurl
}) })
} else { } else {
// item.name // item.name

@ -56,6 +56,12 @@
} }
getnmrList() getnmrList()
} }
const $props = defineProps({
date: {
type: String,
default: "",
}
});
const getUserInfo = async () => { const getUserInfo = async () => {
uni.showLoading({ uni.showLoading({
title: "加载中", title: "加载中",
@ -83,7 +89,11 @@
date = yytjInfo.value.doctor_date date = yytjInfo.value.doctor_date
currentDate.value = yytjInfo.value.doctor_date currentDate.value = yytjInfo.value.doctor_date
} else { } else {
currentDate.value = getToday(); if($props.date){
currentDate.value=$props.date
}else{
currentDate.value = getToday();
}
yytjInfo.value.doctor_date = currentDate.value; yytjInfo.value.doctor_date = currentDate.value;
} }
moreTime(date, 1); moreTime(date, 1);
@ -200,6 +210,7 @@
onShow(() => { onShow(() => {
if (!!config_ref.value) { if (!!config_ref.value) {
mountedAction(); mountedAction();
} }
}); });

Loading…
Cancel
Save