first commit

This commit is contained in:
Ls
2026-02-12 12:19:20 +08:00
commit 219fd9be5c
529 changed files with 169918 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
import { Service } from '@/Service/Service';
/*****登录接口*****/
class CNRiderLoginService {
private static RiderLoginPath : string = '/Login/RiderLogin';
/*****登录注册*****/
static RiderLogin(login : any) {
var result = Service.Request(this.RiderLoginPath, "POST", login);
return result;
}
private static GetKefuInfoPath: string = '/Home/GetKefuInfo';
/*****获取客服电话*****/
static GetKefuInfo() {
var result = Service.Request(this.GetKefuInfoPath, "GET", {});
return result;
}
}
export {
Service,
CNRiderLoginService
}

View File

@@ -0,0 +1,36 @@
<template>
<!-- 导航栏 -->
<view class=""
style="padding:50rpx 20rpx 18rpx; box-sizing: border-box; position: fixed;top: 0; left: 0; width: 100vw; background-color: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: space-between; ">
<view class="" @click="Service.GoPageBack()">
<up-icon name="arrow-left" color="#fff" size="32rpx"></up-icon>
</view>
<view class="" style="color: #fff; ">
配送中 · 2单
</view>
<image :src="Service.GetIconImg('/static/index/order/voice.png')"
style="width: 32rpx; height: 32rpx; " mode=""></image>
</view>
<view class="" style="width: 100%; height: 88rpx; ">
</view>
<view>
1111
</view>
</template>
<script setup lang="ts">
import { onShow, onLoad } from "@dcloudio/uni-app";
import { Service } from "@/Service/Service"
onLoad(() => {
});
onShow(() => {
});
</script>
<style lang="scss">
</style>