兰代清没头发

This commit is contained in:
Zhang HaoYang 2023-12-24 18:12:13 +08:00
parent f63aac52cb
commit 98aa9de755

View File

@ -1,10 +1,10 @@
<template>
<div class="DefinedPage" >
<div class="LeftPart" style="overflow: auto">
<div class="LeftPart" style="overflow: auto">
<div class="JustBack" style="width:670px;display:flex; flex-direction: row; flex-wrap: nowrap;height:430px !important;">
<div id="ShowPic" style="display: flex;flex-direction: column;flex-wrap: wrap">
<div class="card" style=" width: 180px;height:180px;margin-top:50px">
戳戳跳转
<div class="card" style="width: 180px;height:180px;margin-top:50px;background-color: var( --theme-bg-color)" >
<img :src="UrlObj.icon">
</div>
<div id="IconGroup" style="margin-top:60px;display: flex;flex-direction: row;flex-wrap: nowrap;margin-left:-20px">
<div class="little-Triangle" style=" margin-left:15px;">
@ -13,7 +13,7 @@
effect="dark" close-delay="2000">
<div class="MyPopover" slot="content">
<span style="font-size:12px !important;">91视频网站完整URL</span><br/><br/>
<div style="width:100% ;text-align: center">http://91vedio/1145141919</div>
<div style="width:100% ;text-align: center">{{UrlObj.url}}</div>
</div>
<i class="el-icon-link" id="little-Circle-content" style="font-weight:550;padding:5px;font-size:15px!important;margin-top:5px">完整URL</i>
</el-tooltip>
@ -34,8 +34,8 @@
<div class="NavInfo" style="margin-top:45px;margin-left:50px;width:220px;">
<span style="font-size:30px;font-family: STHupo">{{UrlObj.name}}</span><br/>
<div class="NavInfo" >
<span style="width:200px">创建时间2023年12月20日</span><br/>
<span style="width:200px">创建用户答辩超人</span><br/>
<span style="width:200px">创建时间{{Cdate}}</span><br/>
<span style="width:200px">创建用户{{}}</span><br/>
<span style="width:200px">所属标签小视频</span><br/>
<div style="display: flex;flex-direction: row">
<div class="little-Circle" id="readNum" style=" margin-left:15px;">
@ -44,7 +44,7 @@
effect="dark" close-delay="2000">
<div class="MyPopover" slot="content">
<span style="font-size:12px !important;">91视频网站总浏览量</span><br/><br/>
<div style="width:100% ;text-align: center">114514 </div>
<div style="width:100% ;text-align: center">{{UrlObj.views}} </div>
</div>
<i class="el-icon-s-custom" id="little-Circle-content" style=" padding:5px;"></i>
</el-tooltip>
@ -87,17 +87,7 @@
<div class="TitleFont"><i class="el-icon-s-promotion"></i>网站介绍</div>
</div>
<div class="ArticleContent">
<span>91视频一款免费高清视频在线观看软件内容丰富多元,节目持续更新,内容播放清晰流畅,操作界面简单友好,真正为用户带来悦享品质的观映体验
全网视频大收罗收费电影免费看美剧动漫电影电视剧迷们的福利社<br/>
畅享移动高清
为移动用户量身打造操作界面清新友好内容丰富多元
快速发现内容
分频道视频浏览分类更合理高效
更小更快更流畅
安装包小CPU占用少播放更加流畅清晰<br/>
使用91视频观看视频需要具备怎样的网络条件
支持无线网络WIFIWLAN及3G网络在线观看视频播放清晰流畅其他2G等更低速度的移动网络播放视频时会出现速度慢无法加载等异常情况因此不建议使用
91视频是免费软件无需支付任何费用即可随时随地观看精彩视频由于在使用过程中需要连接网络因此根据不同网络的费用标准会产生相应的服务费用推荐您使用无线网络WIFI连接方式以节约3G流量费</span>
{{UrlObj.desc}}
</div>
</div>
<!--导航评论-->
@ -170,12 +160,12 @@ export default {
//
UrlObj:Object,
//
UnDate:null,
Cdate:null,
}},
mounted() {
this.initPage();
this.GetNav(this.UrlId);
this.getFormatDate();
this.initEchart();
},
@ -189,14 +179,15 @@ export default {
//
getFormatDate() {
var that = this;
var date = new Date(parseInt(that.UrlObj.createtime));// 10*1000131000
var Y = date.getFullYear() + '-';
var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-';
var D = date.getDate() + ' ';
var h = date.getHours() + ':';
var m = date.getMinutes() + ':';
var s = date.getSeconds();
that.Cdate = "" + Y + M + D + h + m + s;
console.log(this.UnDate + "传入时间戳");
var date = new Date(this.UnDate);// 10*1000131000
var Y = date.getFullYear() + '年';
var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '月';
var D = date.getDate() + '日 ';
// var h = date.getHours() + ':';
// var m = date.getMinutes() + ':';
// var s = date.getSeconds();
that.Cdate = "" + Y + M + D ;
},
@ -292,22 +283,21 @@ export default {
}
}).then((res)=>{
that.UrlObj = res.data.data;
that.UnDate = that.UrlObj.createtime;
}).catch((error)=>{
Vue.prototype.$notify.error({
title: '错误',
message: error===null?'':error,
offset: 0
});
})
//
// var temp = new Date(that.UrlObj.createtime);
// that.Cdate = temp;
});
this.getFormatDate();
},
//
WarnToAdmin(){
console.log(this.UrlId);
console.log(this.UrlObj);
console.log(this.UrlObj.createtime);
console.log(this.UrlObj.createtime + typeof (this.UrlObj.createtime));
console.log(this.Cdate);
}
}