【外卖cps源码分享】支持美团饿了么

美团外卖饿了么外卖老有人问能不能赚钱,那么今天就说一下逻辑

首先,分为cps悬赏和,赏金两种方式赏金属于打赏比较高的。cps的模式主要靠用户下单的结算金额,用户买的多你就赚的多,通常是在3~6%,美团是3,美团被制裁之后就降价了(可能是这个原因,据说预算不够了)。

当然了,依赖外卖cps赚钱是不行的,当然要加点东西了。比如涵盖话费、视频会员、加油卡、礼品卡等多种品类折扣权益,吃、喝、玩、乐、购五大消费场景覆盖的综合权益卡券小程序,用户折扣购、平台赚佣金,个人、企业流量变现平台。

这些都可以加。三个月外卖收入订单。仁者见仁智者见智,都有自己的推广方式,但是,最好是用免费的流量,比如贴吧,什么的。

<template>

<view class="page-main">

<view class="head-picture-area">

<uni-nav-bar

:fixed="false"

:status-bar="true"

:border="false"

backgroundColor="transparent"

>

<!-- <view class="choose-address" slot="left" @click="openPopup">

<view class="icon" />

<view class="city">广州市</view>

</view> -->

</uni-nav-bar>

<image src="/static/index/banner.png" class="header-content" />

</view>

<loginWrap>

<view class="coupon-top" v-if="productActivityList.length">

<view

class="coupon-top-item"

v-for="(item, index) in productActivityList"

:key="index"

@click="jumpTo(`/pages/product/list?pcode=${item.code}`)"

>

<image class="pic" :src="item.logo" />

<view class="text">{item.name }}</view>

</view>

<view

class="coupon-top-item"

@click="

handleProductClick({

type: 'page',

path: '/pages/product/classify',

})

"

>

<image class="pic" src="/static/index/fenlei.png" />

<view class="text">分类查找</view>

</view>

</view>

<brandLoading v-else />

</loginWrap>

<view

class="hot-activity"

:class="{ layout2: layout == 2 }"

v-if="banner.length || coupon.length"

>

<view class="activity-left" v-if="banner.length">

<!-- <view class="title">1元拉新拼</view> -->

<swiper

:autoplay="true"

:circular="true"

class="swiper"

indicatorActiveColor="#fff"

indicatorColor="#ccc"

:indicatorDots="true"

v-if="banner.length > 1"

>

<swiper-item

class="swiper-item"

v-for="(banner, i) in banner"

:key="i"

@click="handleProductClick(banner)"

>

<image class="img" mode="aspectFill" :src="banner.pic.url"></image>

</swiper-item>

</swiper>

<view class="swiper" v-else>

<image class="img" mode="aspectFill" :src="banner[0].pic.url" @click="handleProductClick(banner[0])"></image>

</view>

</view>

<view class="activity-right" v-if="coupon.length">

<view class="activity-item" v-for="(coupon, i) in coupon" :key="i">

<image

:mode="layout == 2 ? 'aspectFill' : 'widthFix'"

:src="coupon.pic.url"

@click="handleProductClick(coupon)"

/>

</view>

</view>

</view>

<view class="coupon-card">

<view class="nav-bar">

<view class="nav-item active">精选优惠</view>

<!-- <view class="nav-item">周边好店</view> -->

</view>

<loginWrap>

<view class="coupon-card-list" v-if="productHotList.length">

<view

class="item"

@click="jumpTo(`/pages/product/detail?gcode=${item.code}`)"

v-for="(item, index) in productHotList"

:key="index"

>

<view

class="pic"

:style="{

background: `url(${item.bg_card}) no-repeat center/contain`,

}"

></view>

<view class="card-content">

<view class="title"> {item.name }} </view>

<view class="control">

<view class="btn">{{ item.discountStr }}领取</view>

<view class="earn" v-if="item.commission"

>赚¥{{ item.commission_str }}</view

>

<!-- <view class="like"></view> -->

</view>

</view>

</view>

</view>

<cardLoading v-else />

</loginWrap>

</view>

<customTabBar tab="index"></customTabBar>

</view>

</template>

<script>

import { mapState, mapActions } from "vuex";

import getShareMessage from "@/utils/getShareMessage";

import brandLoading from "./components/brandLoading";

import cardLoading from "./components/cardLoading";

export default {

components: { brandLoading, cardLoading },

data() {

return {};

},

computed: {

...mapState({

productActivityList: (state) => state.index.productActivityList,

productHotList: (state) => state.index.productHotList,

banner: (state) => state.index.banner,

coupon: (state) => state.index.coupon,

layout: (state) => state.index.layout,

}),

},

onLoad(option) {

// this.initLocation();

this.fetchProductActivity();

this.fetchProductHot();

this.fetchCardProductRecommand();

if (option.path) {

this.jumpTo(option.path);

}

},

methods: {

...mapActions([

"getAuthorize",

"fetchProductActivity",

"fetchProductHot",

"fetchCardProductRecommand",

]),

async initLocation() {

const authorize = await this.getAuthorize();

if (!authorize) return;

uni.showLoading({ title: "加载优惠中" });

const [locationErr, locationRes] = await uni.getLocation();

const { latitude, longitude } = locationRes;

// await this.fetchShopRecommand({

// lat: latitude,

// lng: longitude,

// });

uni.hideLoading();

},

jumpTo(payload) {

try {

const path = decodeURIComponent(payload);

uni.navigateTo({

url: path,

});

} catch (e) {}

},

handleProductClick(data) {

const { type, appId, path, url } = data;

if (type == "page") {

uni.navigateTo({

url: path,

});

}

if (type == "tab") {

uni.switchTab({

url: path,

});

}

if (type == "miniapp") {

uni.navigateToMiniProgram({

appId,

path,

});

}

if (url) {

uni.navigateTo({

url: `/pages/webview/webview?url=${encodeURIComponent(url)}`,

});

}

},

onShareAppMessage(res) {

return getShareMessage();

},

onShareTimeline() {

return getShareMessage();

},

},

};

</script>

<style lang="scss">

page {

background: #f2f2f2;

}

.head-picture-area {

position: relative;

background: #ffffff;

&::before {

position: absolute;

top: 0;

left: 0;

content: "";

display: block;

height: 248rpx;

width: 100%;

background: linear-gradient(180deg, #ffa1a1 0%, #fad2d6 47%, #ffffff 100%);

}

}

.choose-address {

display: flex;

align-items: center;

padding-left: 26rpx;

font-size: 30rpx;

line-height: 42rpx;

color: #333333;

white-space: nowrap;

.icon {

margin-right: 12rpx;

width: 32rpx;

height: 36rpx;

background: url(/static/index/icon.png) no-repeat center/contain;

}

}

.header-content {

position: relative;

display: block;

margin: 0 auto;

width: 686rpx;

height: 182rpx;

}

.coupon-top {

position: relative;

z-index: 1;

display: flex;

flex-wrap: wrap;

padding: 0 24rpx;

padding-top: 44rpx;

background: #ffffff;

&-item {

padding-bottom: 40rpx;

width: 20%;

text-align: center;

display: flex;

align-items: center;

flex-direction: column;

.pic {

display: block;

width: 80rpx;

height: 80rpx;

border-radius: 50%;

}

.text {

margin-top: 18rpx;

font-size: 24rpx;

line-height: 34rpx;

color: #333333;

}

}

}

.hot-activity {

background: #f2f2f2;

display: flex;

flex-direction: column;

padding: 20rpx 32rpx;

justify-content: space-between;

box-shadow: 0 -2rpx 120rpx rgba(236, 89, 89, 0.1);

&.layout2 {

flex-direction: row;

justify-content: space-between;

.activity-left {

margin-bottom: 0;

height: 428rpx;

width: 334rpx;

.swiper {

height: 100%;

width: 100%;

}

image {

height: 100%;

width: 100%;

}

}

.activity-right {

justify-content: space-between;

margin-right: 0;

flex-direction: column;

.activity-item {

flex: initial;

margin-right: 0;

height: 204rpx;

width: 332rpx;

}

image {

width: 100;

height: 100%;

}

}

}

.swiper {

height: 160rpx;

}

.title {

font-size: 32rpx;

font-weight: 800;

line-height: 44rpx;

color: #333333;

}

.activity-left {

margin-bottom: 20rpx;

text-align: center;

image {

// margin-top: 18rpx;

display: block;

width: 100%;

height: 160rpx;

}

}

.activity-right {

display: flex;

margin-right: -20rpx;

flex-wrap: wrap;

.activity-item {

flex: 1;

margin-right: 20rpx;

}

image {

// margin-top: 18rpx;

display: block;

width: 100%;

height: 152rpx;

}

}

}

.coupon-card {

background: #fbf6f2;

border-radius: 40rpx 40rpx 0 0;

padding-top: 40rpx;

padding-bottom: 160rpx;

.nav-bar {

display: flex;

padding: 0 32rpx;

color: #333333;

align-items: center;

.nav-item {

margin-right: 40rpx;

font-size: 30rpx;

font-weight: 700;

line-height: 42rpx;

color: #999999;

&::after {

content: "";

// display: block;

margin: 14rpx auto 0;

width: 46rpx;

height: 6rpx;

background: transparent;

}

&.active {

font-size: 36rpx;

font-weight: 800;

line-height: 50rpx;

color: #333333;

&::after {

background: #ec5959;

}

}

}

}

&-list {

display: flex;

flex-wrap: wrap;

padding: 26rpx 25rpx;

.item {

box-sizing: border-box;

margin-bottom: 4rpx;

width: 350rpx;

height: 456rpx;

background: url(https://vkceyugu.cdn.bspapp.com/VKCEYUGU-cf26384b-87c0-45b4-a7e2-8a03c1243555/0ba920fc-465a-4a39-9c16-e6dbd436ea79.png)

no-repeat center/contain;

.pic {

display: block;

height: 218rpx;

margin: 0 20rpx;

}

.card-content {

padding: 0 42rpx;

}

.title {

padding-top: 34rpx;

font-size: 28rpx;

font-weight: 700;

line-height: 40rpx;

color: #333333;

overflow: hidden;

text-overflow: ellipsis;

white-space: nowrap;

}

.control {

display: flex;

justify-content: space-between;

align-items: center;

padding-top: 58rpx;

.btn {

padding: 0 22rpx;

height: 58rpx;

line-height: 58rpx;

background: #fbeae5;

border-radius: 30px;

text-align: center;

font-weight: 700;

color: #ec5959;

font-size: 26rpx;

}

.like {

width: 32rpx;

height: 30rpx;

background: url(/static/index/collect.png) no-repeat center/contain;

}

.earn {

// padding: 6rpx 6rpx;

color: #fa6400;

font-size: 24rpx;

// background: #fbeae5;

}

}

}

}

}

</style>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: 同城外卖系统源码、同城O2O配送外卖小程序、外卖APP和仿美团饿了么骑手导航配送平台都是用于创建和管理外卖订单、配送和导航的软件。 同城外卖系统源码是一个提供外卖订餐服务的平台,使用者可以在平台上浏览餐厅菜单、下单、付款和选择配送方式。该源码可以供开发人员根据自己的需求进行二次开发,定制自己的外卖订餐系统。 同城O2O配送外卖小程序是一种基于微信或其他社交媒体平台的小程序,用户可以通过搜索附近的餐厅、浏览菜单、下单和支付,餐厅可以收到订单并安排配送。该小程序具有便捷、快速和实时的特点,方便用户下单和餐厅配送管理。 外卖APP是一款专门用于订购外卖的手机应用程序,用户可以通过该APP在手机上浏览餐厅菜单、下单、支付和选择配送方式。该APP通常有用户评价、促销优惠等功能,为用户提供更便捷的外卖服务体验。 仿美团饿了么骑手导航配送平台是一个提供骑手导航和配送管理的软件平台。骑手可以通过该平台接收订单、查看订单详情、导航到目的地以及完成配送。该平台可以根据订单的优先级和距离进行最优的分配,提高配送效率和服务质量。 总之,同城外卖系统源码、同城O2O配送外卖小程序、外卖APP和仿美团饿了么骑手导航配送平台都是为了提供便捷的外卖订购和配送服务,满足用户和商家的需求。不同的系统和平台有不同的特点和功能,可以根据个人或商家的需求选择合适的解决方案。 ### 回答2: 同城外卖系统源码是一种提供给餐饮行业的解决方案,能够帮助餐厅与消费者之间实现线上点餐、配送服务的平台。它包括同城o2o配送外卖小程序和外卖app,可以模仿美团饿了么等知名平台的骑手导航配送平台。 同城外卖系统源码由前端和后台两部分组成。前端部分是同城o2o配送外卖小程序和外卖app,它们提供给消费者一个方便快捷的线上点餐平台,消费者可以通过这些平台选择菜品、下单支付并实时查看订单和配送进度。同时,这些平台也为餐厅提供了一个展示自己菜品并接受订单的渠道。 后台部分是同城外卖系统的核心,它连接了餐厅、骑手和消费者,实现了订单管理、配送管理、骑手管理等功能。通过后台管理系统,餐厅可以接受并管理订单、查看菜品销售情况,骑手可以接受配送任务并进行导航定位,消费者则可以实时查看订单状态和配送进度。 同城外卖系统源码的优势在于它提供了一整套完善的解决方案,不仅包括前端的小程序和app开发,还有后台系统的搭建和管理。这样的系统源码可以有效减少开发成本和周期,帮助餐厅快速上线线上外卖服务。同时,系统的界面和功能可以仿照美团饿了么等成功平台,提供给用户一种熟悉、便捷的体验。 综上所述,同城外卖系统源码包括同城o2o配送外卖小程序和外卖app,可以通过仿美团饿了么的骑手导航配送平台实现餐厅与消费者之间的线上点餐和配送服务。这种系统源码具有成本低、周期短、界面友好等优势,是餐饮行业实现线上外卖服务的一个可行解决方案。 ### 回答3: 同城外卖系统源码是为了满足现代社会外卖配送需求而开发的一种技术解决方案。该系统源码适用于开发同城o2o配送外卖小程序或外卖app,功能类似于美团饿了么等外卖平台,可以提供用户下单、商家接单、骑手接单、订单配送等功能。 该系统源码基于互联网和移动端技术开发,具备可扩展性和稳定性。通过前端界面和后端逻辑的配合,用户可以通过小程序或app浏览并选择附近的餐馆、菜品,进行下单和支付。商家可以接收订单、处理订单,并与骑手进行配送沟通。骑手可以接收配送任务,并通过导航系统进行准确的配送。 这个系统源码可以帮助餐馆和外卖平台开发出高效、便捷的配送系统,提升用户体验和订单处理效率。同时,它也可以提供一种创业机会,帮助个人或企业开发自己的同城外卖平台。 总结而言,同城外卖系统源码是一种满足现代社会外卖配送需求的技术解决方案。通过开发同城o2o配送外卖小程序或外卖app,可以构建类似于美团饿了么等外卖平台的功能,并为用户、商家和骑手提供便捷的下单、接单和配送服务。这个系统源码具备可扩展性和稳定性,适合个人创业或企业开发自己的同城外卖平台

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值