删除不需要的loading组件

master
于肖磊 2026-02-13 14:53:16 +08:00
parent 8ce603ba5d
commit 41e6765100
2 changed files with 0 additions and 44 deletions

View File

@ -1,42 +0,0 @@
<template>
<view class="wh-auto ht-auto flex-row align-c jc-c">
<view class="more-history-btn cp flex-row align-c">
<view class="more-history-btn-icon margin-right-xs">
<iconfont name="icon-reset" size="28rpx" color="#999"></iconfont>
</view>
<text>{{ propContent }}</text>
</view>
</view>
</template>
<script>
export default {
props: {
propContent: {
type: String,
default: '加载中'
}
}
}
</script>
<style lang="scss" scoped>
.more-history-btn {
font-weight: 400;
font-size: 28rpx;
color: #999999;
line-height: 40rpx;
margin-top: 20rpx;
}
.more-history-btn-icon {
animation: rotate 1s linear infinite;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>

View File

@ -209,7 +209,6 @@
<script>
const app = getApp();
import { get_math, isEmpty, video_get_top_left_padding } from '@/common/js/common/common.js';
import loadingComponent from '@/pages/plugins/video/components/loading.vue';
import commentInfoComponent from '@/pages/plugins/video/components/comment-info.vue';
import commentMoreComponent from '@/pages/plugins/video/components/comment-more.vue';
import searchComponent from '@/pages/plugins/video/components/search.vue';
@ -224,7 +223,6 @@
// #endif
export default {
components: {
loadingComponent,
commentInfoComponent,
commentMoreComponent,
searchComponent,