|
|
- <template>
- <view>
- <navbar title="我要研学" leftClick @leftClick="$utils.navigateBack" />
-
- <view class="search">
- <uv-search placeholder="请输入搜索内容" v-model="keyword"></uv-search>
- <view class="apply">
- <view class="project1">
- <view class="pictureA">
- <image src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/BB1msKSi.img" mode=""></image>
- </view>
- </view>
- <view class="project2">
- <view class="pictureB">
- <image src="https://img-s-msn-com.akamaized.net/tenant/amp/entityid/BB1msKSi.img" mode=""></image>
- </view>
- </view>
- </view>
-
- </view>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
-
- <style scoped lang="scss">
- .page{
- .search{
-
- }
- .apply{
- width: 500rpx;
- height: 300rpx;
- background-color: white;
- >view{
- width: 100rpx;
- height: 100rpx;
- }
- }
- }
- </style>
|