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.
46 lines
857 B
46 lines
857 B
<template>
|
|
<view class="account-management">
|
|
<view>
|
|
<uni-nav-bar left-icon="back" @clickLeft="back" statusBar fixed title="">
|
|
<view class="account-management-title">账号管理</view>
|
|
<view slot="left"></view>
|
|
<view slot="right" class="add-account" @click="addAccount">添加账号</view>
|
|
</uni-nav-bar>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { back, go2, uploadFile } from '@/utils/hook.js'
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
back,
|
|
addAccount(){}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.account-management{
|
|
.account-management-title {
|
|
width: 100%;
|
|
font-size: 36rpx;
|
|
color: #000000;
|
|
letter-spacing: 0;
|
|
text-align: center;
|
|
font-weight: 500;
|
|
}
|
|
.add-account{
|
|
font-size: 28rpx;
|
|
color: #007AFF;
|
|
text-align: right;
|
|
line-height: 40rpx;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
</style>
|