|
@@ -36,13 +36,13 @@
|
|
}
|
|
}
|
|
.vm-video-list .bg:after {
|
|
.vm-video-list .bg:after {
|
|
content: '';
|
|
content: '';
|
|
- width: 100%;
|
|
|
|
- height: 100%;
|
|
|
|
|
|
+ width: 110%;
|
|
|
|
+ height: 110%;
|
|
position: absolute;
|
|
position: absolute;
|
|
- left: 0;
|
|
|
|
- top: 0;
|
|
|
|
|
|
+ left: -5%;
|
|
|
|
+ top: -5%;
|
|
background: inherit;
|
|
background: inherit;
|
|
- filter: blur(15px);
|
|
|
|
|
|
+ filter: blur(20px);
|
|
z-index: 2;
|
|
z-index: 2;
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|
|
@@ -89,7 +89,7 @@
|
|
>
|
|
>
|
|
<div
|
|
<div
|
|
class="bg"
|
|
class="bg"
|
|
- style="box-sizing:border-box;overflow:hidden;position:relative;width:100%;height:100%"
|
|
|
|
|
|
+ style="overflow:hidden;position:relative;width:100%;height:100%"
|
|
:style="{backgroundImage: 'url(' +item.thumbnailUrl+')', backgroundSize:'cover', backgroundRepeat: 'no-repeat',backgroundPosition:'center center'}"
|
|
:style="{backgroundImage: 'url(' +item.thumbnailUrl+')', backgroundSize:'cover', backgroundRepeat: 'no-repeat',backgroundPosition:'center center'}"
|
|
></div>
|
|
></div>
|
|
<img
|
|
<img
|
|
@@ -148,7 +148,7 @@
|
|
import ARow from 'ant-design-vue/es/grid/Row'
|
|
import ARow from 'ant-design-vue/es/grid/Row'
|
|
import ACol from 'ant-design-vue/es/grid/Col'
|
|
import ACol from 'ant-design-vue/es/grid/Col'
|
|
import axios from 'axios'
|
|
import axios from 'axios'
|
|
-import { getLoginQr, getUserList, getLoginStatus, getVideoList, getCommentList, commentDelete } from '@api/video.js'
|
|
|
|
|
|
+import { getLoginQr, getUserList, getLoginStatus, getVideoList, getCommentList, commentDelete,getAccountReport } from '@api/video.js'
|
|
export default {
|
|
export default {
|
|
name: 'videoList',
|
|
name: 'videoList',
|
|
components: {
|
|
components: {
|
|
@@ -315,6 +315,9 @@ export default {
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
var that = this
|
|
var that = this
|
|
this.getUserList()
|
|
this.getUserList()
|
|
|
|
+ getAccountReport().then(res=>{
|
|
|
|
+ console.log(res)
|
|
|
|
+ })
|
|
window.setInterval(() => {
|
|
window.setInterval(() => {
|
|
if (that.showCode) {
|
|
if (that.showCode) {
|
|
setTimeout(function() {
|
|
setTimeout(function() {
|