32 lines
695 B
Vue
32 lines
695 B
Vue
<script setup></script>
|
|
|
|
<template>
|
|
<view class="punch">
|
|
<nav-bar>
|
|
<template #back>
|
|
<image
|
|
src="/static/images/public/return-icon.png"
|
|
mode="heightFix"
|
|
class="top-left-icon"
|
|
></image>
|
|
</template>
|
|
</nav-bar>
|
|
<view class="public-header—box">
|
|
<!-- <image
|
|
src="/static/images/ranking-list/title-icon.png"
|
|
mode="aspectFit"
|
|
class="left-icon"
|
|
></image>
|
|
<image
|
|
src="/static/images/ranking-list/hat.png"
|
|
mode="aspectFit"
|
|
class="right-icon"
|
|
></image> -->
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
@import './styles/index.scss';
|
|
</style>
|