27 lines
800 B
Vue
27 lines
800 B
Vue
|
|
<script lang="ts" setup>
|
|
defineProps({
|
|
schoolDetail: {
|
|
type: Object,
|
|
default: () => ({
|
|
enrollmentScope:"",
|
|
specialClassInfo:""
|
|
})
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<view class="bg-[#f8f8f8]">
|
|
<view class="bg-white flex flex-col px-[30rpx] py-[20rpx]">
|
|
<view class="text-[#000] font-500 text-[30rpx] mb-[10rpx]">招生范围</view>
|
|
<view class="text-[#666] text-[26rpx]">{{ schoolDetail.enrollmentScope }}</view>
|
|
</view>
|
|
|
|
<view class="mt-[20rpx] bg-white flex flex-col px-[30rpx] py-[20rpx]">
|
|
<view class="text-[#000] font-500 text-[30rpx] mb-[10rpx]">深泉特色班</view>
|
|
<view class="text-[#666] text-[26rpx]" v-html="schoolDetail.specialClassInfo"></view>
|
|
</view>
|
|
</view>
|
|
</template>
|