feat: 提示词优化

This commit is contained in:
2026-05-14 15:54:03 +08:00
parent 48517a36c6
commit 29338ec706
2 changed files with 6 additions and 6 deletions

View File

@@ -25,10 +25,10 @@
</view>
<view v-else-if="props.sceneName">
<view v-else-if="props.tipsMessage">
<view class="noMessage">
<text class="noMessage-text text-color font-size-12 font-600">
{{ props.sceneName }}
{{ props.tipsMessage }}
</text>
</view>
</view>
@@ -41,9 +41,9 @@ import { getTimeNoticeList } from "@/request/api/MainPageDataApi";
import { NOTICE_EVENT_LOGIN_SUCCESS } from "@/constant/constant";
const props = defineProps({
sceneName: {
tipsMessage: {
type: String,
default: "",
default: "随时吩咐,懂你的旅游搭子",
},
});