[抖火申请支付]

This commit is contained in:
2023-05-15 13:33:00 +08:00
commit c503bff7d2
294 changed files with 25144 additions and 0 deletions

71
pages/user/manage.vue Normal file
View File

@@ -0,0 +1,71 @@
<template>
<view class="content">
<view class="setupItem">
<view class="label" @click="$Router.push({name: 'userBase'})">
<view class="label-name">
<view class="label-name-text">基本信息</view>
</view>
<view class="label-tips">
<image class="label-name-arrow" src="/static/imgs/zK_arrow.png" mode="widthFix"></image>
</view>
</view>
<view class="label" @click="$Router.push({name: 'Ins'})">
<view class="label-name">
<view class="label-name-text">咨询信息</view>
</view>
<view class="label-tips">
<image class="label-name-arrow" src="/static/imgs/zK_arrow.png" mode="widthFix"></image>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
onShow() {},
methods:{}
}
</script>
<style lang="scss" scoped>
.content {
background-color: #f7f9fa;
height: 100vh;
overflow-y: scroll;
}
.setupItem {
margin-bottom: $margin;
background-color: #ffffff;
.label {
line-height: 60rpx;
display: flex;
padding: $padding;
box-sizing: border-box;
border-bottom: 2rpx solid #f7f9fa;
&:last-child {
border: none;
}
.label-name {
display: flex;
flex: 1;
}
.label-tips {
display: flex;
.label-name-arrow {
width: 24rpx;
height: 24rpx;
margin-top: 18rpx;
}
}
}
}
</style>