34 lines
483 B
Vue
34 lines
483 B
Vue
![]() |
<template>
|
||
|
<view class="">
|
||
|
<company :id="id" type="company"></company>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
id: ''
|
||
|
}
|
||
|
},
|
||
|
onLoad(options) {
|
||
|
this.id = options.id;
|
||
|
},
|
||
|
onShow() {},
|
||
|
onReady() {
|
||
|
uni.setNavigationBarColor({
|
||
|
frontColor: '#ffffff',
|
||
|
backgroundColor: '#3175f9'
|
||
|
})
|
||
|
},
|
||
|
methods: {},
|
||
|
onPullDownRefresh() {
|
||
|
uni.stopPullDownRefresh()
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
|
||
|
</style>
|