| 123456789101112131415161718192021222324 |
- <template>
- <view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- detail: {},
- }
- },
- onLoad(options) {
- this.detail = JSON.parse(options.data);
-
- uni.setNavigationBarTitle({
- title: options.title || '团队信息'
- });
- }
- }
- </script>
- <style></style>
|