28 lines
393 B
Plaintext
28 lines
393 B
Plaintext
<style lang='scss' scoped></style>
|
|
<template>
|
|
<view class="">
|
|
首页
|
|
<view class="">
|
|
企业用户
|
|
</view>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
onLoad() {
|
|
|
|
|
|
},
|
|
onReady() {
|
|
// setTimeout(()=>{
|
|
// console.log("企业用户");
|
|
// uni.setStorageSync('userType', '企业用户');
|
|
// },2000)
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|