36 lines
903 B
Plaintext
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> |