1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view>
- <swiper duration="500">
- <swiper-item>
- <scroll-view scroll-y>
- <view class="scroll__box">
- <t-p-n-section-1></t-p-n-section-1>
- </view>
- </scroll-view>
- </swiper-item>
- <swiper-item>
- <scroll-view scroll-y>
- <view class="scroll__box">
- <t-p-n-section-2></t-p-n-section-2>
- </view>
- </scroll-view>
- </swiper-item>
- </swiper>
- </view>
- </template>
- <script>
- export default {
- name: "t-p-ningdongyunying",
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss">
- /deep/uni-swiper .uni-swiper-wrapper {
- height: calc(100vh);
- }
- .scroll__box {
- height: 100vh;
- }
- </style>
|