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.
 
 
 
 
 

44 lines
847 B

<template>
<view class="manage-add">
<account-form></account-form>
<fixed-button>提交</fixed-button>
<success-modal title="提交成功" tip="请耐心等待管理员审核" ></success-modal>
</view>
</template>
<script>
import account_form from "./modules/account_form.vue";
import fixedButton from "../../components/fixed_button.vue";
import success_modal from "./modules/apply/success_modal.vue";
export default {
components: {
'account-form': account_form,
'success-modal': success_modal,
fixedButton,
},
data(){
return {
}
},
onLoad(){
},
methods: {
}
}
</script>
<style lang="scss">
page{
background: #fff;
}
.manage-add{
padding-top: 20upx;
}
.from-input{
padding: 0 56upx;
}
</style>