提交 22a19d8b 编写于 作者: 芊里

列表及搜索页完成

上级 09d69f69
...@@ -5,6 +5,12 @@ ...@@ -5,6 +5,12 @@
"navigationStyle": "custom", "navigationStyle": "custom",
"enablePullDownRefresh":true "enablePullDownRefresh":true
} }
},{
"path": "pages/list/news-list",
"style": {
"navigationStyle": "custom",
"enablePullDownRefresh":true
}
}, },
{ {
"path": "pages/grid/grid", "path": "pages/grid/grid",
...@@ -30,7 +36,7 @@ ...@@ -30,7 +36,7 @@
}, { }, {
"path": "pages/search/search", "path": "pages/search/search",
"style": { "style": {
"navigationBarTitleText": "" "navigationStyle": "custom"
} }
}, { }, {
"path": "pages/list/detail", "path": "pages/list/detail",
......
<template> <template>
<view style="overflow: hidden;"> <view style="overflow: hidden;">
<!-- 页面主列表 --> <!-- 页面主列表 -->
<news-list ref="newsList" :searchText="searchText"></news-list> <news-list ref="newsList" :canSearch="canSearch" :currentText="searchText"></news-list>
</view> </view>
</template> </template>
<script> <script>
import newsList from './news-list.vue'; import newsList from './news-list.vue';
import newsSearchTitle from './news-search-title.vue';
export default { export default {
components:{ components:{
newsList, newsList
newsSearchTitle
}, },
data() { data() {
return { return {
searchText: '', searchText: '',
formData: { canSearch:true
waterfall: false, // 布局方向切换
status: 'loading', // 加载状态
},
}; };
}, },
onShow(options) { onShow(options) {
......
...@@ -8,10 +8,9 @@ ...@@ -8,10 +8,9 @@
--> -->
<view style="overflow: hidden;"> <view style="overflow: hidden;">
<view class="search-box"> <view class="search-box">
<status-bar></status-bar> <status-bar class="status-bar"></status-bar>
<view class="search-container-bar"> <view class="search-container-bar">
<uni-search-bar ref="searchBar" style="flex:1;" radius="100" v-model="searchText" <uni-search-bar ref="searchBar" style="flex:1;" radius="100" v-model="searchText" @click.native="searchClick" cancelButton="none" disabled />
@search-click="searchClick" cancelButton="none" disabled />
</view> </view>
</view> </view>
<view class="list"> <view class="list">
...@@ -28,7 +27,7 @@ ...@@ -28,7 +27,7 @@
<uni-list :class="{ 'uni-list--waterfall': options.waterfall }"> <uni-list :class="{ 'uni-list--waterfall': options.waterfall }">
<!-- 通过 uni-list--waterfall 类决定页面布局方向 --> <!-- 通过 uni-list--waterfall 类决定页面布局方向 -->
<!-- to 属性携带参数跳转详情页面,当前只为参考 --> <!-- to 属性携带参数跳转详情页面,当前只为参考 -->
<uni-list-item :border="!options.waterfall" class="uni-list-item--waterfall" title="自定义商品列表" <uni-list-item :border="!options.waterfall" :to="'./detail?id='+item._id+'&title='+item.title" class="uni-list-item--waterfall" title="自定义商品列表"
v-for="item in data" :key="item._id"> v-for="item in data" :key="item._id">
<!-- 通过header插槽定义列表左侧图片 --> <!-- 通过header插槽定义列表左侧图片 -->
<template v-slot:header> <template v-slot:header>
...@@ -67,14 +66,18 @@ ...@@ -67,14 +66,18 @@
statusBar statusBar
}, },
props:{ props:{
searchText:{ currentText:{
type:String, type:String,
default:'' default:''
},
canSearch:{
type:Boolean,
default:false
} }
}, },
data() { data() {
return { return {
// searchText: '', searchText: this.currentText || '',
formData: { formData: {
waterfall: false, // 布局方向切换 waterfall: false, // 布局方向切换
status: 'loading', // 加载状态 status: 'loading', // 加载状态
...@@ -86,6 +89,21 @@ ...@@ -86,6 +89,21 @@
field: 'author{username, _id}, user_id,_id,avatar,title,excerpt,last_modify_date, comment_count, like_count', field: 'author{username, _id}, user_id,_id,avatar,title,excerpt,last_modify_date, comment_count, like_count',
tipShow: false // 是否显示顶部提示框 tipShow: false // 是否显示顶部提示框
}; };
},
/**
* 作为页面出现时的生命周期
*/
onShow(options) {
this.searchText = getApp().globalData.searchText;
},
/**
* 下拉刷新回调函数
*/
onPullDownRefresh() {
this.refresh();
},
onReachBottom() {
this.loadMore();
}, },
methods: { methods: {
/** /**
...@@ -119,16 +137,17 @@ ...@@ -119,16 +137,17 @@
} }
}, },
searchClick() { searchClick() {
uni.hideKeyboard(); uni.hideKeyboard();
uni.navigateTo({
url: '/pages/search/search',
animationType: 'fade-in' if(this.canSearch){
}); uni.navigateTo({
} url: '/pages/search/search',
}, animationType: 'fade-in'
watch: { });
searchText(value) { }else {
this.search(value); uni.navigateBack();
}
} }
}, },
computed: { computed: {
...@@ -277,7 +296,8 @@ ...@@ -277,7 +296,8 @@
/* #endif */ /* #endif */
flex-direction: row; flex-direction: row;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
width: 750rpx;
} }
/* #ifndef APP-NVUE */ /* #ifndef APP-NVUE */
......
<template> <template>
<view class="container"> <view class="container">
<view class="status-bar" :style="{height:statusBarHeight}"></view>
<view class="search-container"> <view class="search-container">
<!-- 搜索框 --> <!-- 搜索框 -->
<view class="search-container-bar"> <view class="search-container-bar">
...@@ -8,7 +9,7 @@ ...@@ -8,7 +9,7 @@
<!-- #endif --> <!-- #endif -->
<!-- :cancelText="keyBoardPopup ? '取消' : '搜索'" --> <!-- :cancelText="keyBoardPopup ? '取消' : '搜索'" -->
<uni-search-bar ref="searchBar" style="flex:1;" radius="100" v-model="searchText" :focus="focus" :placeholder="hotWorld" <uni-search-bar ref="searchBar" style="flex:1;" radius="100" v-model="searchText" :focus="focus" :placeholder="hotWorld"
clearButton="auto" cancelButton="always" @clear="clear" @confirm="confirm" @cancel="cancel" /> clearButton="auto" cancelButton="always" @clear="clear" @confirm="confirm" @cancel="backPage" />
</view> </view>
</view> </view>
<view class="search-body"> <view class="search-body">
...@@ -61,7 +62,7 @@ ...@@ -61,7 +62,7 @@
</view> </view>
</view> </view>
<!-- 搜索联想 --> <!-- 搜索联想 -->
<view class="search-associative" v-if="associativeShow"> <view class="search-associative" :style="{marginTop:statusBarHeight}" v-if="associativeShow">
<uni-list> <uni-list>
<template v-for="(item,index) in associativeList"> <template v-for="(item,index) in associativeList">
<uni-list-item :key="item._id" :ellipsis="1" :title="item.title" @click="associativeClick(item)" show-extra-icon <uni-list-item :key="item._id" :ellipsis="1" :title="item.title" @click="associativeClick(item)" show-extra-icon
...@@ -133,7 +134,7 @@ ...@@ -133,7 +134,7 @@
return { return {
mallGoodsDbName, mallGoodsDbName,
searchLogDbName, searchLogDbName,
statusBarHeight:'0px',
localSearchList: uni.getStorageSync(localSearchListKey), localSearchList: uni.getStorageSync(localSearchListKey),
localSearchListDel: false, localSearchListDel: false,
netHotListIsHide: false, netHotListIsHide: false,
...@@ -158,6 +159,9 @@ ...@@ -158,6 +159,9 @@
this.searchText = getApp().globalData.searchText; this.searchText = getApp().globalData.searchText;
}, },
onLoad() {
this.statusBarHeight = `${uni.getSystemInfoSync().statusBarHeight}px`;
},
methods: { methods: {
clear(res) { clear(res) {
console.log("res: ", res); console.log("res: ", res);
...@@ -290,10 +294,12 @@ ...@@ -290,10 +294,12 @@
}, },
loadList(text = '') { loadList(text = '') {
getApp().globalData.searchText = text; getApp().globalData.searchText = text;
// uni.navigateBack() uni.navigateTo({
uni.switchTab({ url:'../list/news-list'
url:'../list/list'
}) })
},
backPage(){
uni.navigateBack();
} }
}, },
computed: { computed: {
...@@ -330,8 +336,11 @@ ...@@ -330,8 +336,11 @@
<style lang="scss" scoped> <style lang="scss" scoped>
$search-bar-height:52px; $search-bar-height:52px;
$word-container_header-height:72rpx; $word-container_header-height:72rpx;
.status-bar{
background-color: #fff;
}
.container { .container {
padding-top: var(--status-bar-height);
/* #ifndef APP-NVUE */ /* #ifndef APP-NVUE */
height: 100%; height: 100%;
/* #endif */ /* #endif */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册