a957eab0 by zhangmeng

备注

1 parent d738403b
...@@ -114,6 +114,7 @@ ...@@ -114,6 +114,7 @@
114 > 114 >
115 {{ it.name }} 115 {{ it.name }}
116 </div> 116 </div>
117 <div v-if="remarks" class="remarks">{{ remarks }}</div>
117 </div> 118 </div>
118 </div> 119 </div>
119 120
...@@ -286,6 +287,7 @@ const active = ref(1) ...@@ -286,6 +287,7 @@ const active = ref(1)
286 const props = defineProps({ 287 const props = defineProps({
287 activityId: [String, Number] 288 activityId: [String, Number]
288 }) 289 })
290 const remarks = ref()
289 const timeData = ref() 291 const timeData = ref()
290 const endTime = ref() 292 const endTime = ref()
291 const matchForm = ref({}) 293 const matchForm = ref({})
...@@ -344,6 +346,7 @@ async function getVenueList() { ...@@ -344,6 +346,7 @@ async function getVenueList() {
344 venueList.value = res.rows 346 venueList.value = res.rows
345 currVenue.value = res.rows[0] 347 currVenue.value = res.rows[0]
346 selectForm.value.latsId = res.rows[0]?.id 348 selectForm.value.latsId = res.rows[0]?.id
349 if (venueList.value.length > 0) remarks.value = res.rows[0].remarks
347 await getTicketListType() 350 await getTicketListType()
348 } 351 }
349 352
...@@ -379,7 +382,7 @@ function selectVenue(v) { ...@@ -379,7 +382,7 @@ function selectVenue(v) {
379 selectForm.value.id = null 382 selectForm.value.id = null
380 selectForm.value.price = '--' 383 selectForm.value.price = '--'
381 selectForm.value.priceEn = '--' 384 selectForm.value.priceEn = '--'
382 385 remarks.value = v.remarks
383 getTicketListType() 386 getTicketListType()
384 } 387 }
385 388
...@@ -778,4 +781,11 @@ getmatchData() ...@@ -778,4 +781,11 @@ getmatchData()
778 bottom: 30px; 781 bottom: 30px;
779 right: 50px; 782 right: 50px;
780 } 783 }
784
785 .remarks {
786 font-size: 17px;
787 margin-left: 20px;
788 line-height: 40px;
789 color: #2b2f3a;
790 }
781 </style> 791 </style>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!