abstract:微信小程序,主要就是一些微信自有的標(biāo)簽來寫出的頁面,然后通過接口來將后臺的數(shù)據(jù)渲染到頁面中(json格式).后臺的一些程序之前在西門大官人的課上寫過類似的.拿過來用就可以了.下面是幾個頁面,<!--index.wxml--> <view class="container"> <!-- 輪播圖 --> <vi
微信小程序,主要就是一些微信自有的標(biāo)簽來寫出的頁面,然后通過接口來將后臺的數(shù)據(jù)渲染到頁面中(json格式).后臺的一些程序之前在西門大官人的課上寫過類似的.拿過來用就可以了.下面是幾個頁面,
<!--index.wxml--> <view class="container"> <!-- 輪播圖 --> <view class="swiper_content"> <swiper indicator-dots="true" indicator-color="#A33" indicator-active-color="#fff" autoplay="true" interval="4000" circular="true"> <swiper-item> <image src='/wxupload/1.jpg' class="item_img"></image> </swiper-item> <swiper-item> <image src='/wxupload/2.jpg' class="item_img"></image> </swiper-item> <swiper-item> <image src='/wxupload/3.jpg' class="item_img"></image> </swiper-item> </swiper> </view> <!-- 輪播圖結(jié)束 --> <view class="news_content"> <view class="news_total"> -- 最新新聞 -- </view> <!-- 新聞頁面 --> <view class="news_contents"> <image src="/wxupload/4.jpg"></image> <view class="news_text"> <view class="news_title"> 最新姑娘小翠已經(jīng)登錄平臺啦!!! </view> <view class="news_desc"> 人氣姑娘小翠,登錄到本平臺!當(dāng)天人氣已經(jīng)突破了100W.... </view> <view class="news_time"> --- 2019-01-03 </view> </view> <view class="clear"></view> </view> <view class="news_contents"> <image src="/wxupload/5.jpg"></image> <view class="news_text"> <view class="news_title"> 最新姑娘可樓已經(jīng)登錄平臺啦!!! </view> <view class="news_desc"> 暴躁姑娘小翠,登錄到本平臺!當(dāng)天人氣僅僅20個.... </view> <view class="news_time"> --- 2019-01-03 </view> </view> <view class="clear"></view> </view> <view class="news_contents"> <image src="/wxupload/6.jpg"></image> <view class="news_text"> <view class="news_title"> 最新姑娘小紅已經(jīng)登錄平臺啦!!! </view> <view class="news_desc"> 人氣姑娘小翠,登錄到本平臺!當(dāng)天人氣已經(jīng)突破了50W.... </view> <view class="news_time"> --- 2019-01-03 </view> </view> <view class="clear"></view> </view> </view> </view>
Correcting teacher:韋小寶Correction time:2019-01-03 16:42:18
Teacher's summary:不錯不錯!寫的很漂亮!課后記得要多看看開發(fā)文檔哦!繼續(xù)加油吧!