123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398 |
- <template>
- <view>
- <!-- 轮播图 -->
- <view class="banner_box" >
- <view class="banner_list" v-if="bannerList.length">
- <swiper class="banner_swiper" :autoplay="true" >
- <swiper-item v-for="(item,index) in bannerList" :key="index">
- <image :src="item.thumb" class="image" @click="navLottery(item.link_url)"></image>
- </swiper-item>
- </swiper>
- </view>
- </view>
- <view class="product_box">
- <view class="to_bottom" v-if="!productList.length"> -----还没有产品啦-----</view>
- <!-- 产品列表 -->
- <view class="product_list" >
- <!-- Vue3 项目部分小程序端事件延迟或调用失败 在执行事件的元素上添加 data-eventsync="true" 属性以解决此问题 -->
- <view @click="toDetail(item)" data-eventsync="true" class="product_item" v-for="(item,index) in productList" :key="index" >
- <image class="product_image" :src="item.thumb" mode=""></image>
- <view class="product_name">
- <text v-if="item.promo_title" class="regiment_title">{{item.promo_title}}</text>
- <text v-if="item.regiment_title" class="regiment_title">{{item.regiment_title}}</text>
- <text>{{item.name}}</text></view>
- <view class="product_spec"><text>{{item.spec}}</text></view>
- <view class="stock_price">
- <view class="product_price" v-if="isShowPrice">
- <text >¥{{item.price}} </text>
- </view>
- <view class="product_stock">剩{{item.stock}}个</view>
- </view>
- </view>
- </view>
- </view>
- <view class="search_fixed" >
- <view class="search_box">
- <view class="city_name" v-if="!toSelectedCity">{{cityName}}</view>
- <navigator url="/pages/user/info" v-if="toSelectedCity" class="city_name uncheck">选城市</navigator>
- <input class="search_input" type="text" v-model="requestParam.name" @input="searchChange" placeholder="请输入产品名称搜索" />
- <button class="search_btn" @click.stop="searchOpen()" data-eventsync="true"> 搜索</button>
- </view>
- </view>
- <view class="to_bottom" v-if="isLast"> -----{{ !productList.length && toSelectedCity?'请选择您的城市':'到底啦'}}-----</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- // 轮播图
- bannerList:[],
- // 产品列表
- productList:[],
- // 请求参数
- requestParam:{
- name:"",
- page:1,
- },
- // 是否最后一页
- isLast:false,
- // 是否请求中
- isReqing:false,
- // 是否显示价格
- isShowPrice:false,
- // 城市名称
- cityName:"选城市",
- // 选择城市
- toSelectedCity:false,
- }
- },
- onLoad() {
- // #ifdef MP-WEIXIN
- //分享按钮
- uni.showShareMenu({
- withShareTicket: true,
- menus: ['shareAppMessage', 'shareTimeline']
- })
- // #endif
- },
- onShareAppMessage(obj) {
- // 获取分享信息
- let shareList = getApp().globalData.shareList;
- // 获取分享信息
- let shareObj = {
- title: '药优惠 得积分 兑豪礼',
- path: '/pages/index/index',
- imageUrl:'',
- };
- // 循环列表
- for ( let i in shareList ) {
- if( shareList[i].pages == 'pages/index/index' ) {
- shareObj.path = shareList[i].path ? shareList[i].path : shareObj.path ;
- shareObj.title = shareList[i].title ? shareList[i].title : shareObj.title ;
- shareObj.imageUrl = shareList[i].image_url ? shareList[i].image_url : shareObj.imageUrl ;
- }
- }
- // 返回分享信息
- return shareObj;
- },
- onShow() {
- // 是否显示价格
- this.isShowPrice = this.$checkAccess.checkShowPrice();
- // 城市名
- this.cityName = this.$checkAccess.getCity();
- // 选城市
- this.cityName = this.cityName ? this.cityName : "选城市",
- // 登录并且未选择城市,才可以选择城市
- this.toSelectedCity = !this.$checkAccess.getCity() ? true : false;
- // 没有数据的话,或者请求中,不允许刷新
- if( this.isReqing ) return ;
- // 获取列表
- this.$http.request("/api/banner/get_list").then((re)=>{
- if(re.code === "success"){
- this.bannerList = re.data;
- }
- })
- // 请求参数
- this.requestParam.name = "";
- // 请求参数
- this.requestParam.page = 1;
- // 是否是最后一页
- this.isLast = false;
- // 设置请求中
- this.isReqing = true;
- // 请求
- this.$http.request('api/product/get_list',this.requestParam).then((re)=>{
- // 设置非请求中
- this.isReqing = false;
- // 成功结果
- if( re.code == 'success' ){
- if(re.data.last_page <= this.requestParam.page ) this.isLast = true;
- this.productList = re.data.data;
- }
- });
- },
- onPullDownRefresh() {
- // 如果请求中,不允许请求,
- if( this.isReqing ) return false;
- // 初始化页码为1
- this.requestParam.page = 1;
- // 是否是最后一页
- this.isLast = false;
- // 设置请求中
- this.isReqing = true;
- // 请求列表
- this.$http.request('api/product/get_list',this.requestParam).then((re)=>{
- // 设置非请求中
- this.isReqing = false;
- // 成功结果
- if( re.code == 'success' ){
- if(re.data.last_page <= this.requestParam.page ) this.isLast = true;
- this.productList = re.data.data;
- }
- });
- uni.stopPullDownRefresh();
- },
- onReachBottom() {
- // 如果页码是0,避免第一页重复
- if( this.requestParam.page < 1 ) return;
- // 最后一页不再请求
- if( this.isLast ) return;
- // 请求中,不再请求
- if( this.isReqing ) return;
- // 增加一页
- this.requestParam.page = this.requestParam.page+1;
- // 设置请求中
- this.isReqing = true;
- // 请求列表
- this.$http.request('api/product/get_list',this.requestParam).then((re)=>{
- // 设置非请求中
- this.isReqing = false;
- // 成功结果
- if( re.code == 'success' ){
- // 最后一页
- if(re.data.last_page <= this.requestParam.page ) this.isLast = true;
- // 追加数据
- this.productList.push(...re.data.data);
- }
- });
- },
- methods: {
- searchChange(e){
- // 如果没有搜索词
- if( !this.requestParam.name ){
- this.searchOpen();
- }
- },
- searchOpen(){
- // 请求中,不再请求
- if( this.isReqing ) return;
- // 是否是最后一页
- this.isLast = false;
- // 初始化页码为1
- this.requestParam.page = 1;
- // 设置请求中
- this.isReqing = true;
- // 请求列表
- this.$http.request('api/product/get_list',this.requestParam).then((re)=>{
- // 设置非请求中
- this.isReqing = false;
- // 成功结果
- if( re.code == 'success' ){
- this.productList = re.data.data;
- if( re.data.data.length && re.data.last_page >= this.requestParam.page ) this.isLast = true;
- }
- });
- },
- toDetail(item){
- uni.navigateTo({
- url:"/pages/product/index?product_id="+item.id,
- })
- },
- navLottery(url){
- // 没有路径,不跳转
- if( !url ) return;
- // 判断是不是小程序链接
- if( url.includes('http') ){
- // 转码
- let link_url = encodeURIComponent(url);
- // 跳转到webview
- uni.redirectTo({
- url:`/pages/webview/index?link_url=${link_url}`
- })
- }else{
- // 跳转到webview
- uni.navigateTo({
- url:url
- })
- }
- }
- }
- }
- </script>
- <style lang="less">
- .search_fixed{
- top: var(--window-top);
- left: 0rpx;
- width: 750rpx;
- display: block;
- position: fixed;
- margin: 0rpx auto;
- padding: 20rpx 0rpx;
- background-color: #FFFFFF;
- .search_box{
- width: 750rpx;
- height: 60rpx;
- display: block;
- position: relative;
- .city_name{
- float: left;
- width: 80rpx;
- height: 60rpx;
- display: block;
- font-size: 24rpx;
- overflow: hidden;
- margin-left: 35rpx;
- line-height: 60rpx;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .city_name.uncheck{
- color: #E03519;
- }
- .search_input{
- z-index: 0;
- float: left;
- width: 510rpx;
- height: 56rpx;
- display: block;
- font-size: 24rpx;
- padding-left: 20rpx;
- position: relative;
- border-top-left-radius: 40rpx;
- border-bottom-left-radius: 40rpx;
- border: 2rpx solid #dddddd;
- }
- .search_btn{
- top: 0rpx;
- z-index: 9;
- left: 610rpx;
- color: #FFFFFF;
- position: absolute;
- display: block;
- width: 120rpx;
- height: 60rpx;
- font-size: 24rpx;
- margin: 0rpx 0rpx;
- padding: 0rpx 0rpx;
- line-height: 60rpx;
- border-radius: 40rpx;
- background-color: #E03519;
- }
- }
- }
- .banner_box{
- width: 680rpx;
- display: block;
- overflow: hidden;
- margin: 0rpx auto;
- margin-top: 120rpx;
- .banner_list{
- display: block;
- width: 680rpx;
- height: 382rpx;
- line-height: 382rpx;
- text-align: center;
- .banner_swiper{
- display: block;
- width: 680rpx;
- height: 382rpx;
- line-height: 382rpx;
- text-align: center;
- .image{
- width: 680rpx;
- height: 382rpx;
- }
- }
- }
- }
- .product_box{
- display: block;
- overflow: hidden;
- margin: 20rpx auto;
- padding: 0rpx 35rpx;
- .product_list{
- display: block;
- overflow: hidden;
- margin: 0rpx auto;
- .product_item{
- float: left;
- width: 320rpx;
- height: 520rpx;
- display: block;
- overflow: hidden;
- margin: 20rpx 0rpx;
- margin-right: 40rpx;
- background-color: #FFFFFF;
- border-radius: 20rpx;
- .product_image{
- width: 320rpx;
- height: 320rpx;
- }
- .product_name{
- height: 80rpx;
- font-size: 30rpx;
- line-height: 40rpx;
- overflow: hidden;
- margin: 10rpx 0rpx;
- padding: 0rpx 10rpx;
- text-overflow: ellipsis;
- .regiment_title{
- background-color: red;
- color: #F9F9F9;
- }
- }
- .product_spec{
- height: 30rpx;
- color: #999999;
- font-size: 24rpx;
- line-height: 30rpx;
- padding: 0rpx 10rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .stock_price{
- color: #dddddd;
- font-size: 20rpx;
- overflow: hidden;
- line-height: 30rpx;
- padding: 0rpx 10rpx;
- .product_price{
- float: left;
- color: red;
- font-size: 30rpx;
- line-height: 60rpx;
- .product_market{
- font-size: 24rpx;
- color: #999999;
- line-height: 30rpx;
- vertical-align: top;
- text-decoration: line-through;
- }
- }
- .product_stock{
- float: right;
- font-size: 20rpx;
- line-height: 60rpx;
- }
- }
- }
- .product_item:nth-child(even){
- margin-right: 0rpx;
- }
- }
- }
- </style>
|