猫妈狗爸伴宠师小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.4 KiB

  1. <template>
  2. <steps-component :current="1"/>
  3. <view class="training">
  4. <uni-section title="平台&服务介绍" type="line" titleFontSize="32rpx"></uni-section>
  5. <view class="flex flex-between">
  6. <video class="mr20" id="myVideo" src="https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/2minute-demo.mp4"
  7. controls></video>
  8. <video id="myVideo" src="https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/2minute-demo.mp4" controls></video>
  9. </view>
  10. <uni-section title="培训服务" type="line" titleFontSize="32rpx"></uni-section>
  11. <view class="flex flex-between">
  12. <video class="mr20" id="myVideo" src="https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/2minute-demo.mp4"
  13. controls></video>
  14. <video id="myVideo" src="https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/2minute-demo.mp4" controls></video>
  15. </view>
  16. </view>
  17. <submitBut text="下一步" @click="handleClick"></submitBut>
  18. </template>
  19. <script setup>
  20. import submitBut from "../../../components/submitBut/index.vue"
  21. import StepsComponent from "../../../components/stepsComponent/index.vue";
  22. import tab from "../../../plugins/tab";
  23. const handleClick = () => {
  24. tab.navigateTo("/otherPages/workbenchManage/shortAnswer/index")
  25. }
  26. </script>
  27. <style scoped lang="scss">
  28. .training {
  29. background: #FFFFFF;
  30. height: 100%;
  31. padding: 20rpx;
  32. padding-bottom: 160rpx;
  33. }
  34. </style>