租房小程序前端代码
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.
 
 
 

32 lines
868 B

<template>
<view class="se-p-30">
<view class="se-flex se-flex-v-c se-mt-120">
<image class="se-a-130" src="../../static/image/47052.png" mode=""></image>
<text class="se-fw-6 se-c-black se-mt-30">登录成功</text>
</view>
<view class="se-px-20 se-mt-100">
<navigator :url="`/pages_subpack/house/index?type=`+type" class="se-flex se-mt-20 se-flex-ai-c se-flex-h-c se-c-white se-fs-28 se-py-20 se-px-250 se-br-30" style="background-color: #1EC77A;">
去发布
</navigator>
<navigator url="/pages/home/index" class="se-flex se-mt-40 se-flex-ai-c se-flex-h-c se-bgc-cancel se-b se-c-33 se-fs-28 se-py-20 se-px-250 se-br-30">
退出登录
</navigator>
</view>
</view>
</template>
<script>
export default{
data(){
return{
type:""
}
},
onLoad(options) {
this.type = options.type
}
}
</script>
<style>
</style>