屏蔽材料费、婚检禁止转赠、所有页面标题统一、套餐对比bug

main
yanzai 11 months ago
parent 333ee0e33e
commit 689ab41267

@ -13,7 +13,8 @@
} from '@/api'
import {
onShow,
onHide
onHide,
onLoad
} from '@dcloudio/uni-app'
import {
@ -79,6 +80,9 @@
'color: #fd6b60;background: #ffffff; padding:5px 0;')
getConfigVersion()
})
onLoad(()=>{
})
</script>
<style lang="scss">

@ -14,7 +14,8 @@
$response
} from "@/api";
import {
onShow
onShow,
onLoad
} from "@dcloudio/uni-app";
import {
useStore
@ -95,7 +96,7 @@
}
};
onShow(() => {
onShow(() => {
let buyinfo=$store.getBuyInfo()
buyinfo.combo_id=''
buyinfo.combo_sex=''
@ -105,6 +106,9 @@
mountedAction();
}
});
onLoad(()=>{
})
</script>
<template>
<DraggableButton />

@ -41,7 +41,7 @@
}
existingItem.value[i] = true;
}
}
}
}
// let data = item_map.filter(item => !same_item_show.value || item.value.some(v => v));
@ -49,6 +49,23 @@
// same_item_show.value false
if (!same_item_show.value) return true;
// combo_info.value 3
const isThirdColumnValid = !!combo_info.value[2];
// item value
const valueLength = item.value.length;
// value
if (!isThirdColumnValid && valueLength >= 2) {
const firstTwoSame = item.value[0] === item.value[1];
if (firstTwoSame) {
return false; //
}
}
// item.value true false
const allTrue = item.value.every(v => v === true);
const allFalse = item.value.every(v => v === false);

@ -12,7 +12,10 @@
</template>
<script setup>
import { ref } from "vue";
import { ref,onMounted } from "vue";
import {
onShow,onLoad
} from '@dcloudio/uni-app'
const button = ref(null);
let startX, startY, posX, posY, mouseMoveTracker, mouseUpTracker;
@ -20,7 +23,12 @@ let startX, startY, posX, posY, mouseMoveTracker, mouseUpTracker;
const goHome = () => {
uni.reLaunch({ url: "/pages/main/index/index" });
};
onShow(()=>{
setTimeout(()=>{
document.title = '海南现代妇女儿童医院';
},300)
})
const dragButton = (event) => {
// event.preventDefault();
console.log(event.touches, "48566546546545");

@ -313,7 +313,7 @@
</view>
</view>
</view>
<view class="botm_blank_wrapper" style="font-size: 18rpx;color: #ccc;">03010911</view>
<view class="botm_blank_wrapper" style="font-size: 18rpx;color: #ccc;">03032121</view>
</view>
</view>
</template>

@ -601,7 +601,7 @@
@click="toPlan(order_info.id)" class="button_item_wrapper change_button_wrapper">
开始预约</view>
<view
v-if="[2].includes(order_info.status) && (order_info.plan_id=='' || order_info.plan_id==null) && order_info.type=='个检' && order_info.title!='自选项目' && order_info.person_id !=0"
v-if="[2].includes(order_info.status) && (order_info.plan_id=='' || order_info.plan_id==null) && order_info.type=='个检' && order_info.title!='自选项目' && order_info.person_id !=0 && order_info.checkup_type_id != 4"
@click="ZhuanZeng(order_info.id)" class="button_item_wrapper change_button_wrapper">
转赠</view>
<!-- <view v-if="[4].includes(order_info.status) && order_info.report" class="button_item_wrapper report_button_wrapper">

@ -718,7 +718,7 @@ const toRouter = (url, status, index) => {
v-for="(val, index) in itemsInfo?.items"
:key="index"
>
<view
<view v-if="val.keshi_name!=''"
v-for="(v, i) in val.children"
:key="i"
class="between mb-30rpx"

Loading…
Cancel
Save