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.
29 lines
512 B
29 lines
512 B
2 months ago
|
<template>
|
||
|
<cs-page title="邀请企业" @goback="goback"></cs-page>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import storage from '@/utils/storage'
|
||
|
export default {
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
onShareAppMessage(res) {
|
||
|
return {
|
||
|
title: '邀请企业',
|
||
|
path: `/pages/login?invateId=${this.$store.getters.userId}`,
|
||
|
imageUrl: '/static/images/invateImage.png'
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
goback() {
|
||
|
uni.switchTab({
|
||
|
url: '/pages/owner'
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss"></style>
|