中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

商城小程序左側欄分類如何開發

發布時間:2022-03-16 09:26:44 來源:億速云 閱讀:223 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“商城小程序左側欄分類如何開發”,內容詳細,步驟清晰,細節處理妥當,希望這篇“商城小程序左側欄分類如何開發”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

如下圖

商城小程序左側欄分類如何開發

今天我們就來看看商城分類項目開發需要哪些?

布局分析:

<主盒子>

<左盒子></左盒子>

<右盒子></右盒子>

</主盒子>

左盒子使用標準流

右盒子使用絕對定位(top、right)

小程序如下圖所示:

商城小程序左側欄分類如何開發

相關源碼

.wxml

<!--主盒子-->  

<view class="container">  

  <!--左側欄-->  

  <view class="nav_left">  

    <block wx:for="{{navLeftItems}}">  

      <!--當前項的id等于item項的id,那個就是當前狀態-->  

      <!--用data-index記錄這個數據在數組的下標位置,使用data-id設置每個item的id值,供打開2級頁面使用-->  

      <view class="nav_left_items {{curNav == item.id ? 'active' : ''}}" bindtap="switchRightTab" data-index="{{index}}" data-id="{{item.id}}">{{item.tree.desc}}</view>  

    </block>  

  </view>  

  <!--右側欄-->  

  <view class="nav_right">  

    <!--如果有數據,才遍歷項-->  

    <view wx:if="{{navRightItems[curIndex].tree.nodes[1].tree.nodes}}">  

      <block wx:for="{{navRightItems[curIndex].tree.nodes[1].tree.nodes}}">  

        <view class="nav_right_items">  

          <navigator url="../list/index?brand={{item.tree.id}}&typeid={{navRightItems[curIndex].id}}">  

            <!--用view包裹圖片組合,如果有圖片就用,無圖片提供就使用50x30的這個默認圖片-->  

            <view>                

              <block wx:if="{{item.tree.logo}}">  

                <image src="{{item.tree.logo}}"></image>  

              </block>  

              <block wx:else>  

                <image src="http://temp.im/50x30"></image>  

              </block>  

            </view>  

            <!--如果有文字,就用文字;無文字就用其他-->  

            <view wx:if="{{item.tree.desc}}">  

              <text>{{item.tree.desc}}</text>  

            </view>  

            <view wx:else>  

              <text>{{item.tree.desc2}}</text>  

            </view>  

          </navigator>  

        </view>  

      </block>  

    </view>  

    <!--如果無數據,則顯示數據-->  

    <view wx:else>暫無數據</view>  

  </view>  

</view>  

.wxss

page{  

  background: #f5f5f5;  

}  

/*總體主盒子*/  

.container {  

  position: relative;  

  width: 100%;  

  height: 100%;  

  background-color: #fff;  

  color: #939393;  

}  

/*左側欄主盒子*/  

.nav_left{  

  /*設置行內塊級元素(沒使用定位)*/  

  display: inline-block;  

  width: 25%;  

  height: 100%;  

  /*主盒子設置背景色為灰色*/  

  background: #f5f5f5;  

  text-align: center;  

}  

/*左側欄list的item*/  

.nav_left .nav_left_items{  

  /*每個高30px*/  

  height: 30px;  

  /*垂直居中*/  

  line-height: 30px;  

  /*再設上下padding增加高度,總高42px*/  

  padding: 6px 0;  

  /*只設下邊線*/  

  border-bottom: 1px solid #dedede;  

  /*文字14px*/  

  font-size: 14px;  

}  

/*左側欄list的item被選中時*/  

.nav_left .nav_left_items.active{  

  /*背景色變成白色*/  

  background: #fff;  

}  

/*右側欄主盒子*/  

.nav_right{  

  /*右側盒子使用了絕對定位*/  

  position: absolute;  

  top: 0;  

  right: 0;  

  flex: 1;  

  /*寬度75%,高度占滿,并使用百分比布局*/  

  width: 75%;  

  height: 100%;  

  padding: 10px;  

  box-sizing: border-box;  

  background: #fff;  

}  

/*右側欄list的item*/  

.nav_right .nav_right_items{  

  /*浮動向左*/  

  float: left;  

  /*每個item設置寬度是33.33%*/  

  width: 33.33%;  

  height: 80px;  

  text-align: center;  

}  

.nav_right .nav_right_items image{  

  /*被圖片設置寬高*/  

  width: 50px;  

  height: 30px;  

}  

.nav_right .nav_right_items text{  

  /*給text設成塊級元素*/  

  display: block;  

  margin-top: 5px;  

  font-size: 10px;  

  /*設置文字溢出部分為...*/  

  overflow: hidden;  

  white-space: nowrap;  

  text-overflow: ellipsis;  

}  

.js

Page({  

    data: {  

        navLeftItems: [],  

        navRightItems: [],  

        curNav: 1,  

        curIndex: 0  

    },  

    onLoad: function() {  

        // 加載的使用進行網絡訪問,把需要的數據設置到data數據對象  

        var that = this          

        wx.request({  

            url: 'http://huanqiuxiaozhen.com/wemall/goodstype/typebrandList',  

            method: 'GET',  

            data: {},  

            header: {  

                'Accept': 'application/json'  

            },  

            success: function(res) {  

                console.log(res)  

                that.setData({  

                    navLeftItems: res.data,  

                    navRightItems: res.data  

                })  

            }  

        })  

    },  

    //事件處理函數  

    switchRightTab: function(e) {  

        // 獲取item項的id,和數組的下標值  

        let id = e.target.dataset.id,  

            index = parseInt(e.target.dataset.index);  

        // 把點擊到的某一項,設為當前index  

        this.setData({  

            curNav: id,  

            curIndex: index  

        })  

    }  

})  

讀到這里,這篇“商城小程序左側欄分類如何開發”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

孙吴县| 崇仁县| 鹤岗市| 布拖县| 弋阳县| 明光市| 朝阳区| 临城县| 喜德县| 桐城市| 陵水| 利辛县| 宜兰市| 灵丘县| 南川市| 清河县| 桐乡市| 公安县| 日喀则市| 财经| 平山县| 武功县| 克拉玛依市| 综艺| 北辰区| 长白| 饶阳县| 崇信县| 保德县| 邹城市| 江门市| 哈巴河县| 麻栗坡县| 阳新县| 岢岚县| 民丰县| 慈利县| 吉林省| 敦煌市| 延吉市| 白银市|