OfficeApp/subpkg/companySign/companySign.vue

34 lines
483 B
Vue
Raw Normal View History

<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>