123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view>
- <view class="" style="padding-left: 30rpx;">
- <image src="../../static/index/back.png" mode="" style="width: 64rpx;height: 64rpx;" @click="back"></image>
- </view>
- <view class="" style="position: absolute;top: 50%;transform: translateY(-50%);">
- <video v-if="info.video" :src="info.video" style="width: 750rpx;height: 440rpx;" :controls="true" ></video>
- </view>
- <view class="" style="position: fixed;bottom: 240rpx;left:30rpx;right: 30rpx;color: #fff;font-size: 30rpx;">
- {{info.title}}
- </view>
- </view>
- </template>
- <script>
- export default {
- onLoad(option) {
- this.getinfo(option.id)
- },
- data() {
- return {
- info:{}
- }
- },
- methods: {
- getinfo(id){
- uni.$u.http.post('/api/index/articlederail',{id:id}).then(res => {
- this.info=res.data
- })
- },
- back(){
- uni.navigateBack({
-
- })
- }
- }
- }
- </script>
- <style lang="scss">
- page{
- padding-top: 100rpx;
- background-color: #000000;
- }
- </style>
|