123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <template>
- <view class="container">
- <view class="header-box">
- <view class="search-box">
- <u-search
- v-model="searchForm.keyword"
- :clearabled="true"
- bg-color="#E5E5E5"
- :input-style="searchInputStyle"
- placeholder="搜索您想要的内容"
- ></u-search>
- </view>
- <view class="tab-box">
- <u-tabs
- name="label"
- :list="searchType"
- :is-scroll="false"
- v-model="searchForm.type"
- @change="onSearchTypeChange"
- font-size="24"
- :bold="false"
- inactive-color="#000000"
- active-color="#000000"
- :bar-style="{'background-color': '#2979ff'}"
- height="50"
- ></u-tabs>
- </view>
- </view>
- <view class="list-box">
- <view class="list-item-box" v-for="item in list" :key="item.id">
- <view class="icon-box">
- <view class="icon" v-if="item.isNew"></view>
- </view>
- <view class="info-box">
- <view class="title">
- {{item.title}}
- </view>
- <view class="text">
- 【{{item.type}}】
- </view>
- </view>
- <view class="suffix-box">
- <view class="button">
- 查看
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script setup>
- import { ref } from 'vue'
- import { onLoad } from '@dcloudio/uni-app'
-
- const searchInputStyle = {
- backgroundColor: '#E5E5E5'
- }
- const searchType = [
- {
- label: '全部',
- value: 0
- },
- {
- label: '研究报告',
- value: 1
- },
- {
- label: '继续教育',
- value: 2
- },
- ]
- const searchForm = ref({
- keyword: '',
- type: 0
- })
-
- const list = ref([
- {
- id: '01',
- title: '2024年11月关注是中介促成二手住宅市场交易简报',
- type: '月度成交简报',
- isNew: true
- },
- {
- id: '02',
- title: '客户需求理解与匹配',
- type: '精英修炼营',
- isNew: true
- },
- {
- id: '03',
- title: '2024年11月关注是中介促成二手住宅市场交易简报',
- type: '月度成交简报',
- isNew: true
- },
- {
- id: '04',
- title: '客户需求理解与匹配',
- type: '精英修炼营',
- isNew: true
- },
- {
- id: '05',
- title: '2024年11月关注是中介促成二手住宅市场交易简报',
- type: '月度成交简报',
- isNew: true
- },
- {
- id: '06',
- title: '客户需求理解与匹配',
- type: '精英修炼营',
- isNew: true
- },
- ])
-
- function onSearchTypeChange(val) {}
-
- onLoad(() => {
- console.log('onLoad')
- })
- </script>
- <style lang="scss" scoped>
- .container {
- height: 100vh;
- width: 100vw;
- background-color: $uni-text-color-inverse;
- padding: 0 20rpx;
-
- .header-box {
- background-color: $uni-text-color-inverse;
- @include topMagnet();
- }
-
- .search-box {
- margin-bottom: 20rpx;
- ::v-deep(.u-search) {
- background-color: #e5e5e5;
- border-radius: 50rpx;
-
- .u-action {
- width: 18%;
- background-color: $uni-color-primary;
- border-radius: 50rpx;
- color: $uni-text-color-inverse;
- margin-right: 8rpx;
- font-size: 28rpx;
- line-height: 50rpx;
- letter-spacing: 3rpx;
- text-align: center;
- }
- }
- }
-
- .list-box {
- .list-item-box {
- padding: 10rpx;
- border-bottom: 5rpx solid #E6E6E6;
- display: flex;
- .icon-box {
- width: 3%;
- padding-top: 10rpx;
- .icon {
- width: 10rpx;
- height: 10rpx;
- background-color: $uni-color-primary;
- border-radius: 50%;
- }
- }
- .info-box {
- width: 82%;
- .title {
- font-size: $uni-title-font-size-3;
- font-weight: bold;
- margin-bottom: 5rpx;
- @include text-overflow()
- }
- .text {
- line-height: 40rpx;
- font-size: $uni-font-size-2;
- font-weight: bold;
- }
- }
- .suffix-box {
- width: 15%;
- display: flex;
- align-items: center;
- justify-content: center;
-
- .button {
- color: $uni-text-color-inverse;
- padding: 3rpx 18rpx;
- border-radius: $uni-card-border-radius;
- background-color: $uni-color-primary;
- font-size: $uni-font-size-4;
- }
- }
- }
- }
- }
- </style>
|