123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view class="content">
- <button @click="openVideo">
- 开始巡店
- </button>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- wv: null
- };
- },
- onLoad() {
- let _this = this
- },
- 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>
|