| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view class="personalData-v">
- <view class="content">
- <personalData ref="personalData" :personalData="baseInfo"></personalData>
- </view>
- </view>
- </template>
- <script>
- import personalData from './components/personalData.vue';
- export default {
- components: {
- personalData,
- },
- data() {
- return {
- baseInfo: {}
- };
- },
- onLoad(e) {
- // this.baseInfo = JSON.parse(e.baseInfo)
- // #ifdef MP-WEIXIN || APP-HARMONY
- this.baseInfo = JSON.parse(decodeURIComponent(e.baseInfo))
- // #endif
- // #ifndef MP-WEIXIN || APP-HARMONY
- this.baseInfo = JSON.parse(decodeURIComponent(this.jnpf.encodeContent(e.baseInfo)))
- // #endif
- },
- methods: {}
- }
- </script>
- <style lang="scss">
- page {
- background-color: #f0f2f6;
- height: 100%;
- }
- .notice-warp {
- height: 100rpx;
- .search-box {
- padding: 20rpx;
- }
- }
- .content {
- margin-top: 20rpx;
- }
- .personalData-v {
- display: flex;
- flex-direction: column;
- padding-bottom: 100rpx;
- ::v-deep .buttom-btn {
- width: 100% !important;
- }
- }
- </style>
|