疗休养优化1.3

This commit is contained in:
2026-06-15 17:44:14 +08:00
parent 850f4742a2
commit 990551905f
@@ -0,0 +1,70 @@
<!--#
layout("/layouts/platform_h5.html"){
#-->
<style scoped>
.tour-no-assignment-page {
min-height: 100vh;
padding: 16px;
background: #f5f7fb;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
}
.tour-no-assignment-card {
width: 100%;
padding: 28px 18px 22px;
border-radius: 8px;
background: #ffffff;
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
box-sizing: border-box;
}
.tour-no-assignment-title {
margin-bottom: 14px;
color: #0f74bc;
font-size: 18px;
font-weight: 700;
text-align: center;
line-height: 1.5;
}
.tour-no-assignment-message {
color: #334155;
font-size: 15px;
line-height: 1.8;
text-align: center;
}
.tour-no-assignment-action {
margin-top: 24px;
}
</style>
<div id="app" class="tour-no-assignment-page">
<div class="tour-no-assignment-card">
<div class="tour-no-assignment-title">温馨提示</div>
<div class="tour-no-assignment-message">您不在本次疗休养的报名范围内,请等待下次机会!</div>
<div class="tour-no-assignment-action">
<van-button block type="info" color="#0f74bc" round @click="goHome">确定</van-button>
</div>
</div>
</div>
<script nonce="${cspNonce!}">
const vue = new Vue({
el: "#app",
store,
methods: {
goHome() {
window.location.replace("/platform/h5/home")
}
}
})
</script>
<!--#
}
#-->