detail.vue 357 B

123456789101112131415161718192021222324
  1. <template>
  2. <view>
  3. </view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {
  9. detail: {},
  10. }
  11. },
  12. onLoad(options) {
  13. this.detail = JSON.parse(options.data);
  14. uni.setNavigationBarTitle({
  15. title: options.title || '团队信息'
  16. });
  17. }
  18. }
  19. </script>
  20. <style></style>