景徳镇旅游微信小程序
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.

52 lines
935 B

  1. <template>
  2. <view>
  3. <navbar title="我要研学" leftClick @leftClick="$utils.navigateBack" />
  4. <view class="search">
  5. <uv-search placeholder="请输入搜索内容" v-model="keyword"></uv-search>
  6. <view class="apply">
  7. <view class="project1">
  8. <view class="pictureA">
  9. <image src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/BB1msKSi.img" mode=""></image>
  10. </view>
  11. </view>
  12. <view class="project2">
  13. <view class="pictureB">
  14. <image src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/BB1msKSi.img" mode=""></image>
  15. </view>
  16. </view>
  17. </view>
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. data() {
  24. return {
  25. }
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>
  31. <style scoped lang="scss">
  32. .page{
  33. .search{
  34. }
  35. .apply{
  36. width: 500rpx;
  37. height: 300rpx;
  38. background-color: white;
  39. >view{
  40. width: 100rpx;
  41. height: 100rpx;
  42. }
  43. }
  44. }
  45. </style>