cxc-szcx-uniapp/pages/safe/detail.vue
2025-03-12 21:45:06 +08:00

47 lines
827 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view :class="['content',{'gray':store.isgray==1}]">
<view class="">
<video src=""></video>
<view class="title">
五月天突然好想你线上演唱会精彩回放这里就是标题
</view>
</view>
<view class="listcom">
<safeCom></safeCom>
</view>
</view>
</template>
<script setup>
import safeCom from '../../bpm/safeCom.vue';
import {
useStore
} from '@/store'
const store = useStore()
</script>
<style>
page{
background-color: #f8f8f8;
}
</style>
<style lang="scss" scoped>
.content {
.title{
background-color: #fff;
font-size: 32rpx;
color: #333333;
line-height: 45rpx;
padding: 30rpx;
}
video{
width: 750rpx;
height: 500rpx;
}
}
.listcom{
padding:0 30rpx 30rpx 30rpx;
margin-top: 20rpx;
background-color: #fff;
}
</style>