退款bug、全部页面标题统一、首页样式调整、问卷去掉带入本地缓存等

main
yanzai 9 months ago
parent 689ab41267
commit 5530d134c1

@ -2,7 +2,7 @@
"pages": [{ "pages": [{
"path": "pages/main/index/index", "path": "pages/main/index/index",
"style": { "style": {
"navigationBarTitleText": "海南现代妇女儿童医院", "navigationBarTitleText": "健康管理中心",
"navigationStyle": "custom" "navigationStyle": "custom"
} }
}, },

@ -25,7 +25,7 @@ const goHome = () => {
}; };
onShow(()=>{ onShow(()=>{
setTimeout(()=>{ setTimeout(()=>{
document.title = '海南现代妇女儿童医院'; document.title = '健康管理中心';
},300) },300)
}) })

@ -287,7 +287,8 @@
{{ Number($store.user.sex) === 1 ? '先生' : '女士' }} {{ Number($store.user.sex) === 1 ? '先生' : '女士' }}
</view> </view>
</view> </view>
<view class="content_tip_wrapper">{{ $store.config.tip }}</view> <!--25-03-04 欢迎词让隐藏 -->
<!-- <view class="content_tip_wrapper">{{ $store.config.tip }}</view> -->
</view> </view>
<view v-if="Number($store.user.count) > 1" @click="toChooseUser()" class="button_wrapper"></view> <view v-if="Number($store.user.count) > 1" @click="toChooseUser()" class="button_wrapper"></view>
</view> </view>
@ -313,7 +314,7 @@
</view> </view>
</view> </view>
</view> </view>
<view class="botm_blank_wrapper" style="font-size: 18rpx;color: #ccc;">03032121</view> <view class="botm_blank_wrapper" style="font-size: 18rpx;color: #ccc;">03041658</view>
</view> </view>
</view> </view>
</template> </template>
@ -469,7 +470,7 @@
line-height: 54rpx; line-height: 54rpx;
position: absolute; position: absolute;
right: 10rpx; right: 10rpx;
bottom: 68rpx; bottom: 50rpx;
} }
.content_tip_wrapper { .content_tip_wrapper {
@ -482,7 +483,7 @@
.user_name_wrapper { .user_name_wrapper {
font-weight: 500; font-weight: 500;
font-size: 26rpx; font-size: 35rpx;
color: #323232; color: #323232;
line-height: 1; line-height: 1;
} }
@ -492,11 +493,13 @@
color: #939393; color: #939393;
line-height: 1; line-height: 1;
margin-left: 20rpx; margin-left: 20rpx;
margin-top: 16rpx;
} }
.user_info_wrapper { .user_info_wrapper {
display: flex; display: flex;
align-items: center; align-items: center;
} }
.logo_wrapper { .logo_wrapper {
@ -506,7 +509,12 @@
} }
.content_wrapper { .content_wrapper {
margin-left: 25rpx;
display: flex;
margin-left: 30rpx;
} }
.logo_wrapper image { .logo_wrapper image {

@ -110,7 +110,9 @@ import DraggableButton from "@/pages/components/goHome.vue";
const ReLoadOrderList = (newValue) => { const ReLoadOrderList = (newValue) => {
if (newValue == "orderUpdate") { if (newValue == "orderUpdate") {
setTimeout(() => { setTimeout(() => {
router.go(0); uni.redirectTo({
url: "/pages/main/order/order"
});
}, 1000); }, 1000);
} }

@ -20,6 +20,7 @@
} from '@/store' } from '@/store'
import QuestionComponent from '../src/question.vue' import QuestionComponent from '../src/question.vue'
import Question2Component from '../src2/question.vue' import Question2Component from '../src2/question.vue'
import DraggableButton from "@/pages/components/goHome.vue";
const $store = useStore() const $store = useStore()
const $props = defineProps({ const $props = defineProps({
id: { id: {
@ -55,7 +56,9 @@
question_active.value = 0 question_active.value = 0
start_time.value = new Date() / 1000 start_time.value = new Date() / 1000
nextTick(() => { nextTick(() => {
localGet() //
//2025-03-04
//localGet()
}) })
}) })
} }
@ -309,6 +312,7 @@
} }
</script> </script>
<template> <template>
<DraggableButton />
<view style="background-color:#d8eef3 ;"> <view style="background-color:#d8eef3 ;">
<view v-if="!!$store.config"> <view v-if="!!$store.config">
<view :ref="configRef"></view> <view :ref="configRef"></view>

@ -20,6 +20,7 @@
} from '@/store' } from '@/store'
const $store = useStore() const $store = useStore()
import TitleComponent from '../src/title.vue' import TitleComponent from '../src/title.vue'
import DraggableButton from "@/pages/components/goHome.vue";
const address_data = ref([]) const address_data = ref([])
const getAddressData = async () => { const getAddressData = async () => {
const response = await $api('AddressData') const response = await $api('AddressData')
@ -327,6 +328,7 @@
}) })
</script> </script>
<template> <template>
<DraggableButton />
<view> <view>
<view v-if="!!$store.config"> <view v-if="!!$store.config">
<view :ref="configRef"></view> <view :ref="configRef"></view>

@ -19,6 +19,7 @@
} from '@/store' } from '@/store'
const $store = useStore() const $store = useStore()
import TitleComponent from '../src/title.vue' import TitleComponent from '../src/title.vue'
import DraggableButton from "@/pages/components/goHome.vue";
const tip_content = ref('') const tip_content = ref('')
const getTipContent = async () => { const getTipContent = async () => {
@ -57,6 +58,7 @@
}) })
</script> </script>
<template> <template>
<DraggableButton />
<view> <view>
<view v-if="!!$store.config"> <view v-if="!!$store.config">
<view :ref="configRef"></view> <view :ref="configRef"></view>

Loading…
Cancel
Save