1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="content">
- <video src="rtmp://play.zyucgj.com/live/34020000001320000001?ali_rtmp_retain=0&auth_key=1599027535-0-0-36cefc09a0b30c33de60389831e5506a"></video>
- <button @click="openVideo">
- 开始巡店
- </button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- wv: null
- };
- },
- onLoad() {},
- methods: {
- openVideo() {
- uni.navigateTo({
- url:"/pages/shopTour/shopTour"
- })
- }
- }
- };
- </script>
- <style>
- .content {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .controls-yt {
- position: absolute;
- top: 20rpx;
- right: 20rpx;
- width: 80rpx;
- height: 80rpx;
- border-radius: 100%;
- background: rgba(0, 0, 0, 0.6);
- }
- </style>
|