29 lines
425 B
Vue
29 lines
425 B
Vue
<template>
|
|
<view class="help-page">
|
|
<image class="help-image" src="https://imgs.agrimedia.cn/20260605178063075392792.png" mode="widthFix" />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.help-page {
|
|
min-height: 100vh;
|
|
background: #ffffff;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.help-image {
|
|
width: 100%;
|
|
max-width: 750rpx;
|
|
}
|
|
</style>
|