1
0
mirror of https://github.com/ialley-workshop-open/uni-halo.git synced 2026-06-12 21:29:31 +08:00

fix: 修复审核模式瞬间无法正确加载数据问题 (#33)

This commit is contained in:
小莫唐尼
2025-07-21 22:16:54 +08:00
parent 7daf93d51f
commit 3a08008192
2 changed files with 31 additions and 16 deletions
+28 -13
View File
@@ -112,7 +112,7 @@
} }
}, },
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
} }
}, },
/* */ /* */
@@ -126,29 +126,29 @@
}, },
"usingComponents" : true, "usingComponents" : true,
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
} }
}, },
"mp-alipay" : { "mp-alipay" : {
"usingComponents" : true, "usingComponents" : true,
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
} }
}, },
"mp-baidu" : { "mp-baidu" : {
"usingComponents" : true, "usingComponents" : true,
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
} }
}, },
"mp-toutiao" : { "mp-toutiao" : {
"usingComponents" : true, "usingComponents" : true,
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
} }
}, },
"uniStatistics" : { "uniStatistics" : {
"enable" : true, "enable" : false,
"version" : "2" "version" : "2"
}, },
"vueVersion" : "2", "vueVersion" : "2",
@@ -174,7 +174,7 @@
} }
}, },
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
}, },
"router" : { "router" : {
"base" : "/uni-halo/", "base" : "/uni-halo/",
@@ -190,32 +190,47 @@
"es6" : true "es6" : true
}, },
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
} }
}, },
"mp-jd" : { "mp-jd" : {
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
} }
}, },
"mp-kuaishou" : { "mp-kuaishou" : {
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
} }
}, },
"mp-lark" : { "mp-lark" : {
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
} }
}, },
"quickapp-webview-huawei" : { "quickapp-webview-huawei" : {
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
} }
}, },
"quickapp-webview-union" : { "quickapp-webview-union" : {
"uniStatistics" : { "uniStatistics" : {
"enable" : true "enable" : false
}
},
"app-harmony" : {
"uniStatistics" : {
"enable" : false
}
},
"mp-harmony" : {
"uniStatistics" : {
"enable" : false
}
},
"mp-xhs" : {
"uniStatistics" : {
"enable" : false
} }
} }
} }
+3 -3
View File
@@ -37,20 +37,20 @@
:content="moment.spec.newHtml" :markdown="true" :showLineNumber="true" :content="moment.spec.newHtml" :markdown="true" :showLineNumber="true"
:showLanguageName="true" :copyByLongPress="true" /> :showLanguageName="true" :copyByLongPress="true" />
</view> </view>
<view v-if="moment.images.length!==0" class="images" :class="['images-'+moment.images.length]"> <view v-if="moment.images && moment.images.length!==0" class="images" :class="['images-'+moment.images.length]">
<view class="image-item" v-for="(image,mediumIndex) in moment.images" :key="mediumIndex"> <view class="image-item" v-for="(image,mediumIndex) in moment.images" :key="mediumIndex">
<image mode="aspectFill" style="width: 100%;height: 100%;border-radius: 6rpx;" <image mode="aspectFill" style="width: 100%;height: 100%;border-radius: 6rpx;"
:src="image.url" @click="handlePreview(mediumIndex,moment.images)" /> :src="image.url" @click="handlePreview(mediumIndex,moment.images)" />
</view> </view>
</view> </view>
<view v-if="moment.audios.length!==0" class="mb-12" <view v-if="moment.audios && moment.audios.length!==0" class="mb-12"
style="display: flex; flex-direction: column; gap: 12rpx 0;padding: 0 24rpx;padding-right:28rpx;"> style="display: flex; flex-direction: column; gap: 12rpx 0;padding: 0 24rpx;padding-right:28rpx;">
<audio v-for="(audio,index) in moment.audios" :controls="true" :key="index" :id="audio.url" <audio v-for="(audio,index) in moment.audios" :controls="true" :key="index" :id="audio.url"
:poster="bloggerInfo.avatar" :poster="bloggerInfo.avatar"
:name="'来自' + (startConfig.title||bloggerInfo.nickname) + '的声音'" :name="'来自' + (startConfig.title||bloggerInfo.nickname) + '的声音'"
:author="bloggerInfo.nickname" :src="audio.url"></audio> :author="bloggerInfo.nickname" :src="audio.url"></audio>
</view> </view>
<view v-if="moment.videos.length!==0" class="mb-12" <view v-if="moment.videos && moment.videos.length!==0" class="mb-12"
style="display: flex; flex-direction: column; gap: 12rpx 0;padding: 0 24rpx; "> style="display: flex; flex-direction: column; gap: 12rpx 0;padding: 0 24rpx; ">
<video style="width:100%;height: 400rpx;border-radius: 12rpx;" <video style="width:100%;height: 400rpx;border-radius: 12rpx;"
v-for="(video,index) in moment.videos" :key="index" :src="video.url" v-for="(video,index) in moment.videos" :key="index" :src="video.url"