123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <template>
- <view class="scan-v">
- <!-- #ifndef MP -->
- <mescroll-body ref="mescrollRef" @down="downCallback" :down="downOption" :sticky="true" @up="upCallback"
- :up="upOption" :bottombar="false" style="min-height: 100%" @init="mescrollInit">
- <view class="portal-v">
- <view v-if="formData.length">
- <view class="portal-box" v-for="(item,index) in formData" :key="index">
- <portalItem :item='item' ref="portalItem" :portalData="formData"></portalItem>
- </view>
- </view>
- <view v-else-if="!formData.length && portalConfig.linkType == 1 && portalConfig.customUrl">
- <web-view :src="portalConfig.customUrl" style="height: 100vh;"></web-view>
- </view>
- <view v-else class="portal-v portal-nodata">
- <view class="u-flex-col" style="align-items: center;">
- <u-image width="280rpx" height="280rpx" :src="emptyImg"></u-image>
- <text class="u-m-t-20" style="color: #909399;">{{$t('common.noData')}}</text>
- </view>
- </view>
- </view>
- </mescroll-body>
- <!-- #endif -->
- <!-- #ifdef MP -->
- <view>
- <web-view :src="mpPortalUrl"></web-view>
- </view>
- <!-- #endif -->
- </view>
- </template>
- <script>
- // #ifndef MP
- import portalItem from '@/pages/portal/components/index.vue'
- import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js"
- // #endif
- import {
- getPreviewPortal,
- auth
- } from '@/api/portal/portal.js'
- import resources from '@/libs/resources.js'
- export default {
- // #ifndef MP
- mixins: [MescrollMixin],
- components: {
- portalItem
- },
- // #endif
- data() {
- return {
- mpPortalUrl: '',
- id: '',
- show: false,
- formData: [],
- dataList: [],
- emptyImg: resources.message.nodata,
- fullName: '',
- downOption: {
- use: true,
- auto: true
- },
- upOption: {
- page: {
- num: 0,
- size: 50,
- time: null
- },
- empty: {
- use: false,
- },
- textNoMore: this.$t('app.apply.noMoreData'),
- },
- portalType: 1,
- token: "",
- portalConfig: {}
- }
- },
- onLoad(e) {
- this.fullName = e.fullName
- uni.setNavigationBarTitle({
- title: this.fullName || '门户预览'
- })
- // #ifdef MP
- this.token = uni.getStorageSync('token')
- this.mpPortalUrl = this.define.baseURL + '/pages/portal/applyPortal/index?id=' + e.id + "&token=" + this.token
- // #endif
- // #ifndef MP
- this.id = e.id
- this.portalType = e.portalType
- uni.$on('refresh', () => {
- this.formData = [];
- this.mescroll.resetUpScroll();
- })
- // #endif
- },
- methods: {
- upCallback(keyword) {
- const method = this.portalType == 1 ? auth : getPreviewPortal
- if (this.portalType != 1) this.mescroll.lockDownScroll(true);
- method(this.id).then(res => {
- this.portalConfig = res.data || {}
- let data = res.data.formData ? JSON.parse(res.data.formData) : {};
- this.formData = data.layout ? JSON.parse(JSON.stringify(data.layout)) : [];
- this.mescroll.endSuccess(this.formData.length);
- if (!this.formData.length) return
- this.handelFormData(data)
- }).catch(() => {
- this.mescroll.endSuccess(0);
- this.mescroll.endErr();
- })
- },
- handelFormData(data) {
- const loop = (list) => {
- list.forEach(o => {
- o.allRefresh = data.refresh
- o.show = false
- if (o.visibility && o.visibility.length && o.visibility.includes('app')) o.show =
- true
- if (o.children && o.children.length) loop(o.children)
- })
- this.key = +new Date()
- }
- loop(this.formData)
- this.dataList = this.formData.filter(o => o.show)
- if (this.dataList.length < 1) {
- this.formData = this.dataList
- }
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #f0f2f6;
- }
- .portal-v {
- // width: 100%;
- // height: 100vh;
- }
- .portal-nodata {
- position: absolute;
- top: 450rpx;
- width: 100%;
- text-align: center;
- z-index: 100;
- background-color: #f0f2f6;
- }
- </style>
|