You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
1.9 KiB
84 lines
1.9 KiB
<template>
|
|
<view class="flex-col page">
|
|
<view class="flex-col group_4">
|
|
<view class="flex-col section_2">
|
|
<image
|
|
src="@/static/images/logo.png"
|
|
class="image_6"
|
|
/>
|
|
<view class="flex-col group_5">
|
|
<view class="justify-between" @click="$url('/packages/article/article?type=about_us')">
|
|
<text>关于我们</text>
|
|
<image
|
|
src="@/static/icon/rightArrow.png"
|
|
class="image_7"
|
|
/>
|
|
</view>
|
|
<!-- <view class="justify-between group_7" @click="$url('/packages/article/article?type=card_design')">
|
|
<text>卡砖设计</text>
|
|
<image
|
|
src="@/static/icon/rightArrow.png"
|
|
class="image_7"
|
|
/>
|
|
</view> -->
|
|
<view class="justify-between group_8" @click="$url('/packages/article/article?type=rating_standard')">
|
|
<text>评级标准</text>
|
|
<image
|
|
src="@/static/icon/rightArrow.png"
|
|
class="image_7"
|
|
/>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="css">
|
|
.image_7 {
|
|
width: 44rpx;
|
|
height: 44rpx;
|
|
}
|
|
.page {
|
|
background-color: #f6f6f6;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
height: 100%;
|
|
}
|
|
.group_4 {
|
|
padding: 2rpx 0 16rpx;
|
|
flex: 1 1 auto;
|
|
color: rgb(51, 51, 51);
|
|
font-size: 32rpx;
|
|
font-weight: 500;
|
|
line-height: 44rpx;
|
|
white-space: nowrap;
|
|
overflow-y: auto;
|
|
}
|
|
.section_2 {
|
|
padding: 100rpx 32rpx 80rpx;
|
|
background-color: rgb(255, 255, 255);
|
|
}
|
|
.image_6 {
|
|
align-self: center;
|
|
width: 220rpx;
|
|
height: 220rpx;
|
|
}
|
|
.group_5 {
|
|
margin-top: 80rpx;
|
|
}
|
|
.group_7 {
|
|
margin-top: 50rpx;
|
|
}
|
|
.group_8 {
|
|
margin-top: 50rpx;
|
|
}
|
|
</style>
|