71 lines
1.4 KiB
Vue
71 lines
1.4 KiB
Vue
<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> |