a957eab0 by zhangmeng

备注

1 parent d738403b
......@@ -114,6 +114,7 @@
>
{{ it.name }}
</div>
<div v-if="remarks" class="remarks">{{ remarks }}</div>
</div>
</div>
......@@ -286,6 +287,7 @@ const active = ref(1)
const props = defineProps({
activityId: [String, Number]
})
const remarks = ref()
const timeData = ref()
const endTime = ref()
const matchForm = ref({})
......@@ -344,6 +346,7 @@ async function getVenueList() {
venueList.value = res.rows
currVenue.value = res.rows[0]
selectForm.value.latsId = res.rows[0]?.id
if (venueList.value.length > 0) remarks.value = res.rows[0].remarks
await getTicketListType()
}
......@@ -379,7 +382,7 @@ function selectVenue(v) {
selectForm.value.id = null
selectForm.value.price = '--'
selectForm.value.priceEn = '--'
remarks.value = v.remarks
getTicketListType()
}
......@@ -778,4 +781,11 @@ getmatchData()
bottom: 30px;
right: 50px;
}
.remarks {
font-size: 17px;
margin-left: 20px;
line-height: 40px;
color: #2b2f3a;
}
</style>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!