jiangchengfeiyi-xiaochengxu/pages/my-order/component/nav.vue

37 lines
819 B
Vue
Raw Normal View History

2025-03-12 09:47:22 +00:00
<template>
<view class="flex-row items-center equal-division-item" style="display: flex; align-items: center;">
<image
class="shrink-0 image_3"
2025-03-12 16:46:53 +00:00
:src="myOrderUrl + '/component/nav.png'"
2025-03-12 09:47:22 +00:00
/>
<text class="ml-2 font text_18" style="margin-left: 5rpx;">导航</text>
</view>
</template>
<script setup>
2025-03-12 13:15:24 +00:00
import { onLoad } from "@dcloudio/uni-app";
import { getFonts } from '../../../common/globalFont';
2025-03-12 16:46:53 +00:00
import { myOrderUrl } from "../../../common/globalImagesUrl";
2025-03-12 13:15:24 +00:00
onLoad(() => {
getFonts()
})
2025-03-12 09:47:22 +00:00
</script>
<style scoped lang="scss">
.equal-division-item {
padding: 15rpx 0;
}
.image_3 {
width: 46.88rpx;
height: 46.88rpx;
}
.font {
font-size: 26.25rpx;
2025-03-19 07:16:09 +00:00
font-family: FangZhengFonts;
2025-03-12 09:47:22 +00:00
line-height: 25.84rpx;
color: #e79ea1;
}
.text_18 {
line-height: 24.62rpx;
}
</style>