cxc-szcx-uniapp/pages/safe/detail.vue

47 lines
827 B
Vue
Raw Normal View History

2024-09-14 02:26:50 +00:00
<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>
2024-09-24 09:21:34 +00:00
import safeCom from '../../bpm/safeCom.vue';
2024-09-14 02:26:50 +00:00
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>