微信点餐小程序设计与实现(一)

本文介绍了微信小程序点餐程序的实现,前端利用微信小程序,实现无需下载安装即可使用的应用。主要内容包括菜单界面布局、逻辑处理和数据处理。后端涉及数据处理代码。后续将分享登录、数据展示和支付等功能的实现。
摘要由CSDN通过智能技术生成

本文所做的主要工作内容是微信小程序点餐程序的设计与实现。前端是基于微信小程序实现,小程序是一种不需要下载安装即可使用的应用,它实现了应用“触手可及”的梦想,用户扫一扫或者搜一下即可打开应用。也体现了“用完即走”的理念,无需安装卸载。
这篇博客介绍微信点餐小程序菜单界面的布局、逻辑处理、数据处理。
点餐小程序菜单界面的布局代码如下

<view class="container">  
    <view wx:for="{
   {menus}}" wx:key="id" class="section">
      <view class="flex-wrp" style="flex-direction:row;">
      <image style="width: 500rpx; height: 200rpx; background-color: #eeeeee;" mode="aspectFill" src="{
   {item.image}}" bindtap="preview" data-imgsrc="{
   {item.image}}" >
      </image>
        <view class="flex-item">
         <text>{
   {
   item.name}}</text>\n
          <text class="flex-desc">{
   {
   item.description}}</text>\n
          <text class="red">¥ {
   {
   item.price}}</text>
          
        </view>   
              
      </view>
      <button type='primary' bindtap="onbuy" data-id="{
   {item.id}}">购买</button>  
    </view><!--section-->
</view><!--container-->

逻辑处理代码部分

var common = require('../../utils/common.js')
var app = getApp();
Page({
   
  data: {
   
    menus: null
  },
  onLoad: function (options) {
   
    // 页面初始化 options为页面跳转所带来的参数
    var that = this
    wx.request({
   
      url: common.baseUrl + 'index.php/api/menu/get_menus',
      header: {
   
        'content-type': 'application/json'
      },
      success: function (res) {
   
        that.setData({
   
          menus: res.data
        })
      }
    });
  },
  preview: function (e) {
   
    var imgsrc = e.target.dataset.imgsrc;
    wx.previewImage({
   
      current: imgsrc, // 当前显示图片的http链接
      urls: [imgsrc] // 需要预览的图片http链接列表
    })
  },
  onShareAppMessage: function () {
   
    return {
   
      title: '我在微餐厅点菜,快来啊',
      path: '/pages/menu/index'
    }
  },

  onbuy: function (e) {
   
    var id = e.target.dataset.id;
    wx.request({
   
      url: common.baseUrl + 'index.php/api/Shopping/add',
      method: 'get',
      data: {
   
        uid: app.d.userId,
        id:id
      },
      header: {
   
        'content-type': 'application/json'
      },
      success: function (res) {
   
        if (res.data.status == 1){
   
          wx.showToast({
   
            title: '添加成功',
            duration: 2000
          });
        }else{
   
          wx.showToast({
   
            title: res.data.err,
            duration: 2000
          });
        }

        
      },
      fail: function (e) {
   
        wx.showToast({
   
          title: e.data.err,
          duration: 2000
        });
      }
    });
  }
})

后端数据处理代码如下

<?php
// 本类由系统自动生成,仅供测试用途
namespace Api\Controller;
use Think\Controller;
class ShoppingController extends Controller {
   

	//***************************
	//  会员获取购物车列表接口
	//***************************
	public function index(){
   
        $shopping=M("shopping_char");
        $product=M("menu");
		$user_id = intval($_REQUEST['user_id']);
		if (</
评论 13
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值