啦啦外卖系统是一款针对本地生活服务的外卖点餐系统支持单店版、多店版、平台版等多种场景使用,包括PC端管理平台,顾客端(微信端、APP、小程序)、商户端(微信端、APP、小程序)、配送端(微信端、APP、小程序)支持接入微信服务号、配送端在线抢单、自由提现、调度订单、接入美团、饿了么订单等强势功能。

        啦啦外卖发展至今,一直占据市场鳌头。最近笔者心血来潮,便研究了一下啦啦外卖的4.0APP。啦啦外卖发布的4.0APP使用了UNIAPP开发平台,实现了APICLOUD平台难以攻破的后台保活策略,同时将极光推送改为个推与UNIAPP联合的UNIPUSH方案,相比之下4.0APP比3.0APP性能提升不少。

        于是照着官方的老版本VUE与新版本的APP逆向分析,最终经历了将近两个月时间,成功写出一套UNIAPP保活代码。几经测试,已经完美对接所谓的开源版本,大部分开源版本需手动修改一些后端代码。目前可对接官方版本的43.1版本以上的任何版本,坑位也可以对接,实现无缝对接,实现实时语音推送功能。

     

        有相同兴趣的朋友可以一起交流沟通

 

<view class="login-panel">
	<view class="logo">
		<view class="u-image"
			  style="width: 86px; height: 86px; border-radius: 5px; overflow: hidden; background-color: transparent;">
			<view class="u-image__image" style="border-radius: 5px;">
				<image style="width: 86px; height: 86px;"
					   :src="logo">
				</image>
			</view>
		</view>
	</view>
	<view>
		<view class="u-field u-border-bottom">
			<view class="u-field-inner u-label-postion-left">
				<view class="u-label" style="justify-content: flex-start; flex: 0 0 0px;">
					<text class="u-label-text">
						<text></text>
					</text>
				</view>
				<view class="fild-body">
					<view class="u-flex-1 u-flex" style="text-align: left; margin: 0px 4px;">
						<view class="u-flex-1 u-field__input-wrap">
							<view style="padding: 10px 15px;" class="uni-input-wrapper">
								<view class="uni-input-placeholder input-placeholder"></view>
								<input
									   style="height: 26px;font-size: 15px;width: auto;margin: 0px 4px;display: flex;flex: 1;align-items: center;"
									   maxlength="140" step="" enterkeyhint="done"
									   autocomplete="off" type="" class="uni-input-input"
									   placeholder="请输入手机号" v-model="mobile">
							</view>
						</view>
					</view>
					<view class="u-button-wrap"></view>
				</view>
			</view>
		</view>
		<view class="u-field u-border-bottom">
			<view class="u-field-inner u-label-postion-left">
				<view class="u-label" style="justify-content: flex-start; flex: 0 0 0px;">
					<text class="u-label-text">
						<text></text>
					</text>
				</view>
				<view class="fild-body"
					  style="display: flex;flex-direction: row; flex: 1; align-items: center;">
					<view class="u-flex-1 u-flex"
						  style="text-align: left; margin: 0px 4px;flex: 1;">
						<view class="u-flex-1 u-field__input-wrap">
							<view style="padding: 10px 15px;" class="uni-input-wrapper">
								<view class="uni-input-placeholder input-placeholder"></view>
								<input
									   style="height: 26px;font-size: 15px;width: auto;margin: 0px 4px;display: flex;flex: 1;align-items: center;"
									   maxlength="140" step="" enterkeyhint="done"
									   autocomplete="off" type="password" class="uni-input-input"
									   placeholder="请输入密码" v-model="password">
							</view>
						</view>
					</view>
					<view class="u-button-wrap">
						<view class="u-flex c-primary">
							<view style="margin-left: 4px;font-size: 14px;">忘记密码</view>
							<view class="u-icon u-icon--right">
								<text hover-class="" class="u-icon__icon icon-question icon"
									  style="font-size: inherit; font-weight: normal; top: 0px;">
									<text></text>
								</text>
							</view>
						</view>
					</view>

				</view>
			</view>

		</view>
	</view>
	<view class="u-p-t-80"
		  style="padding-top: 43px!important;font-size: 16px;height: 43px;line-height: 43px;">
		<button
				class="u-btn u-line-1 u-fix-ios-appearance u-size-default u-btn--bold-border u-btn--primary"
				app-parameter="" send-message-title="" send-message-path="sendMessagePath" lang="en"
				data-name="" session-from="" send-message-image=""
				style="overflow: hidden;color: #fff;border-color: #33aafc;background-color: #33aafc;"
				@click="submit">登录
			<view class="u-wave-ripple"
				  style="top: 0px; left: 0px; background-color: rgba(0, 0, 0, 0.15);"></view>
		</button>
	</view>
</view>

仿lala外卖骑手端源码 - DCloud 插件市场 https://ext.dcloud/plugin?id=9414

更多推荐

啦啦外卖UNIAPP(4.0)源码商家+骑手