Files
QCN_rider/.svn/pristine/24/24f12ce214a578a0166bb3fb818c40bcb9b64551.svn-base
2026-02-12 12:19:20 +08:00

36 lines
903 B
Plaintext

<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>