欧美三级国产三级日韩三级_亚洲熟妇丰满大屁股熟妇_欧美亚洲成人一区二区三区_国产精品久久久久久模特

小程序云開發(fā)挑戰(zhàn)賽-點(diǎn)餐小程序-folk - 新聞資訊 - 云南小程序開發(fā)|云南軟件開發(fā)|云南網(wǎng)站建設(shè)-昆明葵宇信息科技有限公司

159-8711-8523

云南網(wǎng)建設(shè)/小程序開發(fā)/軟件開發(fā)

知識(shí)

不管是網(wǎng)站,軟件還是小程序,都要直接或間接能為您產(chǎn)生價(jià)值,我們?cè)谧非笃湟曈X表現(xiàn)的同時(shí),更側(cè)重于功能的便捷,營銷的便利,運(yùn)營的高效,讓網(wǎng)站成為營銷工具,讓軟件能切實(shí)提升企業(yè)內(nèi)部管理水平和效率。優(yōu)秀的程序?yàn)楹笃谏?jí)提供便捷的支持!

您當(dāng)前位置>首頁 » 新聞資訊 » 小程序相關(guān) >

小程序云開發(fā)挑戰(zhàn)賽-點(diǎn)餐小程序-folk

發(fā)表時(shí)間:2020-10-19

發(fā)布人:葵宇科技

瀏覽次數(shù):70

一、介紹模塊:
**1. 應(yīng)用場景:**疫情防控期間,針對(duì)各大高校開發(fā)一個(gè)可以手機(jī)微信端自助點(diǎn)餐的小程序,可最大化提高學(xué)生點(diǎn)餐的效率,不會(huì)造成排隊(duì)過于擁擠的現(xiàn)象,同時(shí)保證無接觸式就餐。
**2. 目標(biāo)用戶:**各大中小學(xué),高等學(xué)校以及人群密集的教育機(jī)構(gòu)。
3. 實(shí)現(xiàn)思路: javascript實(shí)現(xiàn)主界面點(diǎn)餐的食堂和菜品開發(fā),數(shù)據(jù)庫存儲(chǔ)位置信息以及身份信息。
4. 效果截圖:
我的界面
訂單詳情
點(diǎn)餐首頁1
點(diǎn)餐首頁2
菜品詳情頁

5. 功能代碼展示:部分代碼如下

<!--index.wxml-->
<import src="/pages/index-item/index-item.wxml" /> 

<view class="header">
  <view class="header-left" catchtap='ontapjump'>
    <view class="header-location"><image src="/images/locationblack.jpg" /></view>
    <!-- <view class="header-text" wx:for="{{Detail}}" wx:for-index="idx" wx:key="idx">{{item.address}}1111</view> -->
    <view class="header-text">電子科技大學(xué)清水...</view>
  </view>
  <view class='arrow' catchtap='ontapjump'></view>
  <image src='/images/search.png' class='header-right-image'/>
  <view class="search-input">
    <input placeholder="請(qǐng)輸入商家或商品名稱" bindinput="input"></input>
  </view>
</view>
<view>
  <swiper indicator-dots='true' autoplay='true' interval='2000' vertical='{{false}}' >
    <swiper-item>
      <image src="/images/rice/maleonerice.jpg" data-post-id='1' />
    </swiper-item>
    <swiper-item>
      <image src="/images/rice/maleonerice.jpg" data-post-id='2' />
    </swiper-item>
    <swiper-item>
      <image src="/images/rice/riceone.jpg" data-post-id='3' />
    </swiper-item>
  </swiper>
</view>
<view class='mid-center'>——  附近商家  ——</view>
<view class='sort'>
  <view>綜合排序
   <image src='/images/down.png' class='sort-img'></image> 
  </view>
  <view>銷量最高</view>
  <view>距離最近</view>
  <view class='sort-screen'>
    <view class='sort-text'>篩選</view>
    <image src='/images/screen.png' class='screen-img' />
  </view>
</view>

<block wx:for="{{ppostList}}" wx:for-item="item" wx:for-index="idx" wx:key="key" >
  <view catchtap="ontaptodetail" data-post-id='{{item.postId}}'>
    <template is="postItemTpl" data="{{...item}}" />
  </view>
</block>
<!-- <view class="container">
  <view class="userinfo">
    <button wx:if="{{!hasUserInfo && canIUse}}" open-type="getUserInfo" bindgetuserinfo="getUserInfo"> 獲取頭像昵稱 </button>
    <block wx:else>
      <image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatarUrl}}" background-size="cover"></image>
      <text class="userinfo-nickname">{{userInfo.nickName}}</text>
    </block>
  </view>
  <view class="usermotto">
    <text class="user-motto">{{motto}}</text>
  </view>
</view> -->`

相關(guān)案例查看更多